예제 #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
예제 #2
0
 def test_muterun_bad_command_return_type(self):
     self.assertEqual(type(NakedObject()), type(muterun(self.bad_command))) # returns NakedObject on error
예제 #3
0
 def test_muterun_good_command_exitcode(self):
     out = muterun(self.good_command)
     self.assertEqual(0, out.exitcode) # exit code = 0 = success
예제 #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
예제 #5
0
 def test_muterun_good_command_return_type(self):
     self.assertEqual(type(NakedObject()), type(muterun(self.good_command))) # returns NakedObject on success
예제 #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
예제 #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
예제 #8
0
 def test_muterun_good_command_exitcode(self):
     out = muterun(self.good_command)
     self.assertEqual(0, out.exitcode)  # exit code = 0 = success
예제 #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
예제 #10
0
 def test_muterun_good_command_return_type(self):
     self.assertEqual(type(
         NakedObject()), type(muterun(
             self.good_command)))  # returns NakedObject on success
예제 #11
0
 def test_muterun_bad_command_return_type(self):
     self.assertEqual(type(
         NakedObject()), type(muterun(
             self.bad_command)))  # returns NakedObject on error
예제 #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
예제 #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
예제 #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
예제 #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
예제 #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
예제 #17
0
 def test_muterun_bad_command_exitcode(self):
     out = muterun(self.bad_command)
     self.assertEqual(127, out.exitcode) # returns 127 on absent executable
예제 #18
0
 def test_muterun_bad_command_exitcode(self):
     out = muterun(self.bad_command)
     self.assertEqual(127,
                      out.exitcode)  # returns 127 on absent executable
예제 #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
예제 #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
예제 #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
예제 #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