Ejemplo n.º 1
0
 def test_get_unknown_authentication_method(self, m):
     sde_client = SDEClient("http://localhost/sde", "Unknown", None, None,
                            None, None)
     m.register_uri('GET',
                    SDEClient.GET_TASKS_URI % (sde_client.url, '1'),
                    json=json.loads(GET_TASKS_RESPONSE))
     sde_client.get_tasks('1')
Ejemplo n.º 2
0
 def test_get_tasks_token_auth(self, m):
     sde_client = SDEClient("http://localhost/sde", "PAT", None, None, None,
                            "1234abcd")
     m.register_uri('GET',
                    SDEClient.GET_TASKS_URI % (sde_client.url, '1'),
                    json=json.loads(GET_TASKS_RESPONSE))
     eq_(json.loads(GET_TASKS_RESPONSE), sde_client.get_tasks('1'))
Ejemplo n.º 3
0
 def test_get_tasks_basic_auth(self, m):
     sde_client = SDEClient("http://localhost/sde", "Basic", None, "admin",
                            "admin", None)
     m.register_uri('GET',
                    SDEClient.GET_TASKS_URI % (sde_client.url, '1'),
                    json=json.loads(GET_TASKS_RESPONSE))
     eq_(json.loads(GET_TASKS_RESPONSE), sde_client.get_tasks('1'))