mirror of
https://github.com/ansible-collections/community.general.git
synced 2024-09-14 20:13:21 +02:00
If /usr/share/dict/words does not exist, use cracklib-small to test large output.
This commit is contained in:
parent
306bab93d8
commit
ecc0b0770c
1 changed files with 6 additions and 1 deletions
|
@ -164,8 +164,13 @@ class TestRunner(unittest.TestCase):
|
|||
assert result['rc'] == 0
|
||||
|
||||
def test_large_output(self):
|
||||
large_path = "/usr/share/dict/words"
|
||||
if not os.path.exists(large_path):
|
||||
large_path = "/usr/share/dict/cracklib-small"
|
||||
if not os.path.exists(large_path):
|
||||
raise SkipTest
|
||||
# Ensure reading a large amount of output from a command doesn't hang.
|
||||
result = self._run('command', [ "/bin/cat", "/usr/share/dict/words" ])
|
||||
result = self._run('command', [ "/bin/cat", large_path ])
|
||||
assert "failed" not in result
|
||||
assert "msg" not in result
|
||||
assert result['rc'] == 0
|
||||
|
|
Loading…
Reference in a new issue