Beispiel #1
0
class TestPost(BaseTestCase):
    @patch('radiotherm.thermostat.Thermostat._construct_url',
           MagicMock(return_value=URL))
    @patch(BaseTestCase._get_urlopen_import_path().replace(
        'urlopen', 'Request'), MagicMock(return_value=FAKE_REQUEST))
    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)

    @patch('radiotherm.thermostat.Thermostat._construct_url',
           MagicMock(return_value=URL))
    @patch(BaseTestCase._get_urlopen_import_path(),
           MagicMock(return_value=FAKE_REQUEST))
    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)