blob: 15537b90b331da3f57adc2738b813bbf5dd7653f [file] [log] [blame]
R David Murrayc137f7c2013-04-08 08:48:03 -04001import getpass
2import os
R David Murrayc137f7c2013-04-08 08:48:03 -04003import unittest
4from io import StringIO
5from unittest import mock
6from test import support
7
R David Murrayf1c42532013-04-11 17:45:32 -04008try:
9 import termios
10except ImportError:
11 termios = None
12try:
13 import pwd
14except ImportError:
15 pwd = None
16
R David Murrayc137f7c2013-04-08 08:48:03 -040017@mock.patch('os.environ')
18class GetpassGetuserTest(unittest.TestCase):
19
20 def test_username_takes_username_from_env(self, environ):
21 expected_name = 'some_name'
22 environ.get.return_value = expected_name
23 self.assertEqual(expected_name, getpass.getuser())
24
25 def test_username_priorities_of_env_values(self, environ):
26 environ.get.return_value = None
R David Murrayf1c42532013-04-11 17:45:32 -040027 try:
28 getpass.getuser()
29 except ImportError: # in case there's no pwd module
30 pass
R David Murrayc137f7c2013-04-08 08:48:03 -040031 self.assertEqual(
32 environ.get.call_args_list,
33 [mock.call(x) for x in ('LOGNAME', 'USER', 'LNAME', 'USERNAME')])
34
35 def test_username_falls_back_to_pwd(self, environ):
36 expected_name = 'some_name'
37 environ.get.return_value = None
R David Murrayf1c42532013-04-11 17:45:32 -040038 if pwd:
39 with mock.patch('os.getuid') as uid, \
40 mock.patch('pwd.getpwuid') as getpw:
41 uid.return_value = 42
42 getpw.return_value = [expected_name]
43 self.assertEqual(expected_name,
44 getpass.getuser())
45 getpw.assert_called_once_with(42)
46 else:
47 self.assertRaises(ImportError, getpass.getuser)
R David Murrayc137f7c2013-04-08 08:48:03 -040048
49
50class GetpassRawinputTest(unittest.TestCase):
51
52 def test_flushes_stream_after_prompt(self):
53 # see issue 1703
54 stream = mock.Mock(spec=StringIO)
55 input = StringIO('input_string')
56 getpass._raw_input('some_prompt', stream, input=input)
57 stream.flush.assert_called_once_with()
58
59 def test_uses_stderr_as_default(self):
60 input = StringIO('input_string')
61 prompt = 'some_prompt'
62 with mock.patch('sys.stderr') as stderr:
63 getpass._raw_input(prompt, input=input)
64 stderr.write.assert_called_once_with(prompt)
65
66 @mock.patch('sys.stdin')
67 def test_uses_stdin_as_default_input(self, mock_input):
68 mock_input.readline.return_value = 'input_string'
69 getpass._raw_input(stream=StringIO())
70 mock_input.readline.assert_called_once_with()
71
72 def test_raises_on_empty_input(self):
73 input = StringIO('')
74 self.assertRaises(EOFError, getpass._raw_input, input=input)
75
76 def test_trims_trailing_newline(self):
77 input = StringIO('test\n')
78 self.assertEqual('test', getpass._raw_input(input=input))
79
80
81# Some of these tests are a bit white-box. The functional requirement is that
82# the password input be taken directly from the tty, and that it not be echoed
83# on the screen, unless we are falling back to stderr/stdin.
84
R David Murrayf1c42532013-04-11 17:45:32 -040085# Some of these might run on platforms without termios, but play it safe.
86@unittest.skipUnless(termios, 'tests require system with termios')
R David Murrayc137f7c2013-04-08 08:48:03 -040087class UnixGetpassTest(unittest.TestCase):
88
89 def test_uses_tty_directly(self):
90 with mock.patch('os.open') as open, \
91 mock.patch('os.fdopen'):
92 # By setting open's return value to None the implementation will
93 # skip code we don't care about in this test. We can mock this out
94 # fully if an alternate implementation works differently.
95 open.return_value = None
96 getpass.unix_getpass()
97 open.assert_called_once_with('/dev/tty',
98 os.O_RDWR | os.O_NOCTTY)
99
100 def test_resets_termios(self):
101 with mock.patch('os.open') as open, \
102 mock.patch('os.fdopen'), \
103 mock.patch('termios.tcgetattr') as tcgetattr, \
104 mock.patch('termios.tcsetattr') as tcsetattr:
105 open.return_value = 3
106 fake_attrs = [255, 255, 255, 255, 255]
107 tcgetattr.return_value = list(fake_attrs)
108 getpass.unix_getpass()
109 tcsetattr.assert_called_with(3, mock.ANY, fake_attrs)
110
111 def test_falls_back_to_fallback_if_termios_raises(self):
112 with mock.patch('os.open') as open, \
113 mock.patch('os.fdopen') as fdopen, \
114 mock.patch('termios.tcgetattr'), \
115 mock.patch('termios.tcsetattr') as tcsetattr, \
116 mock.patch('getpass.fallback_getpass') as fallback:
117 open.return_value = 3
118 fdopen.return_value = StringIO()
119 tcsetattr.side_effect = termios.error
120 getpass.unix_getpass()
121 fallback.assert_called_once_with('Password: ',
122 fdopen.return_value)
123
124 def test_flushes_stream_after_input(self):
125 # issue 7208
126 with mock.patch('os.open') as open, \
127 mock.patch('os.fdopen'), \
128 mock.patch('termios.tcgetattr'), \
129 mock.patch('termios.tcsetattr'):
130 open.return_value = 3
131 mock_stream = mock.Mock(spec=StringIO)
132 getpass.unix_getpass(stream=mock_stream)
133 mock_stream.flush.assert_called_with()
134
135 def test_falls_back_to_stdin(self):
136 with mock.patch('os.open') as os_open, \
137 mock.patch('sys.stdin', spec=StringIO) as stdin:
138 os_open.side_effect = IOError
139 stdin.fileno.side_effect = AttributeError
140 with support.captured_stderr() as stderr:
141 with self.assertWarns(getpass.GetPassWarning):
142 getpass.unix_getpass()
143 stdin.readline.assert_called_once_with()
144 self.assertIn('Warning', stderr.getvalue())
145 self.assertIn('Password:', stderr.getvalue())
146
147
148if __name__ == "__main__":
149 unittest.main()