Advertisement
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- from __future__ import (absolute_import, division, print_function)
- __metaclass__ = type
- import os
- from units.compat import mock
- from units.compat import unittest
- from ansible.modules import apt_key
- def returnc(x):
- return 'C'
- class AptKeyTestCase(unittest.TestCase):
- @mock.patch.object(apt_key, 'apt_key_bin', '/usr/bin/apt-key')
- @mock.patch.object(apt_key, 'lang_env', returnc)
- @mock.patch.dict(os.environ, {'HTTP_PROXY': 'proxy.example.com'})
- def test_import_key_with_http_proxy(self):
- m_mock = mock.Mock()
- m_mock.run_command.return_value = (0, '', '')
- apt_key.import_key(
- m_mock, keyring=None, keyserver='keyserver.example.com',
- key_id='0xDEADBEEF')
- self.assertEqual(
- m_mock.run_command.call_args_list[0][0][0],
- '/usr/bin/apt-key adv --no-tty --keyserver keyserver.example.com'
- ' --keyserver-options http-proxy=proxy.example.com'
- ' --recv 0xDEADBEEF'
- )
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement