Last active
June 10, 2021 14:25
-
-
Save mgedmin/1a8eaf34cddc07cd8a7c29f13a7b654c to your computer and use it in GitHub Desktop.
Revisions
-
mgedmin revised this gist
Jun 10, 2021 . No changes.There are no files selected for viewing
-
mgedmin revised this gist
Jun 10, 2021 . 1 changed file with 1 addition and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -8,7 +8,7 @@ class AptKeyTestCase(unittest.TestCase): @mock.patch.object(apt_key, 'apt_key_bin', '/usr/bin/apt-key') @mock.patch.dict(os.environ, {'HTTP_PROXY': 'proxy.example.com'}) def test_import_key_with_http_proxy(self): m_mock = mock.Mock() -
mgedmin revised this gist
Jun 10, 2021 . 1 changed file with 7 additions and 5 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -3,20 +3,22 @@ from units.compat import mock from units.compat import unittest from ansible.modules import apt_key class AptKeyTestCase(unittest.TestCase): @mock.patch(apt_key, 'apt_key_bin', '/usr/bin/apt-key') @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' ) -
mgedmin revised this gist
Jun 10, 2021 . 1 changed file with 5 additions and 2 deletions.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -1,3 +1,5 @@ import os from units.compat import mock from units.compat import unittest @@ -9,11 +11,12 @@ class AptKeyTestCase(unittest.TestCase): @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, '', '') 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 keyring.example.com' ' --keyserver-options http-proxy=proxy.example.com' ' --recv 0xDEADBEEF' ) -
mgedmin revised this gist
Jun 10, 2021 . 1 changed file with 3 additions and 1 deletion.There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -6,12 +6,14 @@ class AptKeyTestCase(unittest.TestCase): @mock.patch.dict(os.environ, 'HTTP_PROXY', 'proxy.example.com') def test_import_key_with_http_proxy(self): m_mock = mock.Mock() m.run_command.return_value = (0, '', '') 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 keyring.example.com' ' --keyserver-options http-proxy=proxy.example.com --recv 0xDEADBEEF' ) -
mgedmin created this gist
Jun 10, 2021 .There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters. Learn more about bidirectional Unicode charactersOriginal file line number Diff line number Diff line change @@ -0,0 +1,17 @@ from units.compat import mock from units.compat import unittest from ansible.modules.apt_key import import_key class AptKeyTestCase(unittest.TestCase): def test_import_key_with_http_proxy(self): m_mock = mock.Mock() m.run_command.return_value = (0, '', '') 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 keyring.example.com --recv 0xDEADBEEF' )