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