public void ExpectedExitCode0Test()
 {
     var commandLineInstruction = new CommandLineInstruction();
       commandLineInstruction.FileName = "EchoParams.bat";
       commandLineInstruction.Arguments = "0 TextParam ErrorParam";
       var result = commandLineInstruction.Execute();
       Assert.IsTrue(result);
 }
 public void ExitCodeDiffersFromExpectedExitCodeMustFail()
 {
     var commandLineInstruction = new CommandLineInstruction();
       commandLineInstruction.FileName = "EchoParams.bat";
       commandLineInstruction.Arguments = "5 TextParam";
       var result = commandLineInstruction.Execute();
       Assert.IsFalse(result);
 }
예제 #3
0
        public void ExitCodeDiffersFromExpectedExitCodeMustFail()
        {
            var commandLineInstruction = new CommandLineInstruction();

            commandLineInstruction.FileName  = "EchoParams.bat";
            commandLineInstruction.Arguments = "5 TextParam";
            var result = commandLineInstruction.Execute();

            Assert.IsFalse(result);
        }
예제 #4
0
        public void ExpectedExitCode0Test()
        {
            var commandLineInstruction = new CommandLineInstruction();

            commandLineInstruction.FileName  = "EchoParams.bat";
            commandLineInstruction.Arguments = "0 TextParam ErrorParam";
            var result = commandLineInstruction.Execute();

            Assert.IsTrue(result);
        }
 public void StandardErrorIsLogged()
 {
     const string standardParameterText = "TextParam";
       const string errorParameterText = "\"An error has occured\"";
       var memoryStream = new MemoryStream();
       var streamWriter = new StreamWriter(memoryStream);
       var commandLineInstruction = new CommandLineInstruction(null, streamWriter);
       commandLineInstruction.FileName = "EchoParams.bat";
       commandLineInstruction.Arguments = "0 " + standardParameterText + " " + errorParameterText;
       var result = commandLineInstruction.Execute();
       Assert.IsTrue(result);
       streamWriter.Flush();
       memoryStream.Position = 0;
       var streamReader = new StreamReader(memoryStream);
       Assert.AreEqual(errorParameterText, streamReader.ReadToEnd().Trim());
 }
예제 #6
0
        public void StandardOutputIsLogged()
        {
            const string standardParameterText  = "TextParam";
            var          memoryStream           = new MemoryStream();
            var          streamWriter           = new StreamWriter(memoryStream);
            var          commandLineInstruction = new CommandLineInstruction(streamWriter, null);

            commandLineInstruction.FileName  = "EchoParams.bat";
            commandLineInstruction.Arguments = "0 " + standardParameterText;
            var result = commandLineInstruction.Execute();

            Assert.IsTrue(result);
            streamWriter.Flush();
            memoryStream.Position = 0;
            var streamReader = new StreamReader(memoryStream);

            Assert.AreEqual(standardParameterText, streamReader.ReadToEnd());
        }
예제 #7
0
        public void StandardErrorIsLogged()
        {
            const string standardParameterText  = "TextParam";
            const string errorParameterText     = "\"An error has occured\"";
            var          memoryStream           = new MemoryStream();
            var          streamWriter           = new StreamWriter(memoryStream);
            var          commandLineInstruction = new CommandLineInstruction(null, streamWriter);

            commandLineInstruction.FileName  = "EchoParams.bat";
            commandLineInstruction.Arguments = "0 " + standardParameterText + " " + errorParameterText;
            var result = commandLineInstruction.Execute();

            Assert.IsTrue(result);
            streamWriter.Flush();
            memoryStream.Position = 0;
            var streamReader = new StreamReader(memoryStream);

            Assert.AreEqual(errorParameterText, streamReader.ReadToEnd().Trim());
        }
 public void StandardOutputIsLogged()
 {
     const string standardParameterText = "TextParam";
       var memoryStream = new MemoryStream();
       var streamWriter = new StreamWriter(memoryStream);
       var commandLineInstruction = new CommandLineInstruction(streamWriter, null);
       commandLineInstruction.FileName = "EchoParams.bat";
       commandLineInstruction.Arguments = "0 " + standardParameterText;
       var result = commandLineInstruction.Execute();
       Assert.IsTrue(result);
       streamWriter.Flush();
       memoryStream.Position = 0;
       var streamReader = new StreamReader(memoryStream);
       Assert.AreEqual(standardParameterText, streamReader.ReadToEnd());
 }