1
0
Fork 0

Comment out auth join test for now

master
Philip O'Toole 10 months ago
parent 0692e138ad
commit 2da8a76060

@ -32,31 +32,31 @@ class TestJoinEncryptedNoVerify(unittest.TestCase):
deprovision_node(n0)
deprovision_node(n1)
class TestAuthJoin(unittest.TestCase):
'''Test that joining works with authentication'''
# class TestAuthJoin(unittest.TestCase): XXXX WILL NEED TO REIMPLEMENT
# '''Test that joining works with authentication'''
def test(self):
self.auth_file = tempfile.NamedTemporaryFile()
with open(self.auth_file.name, 'w') as f:
f.write('[{"username": "foo","password": "bar","perms": ["all"]}, {"username": "*", "perms": ["status", "ready"]}]')
# def test(self):
# self.auth_file = tempfile.NamedTemporaryFile()
# with open(self.auth_file.name, 'w') as f:
# f.write('[{"username": "foo","password": "bar","perms": ["all"]}, {"username": "*", "perms": ["status", "ready"]}]')
n0 = Node(RQLITED_PATH, '0', auth=self.auth_file.name)
n0.start()
n0.wait_for_leader()
# n0 = Node(RQLITED_PATH, '0', auth=self.auth_file.name)
# n0.start()
# n0.wait_for_leader()
n1 = Node(RQLITED_PATH, '1', auth=self.auth_file.name)
n1.start(join=n0.APIAddr())
self.assertTrue(n1.expect_leader_fail()) # Join should fail due to lack of auth.
# n1 = Node(RQLITED_PATH, '1', auth=self.auth_file.name)
# n1.start(join=n0.APIAddr())
# self.assertTrue(n1.expect_leader_fail()) # Join should fail due to lack of auth.
n2 = Node(RQLITED_PATH, '2', auth=self.auth_file.name)
n2.start(join=n0.APIAddr(), join_as="foo")
n2.wait_for_leader()
# n2 = Node(RQLITED_PATH, '2', auth=self.auth_file.name)
# n2.start(join=n0.APIAddr(), join_as="foo")
# n2.wait_for_leader()
self.cluster = Cluster([n0, n1, n2])
# self.cluster = Cluster([n0, n1, n2])
def tearDown(self):
self.auth_file.close()
self.cluster.deprovision()
# def tearDown(self):
# self.auth_file.close()
# self.cluster.deprovision()
class TestIdempotentJoin(unittest.TestCase):
def tearDown(self):

Loading…
Cancel
Save