def test_connection(self): ''' Test some of the server's test functions :return: ''' from ambry.client.rest import RemoteLibrary self.start_server() a = RemoteLibrary(self.server_url) self.assertEquals('foobar', a.get_test_echo('foobar')) self.assertEquals('foobar', a.put_test_echo('foobar')) with self.assertRaises(Exception): a.get_test_exception() r = a.get_root() self.assertIn('/tmp/server/remote', r['remotes'])
def test_connection(self): ''' Test some of the server's test functions :return: ''' from ambry.client.rest import RemoteLibrary self.start_server() a = RemoteLibrary(self.server_url) self.assertEquals('foobar', a.get_test_echo('foobar')) self.assertEquals('foobar', a.put_test_echo('foobar')) with self.assertRaises(Exception): a.get_test_exception() r = a.get_root() self.assertEquals('devtest.sandiegodata.org', r['upstream']['bucket']) self.assertEquals('library-test', r['upstream']['prefix'])