1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
|
--[[
Copyright (C) 2018 "IoT.bzh"
Author Frédéric Marec <frederic.marec@iot.bzh>
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this file except in compliance with the License.
You may obtain a copy of the License at
http://www.apache.org/licenses/LICENSE-2.0
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.
NOTE: strict mode: every global variables should be prefixed by '_'
--]]
-- Init ddevices
local device = {"acceleration", "gyroscope", "compass"}
_AFT.setBeforeAll(function()
if not os.execute("/bin/bash ".._AFT.bindingRootDir.."/var/beforeAll.sh") then
print("Fail to create iio_dummy_device")
return -1
else
return 0
end
end)
local testPrefix ="iiodevices_BasicAPITest_"
for i = 1, 3
do
-- This tests the 'subscribe' verb of the iiodevices API without frequency
_AFT.testVerbStatusSuccess(testPrefix.."subscribe-without-frequency_"..device[i],"iiodevices","subscribe", {event = device[i], args = "xy"}, nil,
function()
_AFT.callVerb("iiodevices","unsubscribe",{event= device[i]})
end)
-- This tests the 'subscribe' verb of the iiodevices API with null frequency
_AFT.testVerbStatusSuccess(testPrefix.."subscribe-with-null-frequency_"..device[i],"iiodevices","subscribe", {event = device[i], args = "xy", frequency = 0 }, nil,
function()
_AFT.callVerb("iiodevices","unsubscribe",{event= device[i]})
end)
-- This tests the 'subscribe' verb of the iiodevices API with high frequency
_AFT.testVerbStatusSuccess(testPrefix.."subscribe-with-100000000000-frequency_"..device[i],"iiodevices","subscribe", {event = device[i], args = "xy", frequency = 100000000000 }, nil,
function()
_AFT.callVerb("iiodevices","unsubscribe",{event= device[i]})
end)
-- This tests the 'subscribe' verb of the iiodevices API with negative frequency
_AFT.testVerbStatusSuccess(testPrefix.."subscribe-with-negative-frequency_"..device[i],"iiodevices","subscribe", {event = device[i], args = "xy", frequency = -1 }, nil,
function()
_AFT.callVerb("iiodevices","unsubscribe",{event= device[i]})
end)
-- This tests the 'subscribe' verb of the iiodevices API with floating frequency
_AFT.testVerbStatusError(testPrefix.."subscribe-with-floating-frequency_"..device[i],"iiodevices","subscribe", {event = device[i], args = "xy", frequency = -3.141592654 }, nil,
function()
_AFT.callVerb("iiodevices","unsubscribe",{event= device[i]})
end)
-- This tests the 'subscribe' verb of the iiodevices API
_AFT.testVerbStatusSuccess(testPrefix.."subscribe_"..device[i],"iiodevices","subscribe",{event = device[i], args = "xy", frequency = 10 }, nil,
function()
_AFT.callVerb("iiodevices","unsubscribe",{event = device[i]})
end)
-- This tests the 'unsubscribe' verb of the iiodevices API
_AFT.testVerbStatusSuccess(testPrefix.."unsubscribe_"..device[i],"iiodevices","unsubscribe",{event = device[i]},
function()
_AFT.callVerb("iiodevices","unsubscribe",{event = device[i], args = "xy"})
end, nil)
-- This tests the 'unsubscribe' verb of the iiodevices API when we are not actually subscribed to a device
_AFT.testVerbStatusSuccess(testPrefix.."doubleUnsubscribe_"..device[i],"iiodevices","unsubscribe",{event = device[i]},
function()
_AFT.callVerb("iiodevices","unsubscribe",{event = device[i]})
end,nil)
-- This tests the 'unsubscribe' verb of the iiodevices API when unsubscribing from a non-existing device
_AFT.testVerbStatusSuccess(testPrefix.."unsubscribeNonExistingdevice_"..device[i],"iiodevices","unsubscribe",{event = device[i]})
end
_AFT.exitAtEnd()
|