Ejemplo n.º 1
0
 def test_select_cert_and_aad(self):
     """Select with both cert and aad returns error"""
     with self.assertRaises(CLIError):
         sf_c.select_arg_verify('http://test.com:190800', 'test.crt',
                                'test.key', None, None, True, False)
Ejemplo n.º 2
0
 def test_select_two_cert_args(self):
     """Select with both cert and pem returns error"""
     with self.assertRaises(CLIError):
         sf_c.select_arg_verify('http://test.com:190800', 'test.crt',
                                'test.key', 'test.pem', None, False, False)
Ejemplo n.º 3
0
 def test_select_missing_key_args(self):
     """Select with only cert file but not key returns error"""
     with self.assertRaises(CLIError):
         sf_c.select_arg_verify('http://test.com:190800', 'test.crt', None,
                                None, None, False, False)
Ejemplo n.º 4
0
 def test_select_verify_missing_cert(self):
     """Select with no-verify but no cert returns error"""
     with self.assertRaises(CLIError):
         sf_c.select_arg_verify('http://test.com:190800', None, None, None,
                                None, False, True)
Ejemplo n.º 5
0
 def test_select_bad_ca_args(self):
     """Select with CA certs but not client certs returns error"""
     with self.assertRaises(CLIError):
         sf_c.select_arg_verify('http://test.com:190800', None, None, None,
                                'ca_bundle', False, False)