Exemplo n.º 1
0
    def test_get_properties(self, requests):
        requests.get = Mock(
            return_value=self.get_mock_response(
                [
                    {
                        "id": 213,
                        "name": "prop",
                        "transient": False,
                        "data_type": 'string'
                    }
                ]
            )
        )

        table = resources.Table(name='users')

        client = SkyClient()
        props = client.get_properties(table)
        requests.get.assert_called_once_with(
            'http://127.0.0.1:8585/tables/users/properties',
            headers={'content-type': 'application/json'},
            data=None
        )
        self.assertEquals(props[0].object_id, 213)
        self.assertEquals(props[0].name, 'prop')
        self.assertEquals(props[0].transient, False)
        self.assertEquals(props[0].data_type, 'string')
Exemplo n.º 2
0
 def test_ping(self, requests):
     requests.get = Mock(return_value=self.get_mock_response({}))
     client = SkyClient()
     ping = client.ping()
     requests.get.assert_called_once_with(
         'http://127.0.0.1:8585/ping',
         headers={'content-type': 'application/json'},
         data=None
     )
     self.assertTrue(ping)
Exemplo n.º 3
0
 def test_get_table(self, requests):
     requests.get = Mock(
         return_value=self.get_mock_response({})
     )
     client = SkyClient()
     client.get_table('users')
     requests.get.assert_called_once_with(
         'http://127.0.0.1:8585/tables/users',
         headers={'content-type': 'application/json'},
         data=None
     )
Exemplo n.º 4
0
    def test_send_with_use_ssl(self, requests):
        requests.get = Mock(return_value=self.get_mock_response({}))
        client = SkyClient(use_ssl=True)
        client.send('get', '/path')

        requests.get.assert_called_once_with(
            'https://127.0.0.1:8585/path',
            headers={'content-type': 'application/json'},
            data=None,
            verify=False
        )
Exemplo n.º 5
0
    def test_get_property(self, requests):
        requests.get = Mock(return_value=self.get_mock_response({}))
        table = resources.Table(name='users')

        client = SkyClient()
        client.get_property(table, 'age')
        requests.get.assert_called_once_with(
            'http://127.0.0.1:8585/tables/users/properties/age',
            headers={'content-type': 'application/json'},
            data=None
        )
Exemplo n.º 6
0
    def test_query_with_list(self, requests):
        requests.get = Mock(return_value=self.get_mock_response({}))

        client = SkyClient()
        table = resources.Table(name='users')
        client.query(table, [])

        requests.get.assert_called_once_with(
            "http://127.0.0.1:8585/tables/users/query",
            headers={'content-type': 'application/json'},
            data='{"steps": []}'
        )
Exemplo n.º 7
0
 def test_create_event_without_replace(self, requests):
     requests.patch = Mock(return_value=self.get_mock_response({}))
     client = SkyClient()
     table = resources.Table(name='users')
     event = resources.Event(timestamp=self.dt)
     client.create_event(table, 123, event, False)
     requests.patch.assert_called_once_with(
         'http://127.0.0.1:8585/tables/users/objects/123/events/%s' % (
             self.dts
         ),
         headers={'content-type': 'application/json'},
         data='{"data": {}, "timestamp": "2014-02-21T10:10:23.000203Z"}'
     )
Exemplo n.º 8
0
    def test_update_property(self, requests):
        requests.patch = Mock(return_value=self.get_mock_response({}))
        table = resources.Table(name='users')

        prop = resources.Property(1, 'ysb', False, 'string')

        client = SkyClient()
        client.update_property(table, 'age', prop)
        requests.patch.assert_called_once_with(
            'http://127.0.0.1:8585/tables/users/properties/age',
            headers={'content-type': 'application/json'},
            data='{"data_type": "string", "id": 1, "name": "ysb", "transient": false}'  # NOQA
        )
Exemplo n.º 9
0
    def test_delete_table(self, requests):
        requests.delete = Mock(
            return_value=self.get_mock_response({})
        )

        table = resources.Table(name='users')

        client = SkyClient()
        client.delete_table(table)
        requests.delete.assert_called_once_with(
            'http://127.0.0.1:8585/tables/users',
            headers={'content-type': 'application/json'},
            data=None
        )
Exemplo n.º 10
0
 def test_get_tables(self, requests):
     requests.get = Mock(return_value=self.get_mock_response(
         [
             {"name": "users"}
         ]
     ))
     client = SkyClient()
     tables = client.get_tables()
     requests.get.assert_called_once_with(
         'http://127.0.0.1:8585/tables',
         headers={'content-type': 'application/json'},
         data=None
     )
     self.assertEquals(tables[0].name, 'users')
Exemplo n.º 11
0
    def test_get_event(self, requests):
        requests.get = Mock(return_value=self.get_mock_response({}))

        client = SkyClient()
        table = resources.Table(name='users')

        client.get_event(table, 123, self.dt)
        requests.get.assert_called_once_with(
            'http://127.0.0.1:8585/tables/users/objects/123/events/%s' % (
                self.dts
            ),
            headers={'content-type': 'application/json'},
            data=None
        )
Exemplo n.º 12
0
    def test_get_events(self, requests):
        requests.get = Mock(
            return_value=self.get_mock_response(
                [
                    {
                        'data': {},
                        'timestamp': self.dts
                    }
                ]
            )
        )

        client = SkyClient()
        table = resources.Table(name='users')
        events = client.get_events(table, 123)

        requests.get.assert_called_once_with(
            'http://127.0.0.1:8585/tables/users/objects/123/events',
            headers={'content-type': 'application/json'},
            data=None
        )

        self.assertEquals(events[0].timestamp, self.dt)
Exemplo n.º 13
0
 def test_make_url_when_using_ssl(self, requests):
     client = SkyClient(use_ssl=True)
     self.assertEquals(
         client.make_url('/bob'),
         "https://127.0.0.1:8585/bob"
     )
Exemplo n.º 14
0
 def test_make_url(self, requests):
     client = SkyClient()
     self.assertEquals(
         client.make_url('/bob'),
         "http://127.0.0.1:8585/bob"
     )
Exemplo n.º 15
0
 def test_failed_ping(self, requests):
     requests.get = Mock(side_effect=Exception(''))
     client = SkyClient()
     ping = client.ping()
     self.assertFalse(ping)