
Improves the code coverage for the present tests where possible. Change-Id: I8971ba2ed775dcd772622acea3fed4ebaa177ad7
41 lines
1.3 KiB
Python
41 lines
1.3 KiB
Python
# Copyright 2016 Cloudbase Solutions Srl
|
|
#
|
|
# Licensed under the Apache License, Version 2.0 (the "License"); you may
|
|
# not use this file except in compliance with the License. You may obtain
|
|
# a copy of the License at
|
|
#
|
|
# http://www.apache.org/licenses/LICENSE-2.0
|
|
#
|
|
# Unless required by applicable law or agreed to in writing, software
|
|
# distributed under the License is distributed on an "AS IS" BASIS, WITHOUT
|
|
# WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the
|
|
# License for the specific language governing permissions and limitations
|
|
# under the License.
|
|
|
|
import unittest
|
|
|
|
from cloudbaseinit.utils import crypt
|
|
|
|
|
|
class TestOpenSSLException(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self._openssl = crypt.OpenSSLException()
|
|
|
|
def test_get_openssl_error_msg(self):
|
|
expected_error_msg = u'error:00000000:lib(0):func(0):reason(0)'
|
|
error_msg = self._openssl._get_openssl_error_msg()
|
|
self.assertEqual(expected_error_msg, error_msg)
|
|
|
|
|
|
class TestCryptManager(unittest.TestCase):
|
|
|
|
def setUp(self):
|
|
self._crypt_manager = crypt.CryptManager()
|
|
|
|
def test_load_ssh_rsa_public_key_invalid(self):
|
|
ssh_pub_key = "ssh"
|
|
exc = Exception
|
|
self.assertRaises(exc, self._crypt_manager.load_ssh_rsa_public_key,
|
|
ssh_pub_key)
|