-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathtest_pikvm_gpio.py
66 lines (59 loc) · 2.58 KB
/
test_pikvm_gpio.py
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
import unittest
from tempfile import NamedTemporaryFile
from unittest.mock import patch, MagicMock
from pikvm_lib.pikvm import PiKVM
import mock_pikvm_response
class TestPiKVM(unittest.TestCase):
def setUp(self):
self.hostname = "example.com"
self.username = "user"
self.password = "password"
self.secret = None
self.mock_pikvm = patch('pikvm_lib.pikvm.PiKVM.get_system_info',
return_value=mock_pikvm_response.pikvm_mock_info).start()
self.pikvm_instance = PiKVM(self.hostname, self.username, self.password, secret=self.secret, schema="https")
@patch('pikvm_lib.pikvm.PiKVM._get')
def test_get_gpio_state(self, mock_get_gpio_state):
mock_response = MagicMock()
mock_response.status_code = 200
mock_response.text = '{"result": {"state": "on"}}'
mock_get_gpio_state.return_value = mock_response
result = self.pikvm_instance.get_gpio_state()
self.assertEqual(result, {"state": "on"})
mock_get_gpio_state.assert_called_once_with('/api/gpio')
@patch('requests.post')
def test_switch_gpio_channel(self, mock_post):
mock_response = MagicMock()
mock_response.status_code = 200
mock_post.return_value = mock_response
channel = 1
self.pikvm_instance.switch_gpio_channel(channel=channel)
mock_post.assert_called_with(
f"https://example.com/api/gpio/switch?channel={channel}&state=1&wait=1",
headers=self.pikvm_instance.headers,
verify=False
)
self.pikvm_instance.switch_gpio_channel(channel=channel, state=1, wait=None)
mock_post.assert_called_with(
f"https://example.com/api/gpio/switch?channel={channel}&state=1",
headers=self.pikvm_instance.headers,
verify=False
)
@patch('requests.post')
def test_pulse_gpio_channel(self, mock_post):
mock_response = MagicMock()
mock_response.status_code = 200
mock_post.return_value = mock_response
channel = 1
self.pikvm_instance.pulse_gpio_channel(channel=channel, delay=None, wait=None)
mock_post.assert_called_with(
f"https://example.com/api/gpio/pulse?channel={channel}",
headers=self.pikvm_instance.headers,
verify=False
)
self.pikvm_instance.pulse_gpio_channel(channel=channel)
mock_post.assert_called_with(
f"https://example.com/api/gpio/pulse?channel={channel}&delay=0&wait=1",
headers=self.pikvm_instance.headers,
verify=False
)