Exemplo n.º 1
0
 def test_pgp_encryption_key(self):
     ct = CredentialType.from_string("pgp_encryption_key")
     self.assertEqual(ct, CredentialType.PGP_ENCRYPTION_KEY)
Exemplo n.º 2
0
 def test_password_only(self):
     ct = CredentialType.from_string("password_only")
     self.assertEqual(ct, CredentialType.PASSWORD_ONLY)
Exemplo n.º 3
0
 def test_username_ssh_key(self):
     ct = CredentialType.from_string("username_ssh_key")
     self.assertEqual(ct, CredentialType.USERNAME_SSH_KEY)
Exemplo n.º 4
0
 def test_smime_certificate(self):
     ct = CredentialType.from_string("smime_certificate")
     self.assertEqual(ct, CredentialType.SMIME_CERTIFICATE)
Exemplo n.º 5
0
 def test_username_password(self):
     ct = CredentialType.from_string("username_password")
     self.assertEqual(ct, CredentialType.USERNAME_PASSWORD)
Exemplo n.º 6
0
 def test_snmp(self):
     ct = CredentialType.from_string("snmp")
     self.assertEqual(ct, CredentialType.SNMP)
Exemplo n.º 7
0
 def test_client_certificate(self):
     ct = CredentialType.from_string("client_certificate")
     self.assertEqual(ct, CredentialType.CLIENT_CERTIFICATE)
Exemplo n.º 8
0
 def test_none_or_empty_type(self):
     ct = CredentialType.from_string(None)
     self.assertIsNone(ct)
     ct = CredentialType.from_string("")
     self.assertIsNone(ct)
Exemplo n.º 9
0
 def test_invalid_type(self):
     with self.assertRaises(InvalidArgument):
         CredentialType.from_string("foo")