Esempio n. 1
0
 def test_add_remove_host(self):
     target = [(URI.address("http://localhost:3000"), True)]
     c = Cluster()
     c.add_host(URI.address("http://localhost:3000"))
     # add the same host, the list of hosts should be the same
     c.add_host(URI.address("http://localhost:3000"))
     self.assertEquals(target, c.hosts)
     target = [(URI.address("http://localhost:3000"), True), (URI(), True)]
     c.add_host(URI())
     self.assertEquals(target, c.hosts)
     target = [(URI.address("http://localhost:3000"), False), (URI(), True)]
     c.remove_host(URI.address("http://localhost:3000"))
     self.assertEquals(target, c.hosts)
Esempio n. 2
0
 def test_create_client(self):
     # create default client
     c = Client()
     self.assertEquals(URI(), c.cluster.hosts[0][0])
     # create with cluster
     c = Client(Cluster(URI.address(":15000")))
     self.assertEquals(URI.address(":15000"), c.cluster.hosts[0][0])
     # create with URI
     c = Client(URI.address(":20000"))
     self.assertEquals(URI.address(":20000"), c.cluster.hosts[0][0])
     # create with invalid type
     self.assertRaises(PilosaError, Client, 15000)
Esempio n. 3
0
 def test_cluster_reset(self):
     hosts = [URI.address("db1.pilosa.com"), URI.address("db2.pilosa.com")]
     c = Cluster(*hosts)
     target1 = [(host, True) for host in hosts]
     self.assertEqual(target1, c.hosts)
     c.remove_host(URI.address("db1.pilosa.com"))
     c.remove_host(URI.address("db2.pilosa.com"))
     target2 = [(host, False) for host in hosts]
     self.assertEqual(target2, c.hosts)
     c._reset()
     self.assertEqual(target1, c.hosts)
Esempio n. 4
0
 def test_failover_fail(self):
     uris = [URI.address("nonexistent%s" % i) for i in range(20)]
     client = Client(Cluster(*uris))
     self.assertRaises(PilosaError, client.query, self.frame.bitmap(5))
Esempio n. 5
0
 def test_get_host_when_no_hosts(self):
     c = Cluster()
     self.assertRaises(PilosaError, c.get_host)
Esempio n. 6
0
    def test_get_host(self):
        target1 = URI.address("db1.pilosa.com")
        target2 = URI.address("db2.pilosa.com")

        c = Cluster()
        c.add_host(URI.address("db1.pilosa.com"))
        c.add_host(URI.address("db2.pilosa.com"))
        addr = c.get_host()
        self.assertEquals(target1, addr)
        addr = c.get_host()
        self.assertEquals(target1, addr)
        c.get_host()
        c.remove_host(URI.address("db1.pilosa.com"))
        addr = c.get_host()
        self.assertEquals(target2, addr)
Esempio n. 7
0
 def test_create_with_host(self):
     target = [(URI.address("http://localhost:3000"), True)]
     c = Cluster(URI.address("http://localhost:3000"))
     self.assertEquals(target, c.hosts)