示例#1
0
 def test_creates_request(self):
     with patch(self._get_urlopen_import_path().replace(
             'urlopen', 'Request')) as mock_request:
         tstat = Thermostat(IP)
         tstat.post('/fake', POST_VALUE)
         mock_request.assert_called_once_with(URL, POST_VALUE,
                                              Thermostat.JSON_HEADER)
示例#2
0
 def test_opens_url(self):
     with patch(self._get_urlopen_import_path()) as mock_urlopen:
         tstat = Thermostat(IP)
         tstat.get('/fake')
         mock_urlopen.assert_called_once_with(URL)
示例#3
0
 def test_calls_urlopen(self):
     with patch(self._get_urlopen_import_path()) as mock_urlopen:
         tstat = Thermostat(IP)
         tstat.post('/fake', POST_VALUE)
         mock_urlopen.assert_called_once_with(FAKE_REQUEST, timeout=4)
示例#4
0
 def test_with_ip(self):
     tstat = Thermostat('192.168.0.2')
     url = tstat._construct_url('/fake')
     self.assertEqual(url, 'http://192.168.0.2/fake')
示例#5
0
 def test_trailing_slash_preserved(self):
     tstat = Thermostat('192.168.0.2')
     url = tstat._construct_url('/fake/')
     self.assertEqual(url, 'http://192.168.0.2/fake/')
示例#6
0
 def test_without_leading_slash(self):
     tstat = Thermostat('192.168.0.2')
     url = tstat._construct_url('fake')
     self.assertEqual(url, 'http://192.168.0.2/fake')
示例#7
0
 def test_with_fqdn(self):
     tstat = Thermostat('tstat.home.mydomain.org')
     url = tstat._construct_url('/fake')
     self.assertEqual(url, 'http://tstat.home.mydomain.org/fake')