mirror of
https://github.com/valitydev/salt.git
synced 2024-11-06 16:45:27 +00:00
conform shell integration tests to txt runner
This commit is contained in:
parent
f202aaf072
commit
0d6663b8a8
@ -215,23 +215,23 @@ class MatchTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|||||||
'''
|
'''
|
||||||
Test to see if we're supporting --doc
|
Test to see if we're supporting --doc
|
||||||
'''
|
'''
|
||||||
data = self.run_salt(r'-d \* user')
|
data = self.run_salt('-d "*" user')
|
||||||
self.assertIn('user.add:', data)
|
self.assertIn("'user.add:'", data)
|
||||||
|
|
||||||
def test_salt_documentation_arguments_not_assumed(self):
|
def test_salt_documentation_arguments_not_assumed(self):
|
||||||
'''
|
'''
|
||||||
Test to see if we're not auto-adding '*' and 'sys.doc' to the call
|
Test to see if we're not auto-adding '*' and 'sys.doc' to the call
|
||||||
'''
|
'''
|
||||||
data = self.run_salt('-d -t 20')
|
data = self.run_salt('-d -t 20')
|
||||||
self.assertIn('user.add:', data)
|
self.assertIn("'user.add:'", data)
|
||||||
data = self.run_salt('\'*\' -d -t 20')
|
data = self.run_salt('"*" -d -t 20')
|
||||||
self.assertIn('user.add:', data)
|
self.assertIn("'user.add:'", data)
|
||||||
data = self.run_salt('\'*\' -d user -t 20')
|
data = self.run_salt('"*" -d user -t 20')
|
||||||
self.assertIn('user.add:', data)
|
self.assertIn("'user.add:'", data)
|
||||||
data = self.run_salt('\'*\' sys.doc -d user -t 20')
|
data = self.run_salt('"*" sys.doc -d user -t 20')
|
||||||
self.assertIn('user.add:', data)
|
self.assertIn("'user.add:'", data)
|
||||||
data = self.run_salt('\'*\' sys.doc user -t 20')
|
data = self.run_salt('"*" sys.doc user -t 20')
|
||||||
self.assertIn('user.add:', data)
|
self.assertIn("'user.add:'", data)
|
||||||
|
|
||||||
def test_salt_documentation_too_many_arguments(self):
|
def test_salt_documentation_too_many_arguments(self):
|
||||||
'''
|
'''
|
||||||
|
@ -80,7 +80,7 @@ class RunTest(integration.ShellCase, integration.ShellCaseCommonTestsMixIn):
|
|||||||
with_retcode=True
|
with_retcode=True
|
||||||
)
|
)
|
||||||
try:
|
try:
|
||||||
self.assertIn('doc.runner:', ret[0])
|
self.assertIn("'doc.runner:'", ret[0])
|
||||||
self.assertFalse(os.path.isdir(os.path.join(config_dir, 'file:')))
|
self.assertFalse(os.path.isdir(os.path.join(config_dir, 'file:')))
|
||||||
except AssertionError:
|
except AssertionError:
|
||||||
if os.path.exists('/dev/log') and ret[2] != 2:
|
if os.path.exists('/dev/log') and ret[2] != 2:
|
||||||
|
Loading…
Reference in New Issue
Block a user