Example #1
0
 def test_muterun_good_command_stdout(self):
     out = muterun(self.good_command)
     self.assertEqual(b"test command\n", out.stdout) # stdout string is correct
Example #2
0
 def test_muterun_bad_command_return_type(self):
     self.assertEqual(type(NakedObject()), type(muterun(self.bad_command))) # returns NakedObject on error
Example #3
0
 def test_muterun_good_command_exitcode(self):
     out = muterun(self.good_command)
     self.assertEqual(0, out.exitcode) # exit code = 0 = success
Example #4
0
 def test_muterun_bad_command_stderr(self):
     out = muterun(self.bad_command)
     self.assertTrue(b'bogusapp: command not found'
                     in out.stderr)  # has std err message on failure
Example #5
0
 def test_muterun_good_command_return_type(self):
     self.assertEqual(type(NakedObject()), type(muterun(self.good_command))) # returns NakedObject on success
Example #6
0
 def test_muterun_bad_command_stdout(self):
     out = muterun(self.bad_command)
     self.assertEqual(b"", out.stdout) # std out is empty string on failure
Example #7
0
 def test_muterun_missing_option_exitcode(self):
     out = muterun(self.missing_option)
     self.assertEqual(1, out.exitcode) # returns 1 on missing option to ls
Example #8
0
 def test_muterun_good_command_exitcode(self):
     out = muterun(self.good_command)
     self.assertEqual(0, out.exitcode)  # exit code = 0 = success
Example #9
0
 def test_muterun_good_command_stdout(self):
     out = muterun(self.good_command)
     self.assertEqual(b"test command\n",
                      out.stdout)  # stdout string is correct
Example #10
0
 def test_muterun_good_command_return_type(self):
     self.assertEqual(type(
         NakedObject()), type(muterun(
             self.good_command)))  # returns NakedObject on success
Example #11
0
 def test_muterun_bad_command_return_type(self):
     self.assertEqual(type(
         NakedObject()), type(muterun(
             self.bad_command)))  # returns NakedObject on error
Example #12
0
 def test_muterun_missing_option_stdout(self):
     out = muterun(self.missing_option)
     self.assertEqual(b"",
                      out.stdout)  # std out is empty string on failure
Example #13
0
 def test_muterun_missing_option_stderr(self):
     out = muterun(self.missing_option)
     self.assertTrue(
         len(out.stderr) > 0)  # there is a stderr message present
Example #14
0
 def test_muterun_missing_option_exitcode(self):
     out = muterun(self.missing_option)
     self.assertEqual(1,
                      out.exitcode)  # returns 1 on missing option to ls
Example #15
0
 def test_muterun_good_command_stderr(self):
     out = muterun(self.good_command)
     self.assertEqual(b"", out.stderr)  # stderr empty string when successful command
Example #16
0
 def test_muterun_good_command_stderr(self):
     out = muterun(self.good_command)
     self.assertEqual(
         b"", out.stderr)  # stderr empty string when successful command
Example #17
0
 def test_muterun_bad_command_exitcode(self):
     out = muterun(self.bad_command)
     self.assertEqual(127, out.exitcode) # returns 127 on absent executable
Example #18
0
 def test_muterun_bad_command_exitcode(self):
     out = muterun(self.bad_command)
     self.assertEqual(127,
                      out.exitcode)  # returns 127 on absent executable
Example #19
0
 def test_muterun_bad_command_stderr(self):
     out = muterun(self.bad_command)
     self.assertTrue(b'bogusapp: command not found' in out.stderr) # has std err message on failure
Example #20
0
 def test_muterun_missing_option_stdout(self):
     out = muterun(self.missing_option)
     self.assertEqual(b"", out.stdout)  # std out is empty string on failure
Example #21
0
 def test_muterun_missing_option_stderr(self):
     out = muterun(self.missing_option)
     self.assertTrue(len(out.stderr) > 0) # there is a stderr message present
Example #22
0
 def test_muterun_bad_command_stdout(self):
     out = muterun(self.bad_command)
     self.assertEqual(b"",
                      out.stdout)  # std out is empty string on failure