Example #1
0
 def test_load_server_list(self):
     SERVER_LIST = [[u'example1.com', 4064, u'omero1'], [u'example2.com', 4064, u'omero2'], [u'example3.com', 4064], [u'example4.com', 4064]]
     for s in SERVER_LIST:
         server = (len(s) > 2) and s[2] or None
         Server(host=s[0], port=s[1], server=server)
     Server.freeze()
     
     try:
         Server(host=u'example5.com', port=4064)
     except Exception, x:
         pass
Example #2
0
 def test_get_and_find(self):
     SERVER_LIST = [[u'example1.com', 4064, u'omero1'], [u'example2.com', 4064, u'omero2'], [u'example3.com', 4064], [u'example4.com', 4064]]
     for s in SERVER_LIST:
         server = (len(s) > 2) and s[2] or None
         Server(host=s[0], port=s[1], server=server)
     
     s1 = Server.get(1)
     self.assertEquals(s1.host, u'example1.com')
     self.assertEquals(s1.port, 4064)
     self.assertEquals(s1.server, u'omero1')
     
     s2 = Server.find('example2.com')
     self.assertEquals(s2.host, u'example2.com')
     self.assertEquals(s2.port, 4064)
     self.assertEquals(s2.server, u'omero2')
Example #3
0
 def loginAsUser(self, username, password):
     blitz = Server.get(pk=self.server_id) 
     if blitz is not None:
         connector = Connector(self.server_id, True)
         conn = connector.create_connection('TEST.webadmin', username, password)
         if conn is None or not conn.isConnected() or not conn.keepAlive():
             raise exceptions.Exception("Cannot connect")
         return conn
     else:
         raise exceptions.Exception("'%s' is not on omero.web.server_list"  % omero_host)
Example #4
0
    def setUp (self):
        c = omero.client(pmap=['--Ice.Config='+(os.environ.get("ICE_CONFIG"))])
        try:
            self.root_password = c.ic.getProperties().getProperty('omero.rootpass')
            omero_host = c.ic.getProperties().getProperty('omero.host')
        finally:
            c.__del__()

        blitz = Server.find(host=omero_host)
        if blitz is None:
            Server.reset()
            for s in settings.SERVER_LIST:
                server = (len(s) > 2) and unicode(s[2]) or None
                Server(host=unicode(s[0]), port=int(s[1]), server=server)
            Server.freeze()
            blitz = Server.find(server=omero_host)
        
        if blitz is not None:
            self.server_id = blitz.id
            connector = Connector(self.server_id, True)
            self.rootconn = connector.create_connection('TEST.webadmin', 'root', self.root_password)

            if self.rootconn is None or not self.rootconn.isConnected() or not self.rootconn.keepAlive():
                raise exceptions.Exception("Cannot connect")
        else:
            raise exceptions.Exception("'%s' is not on omero.web.server_list" % omero_host)
Example #5
0
 def setUp(self):
     Server.reset()
Example #6
0
def load_server_list():
    for s in SERVER_LIST:
        server = (len(s) > 2) and unicode(s[2]) or None
        Server(host=unicode(s[0]), port=int(s[1]), server=server)
    Server.freeze()