Exemple #1
0
 def test_get_auth_default_password(self):
     n = NodeDriver('foo')
     n.features = {'create_node': ['password']}
     auth = n._get_and_check_auth(None)
     self.assertTrue(isinstance(auth, NodeAuthPassword))
Exemple #2
0
 def test_get_auth_default_no_feature(self):
     n = NodeDriver('foo')
     self.assertEqual(None, n._get_and_check_auth(None))
Exemple #3
0
 def test_get_auth_password(self):
     n = NodeDriver('foo')
     n.features = {'create_node': ['password']}
     auth = NodeAuthPassword('password')
     self.assertEqual(auth, n._get_and_check_auth(auth))
Exemple #4
0
 def test_get_auth_default_ssh_key(self):
     n = NodeDriver('foo')
     n.features = {'create_node': ['ssh_key']}
     self.assertEqual(None, n._get_and_check_auth(None))
Exemple #5
0
 def test_get_auth_ssh(self):
     n = NodeDriver('foo')
     n.features = {'create_node': ['ssh_key']}
     auth = NodeAuthSSHKey('pubkey...')
     self.assertEqual(auth, n._get_and_check_auth(auth))
Exemple #6
0
 def test_get_auth_default_password(self):
     n = NodeDriver("foo")
     n.features = {"create_node": ["password"]}
     auth = n._get_and_check_auth(None)
     self.assertTrue(isinstance(auth, NodeAuthPassword))
Exemple #7
0
 def test_get_auth_default_ssh_key(self):
     n = NodeDriver("foo")
     n.features = {"create_node": ["ssh_key"]}
     self.assertEqual(None, n._get_and_check_auth(None))
Exemple #8
0
 def test_get_auth_password(self):
     n = NodeDriver("foo")
     n.features = {"create_node": ["password"]}
     auth = NodeAuthPassword("password")
     self.assertEqual(auth, n._get_and_check_auth(auth))
Exemple #9
0
 def test_get_auth_ssh(self):
     n = NodeDriver("foo")
     n.features = {"create_node": ["ssh_key"]}
     auth = NodeAuthSSHKey("pubkey...")
     self.assertEqual(auth, n._get_and_check_auth(auth))