| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725 |
- //
- // ProcessTest.cs - NUnit Test Cases for System.Diagnostics.Process
- //
- // Authors:
- // Gert Driesen ([email protected])
- // Robert Jordan <[email protected]>
- //
- // (C) 2007 Gert Driesen
- //
- using System;
- using System.ComponentModel;
- using System.Diagnostics;
- using System.IO;
- using System.Text;
- using NUnit.Framework;
- namespace MonoTests.System.Diagnostics
- {
- [TestFixture]
- public class ProcessTest
- {
- [Test]
- public void GetProcessById_MachineName_Null ()
- {
- try {
- Process.GetProcessById (1, (string) null);
- Assert.Fail ("#1");
- } catch (ArgumentNullException ex) {
- Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
- Assert.IsNotNull (ex.Message, "#3");
- Assert.IsNotNull (ex.ParamName, "#4");
- Assert.AreEqual ("machineName", ex.ParamName, "#5");
- Assert.IsNull (ex.InnerException, "#6");
- }
- }
- [Test]
- public void GetProcesses_MachineName_Null ()
- {
- try {
- Process.GetProcesses ((string) null);
- Assert.Fail ("#1");
- } catch (ArgumentNullException ex) {
- Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
- Assert.IsNotNull (ex.Message, "#3");
- Assert.IsNotNull (ex.ParamName, "#4");
- Assert.AreEqual ("machineName", ex.ParamName, "#5");
- Assert.IsNull (ex.InnerException, "#6");
- }
- }
- [Test]
- public void PriorityClass_NotStarted ()
- {
- Process process = new Process ();
- try {
- process.PriorityClass = ProcessPriorityClass.Normal;
- Assert.Fail ("#A1");
- } catch (InvalidOperationException ex) {
- // No process is associated with this object
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#A2");
- Assert.IsNull (ex.InnerException, "#A3");
- Assert.IsNotNull (ex.Message, "#A4");
- }
- try {
- Assert.Fail ("#B1:" + process.PriorityClass);
- } catch (InvalidOperationException ex) {
- // No process is associated with this object
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#B2");
- Assert.IsNull (ex.InnerException, "#B3");
- Assert.IsNotNull (ex.Message, "#B4");
- }
- }
- [Test]
- public void PriorityClass_Invalid ()
- {
- Process process = new Process ();
- try {
- process.PriorityClass = (ProcessPriorityClass) 666;
- Assert.Fail ("#1");
- } catch (InvalidEnumArgumentException ex) {
- Assert.AreEqual (typeof (InvalidEnumArgumentException), ex.GetType (), "#2");
- Assert.IsNull (ex.InnerException, "#3");
- Assert.IsNotNull (ex.Message, "#4");
- Assert.IsTrue (ex.Message.IndexOf ("666") != -1, "#5");
- Assert.IsTrue (ex.Message.IndexOf (typeof (ProcessPriorityClass).Name) != -1, "#6");
- Assert.IsNotNull (ex.ParamName, "#7");
- Assert.AreEqual ("value", ex.ParamName, "#8");
- }
- }
- [Test] // Start ()
- public void Start1_FileName_Empty ()
- {
- Process process = new Process ();
- process.StartInfo = new ProcessStartInfo (string.Empty);
- // no shell
- process.StartInfo.UseShellExecute = false;
- try {
- process.Start ();
- Assert.Fail ("#A1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#A2");
- Assert.IsNull (ex.InnerException, "#A3");
- Assert.IsNotNull (ex.Message, "#A4");
- }
- // shell
- process.StartInfo.UseShellExecute = true;
- try {
- process.Start ();
- Assert.Fail ("#B1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#B2");
- Assert.IsNull (ex.InnerException, "#B3");
- Assert.IsNotNull (ex.Message, "#B4");
- }
- }
- [Test] // Start ()
- public void Start1_FileName_InvalidPathCharacters ()
- {
- if (RunningOnUnix)
- // on unix, all characters are allowed
- return;
- string systemDir = Environment.GetFolderPath (Environment.SpecialFolder.System);
- string exe = "\"" + Path.Combine (systemDir, "calc.exe") + "\"";
- Process process = new Process ();
- process.StartInfo = new ProcessStartInfo (exe);
- // no shell
- process.StartInfo.UseShellExecute = false;
- Assert.IsTrue (process.Start ());
- process.Kill ();
- // shell
- process.StartInfo.UseShellExecute = true;
- Assert.IsTrue (process.Start ());
- process.Kill ();
- }
- [Test] // Start ()
- public void Start1_FileName_NotFound ()
- {
- Process process = new Process ();
- string exe = RunningOnUnix ? exe = "/usr/bin/shouldnoteverexist"
- : @"c:\shouldnoteverexist.exe";
- // absolute path, no shell
- process.StartInfo = new ProcessStartInfo (exe);
- process.StartInfo.UseShellExecute = false;
- try {
- process.Start ();
- Assert.Fail ("#A1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#A2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#A3");
- Assert.IsNull (ex.InnerException, "#A4");
- Assert.IsNotNull (ex.Message, "#A5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#A6");
- }
- // relative path, no shell
- process.StartInfo.FileName = "shouldnoteverexist.exe";
- process.StartInfo.UseShellExecute = false;
- try {
- process.Start ();
- Assert.Fail ("#B1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#B2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#B3");
- Assert.IsNull (ex.InnerException, "#B4");
- Assert.IsNotNull (ex.Message, "#B5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#B6");
- }
- if (RunningOnUnix)
- Assert.Ignore ("On Unix and Mac OS X, we try " +
- "to open any file (using xdg-open, ...)" +
- " and we do not report an exception " +
- "if this fails.");
- // absolute path, shell
- process.StartInfo.FileName = exe;
- process.StartInfo.UseShellExecute = true;
- try {
- process.Start ();
- Assert.Fail ("#C1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#C2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#C3");
- Assert.IsNull (ex.InnerException, "#C4");
- Assert.IsNotNull (ex.Message, "#C5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#C6");
- }
- // relative path, shell
- process.StartInfo.FileName = "shouldnoteverexist.exe";
- process.StartInfo.UseShellExecute = true;
- try {
- process.Start ();
- Assert.Fail ("#D1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#D2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#D3");
- Assert.IsNull (ex.InnerException, "#D4");
- Assert.IsNotNull (ex.Message, "#D5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#D6");
- }
- }
- [Test] // Start ()
- public void Start1_FileName_Null ()
- {
- Process process = new Process ();
- process.StartInfo = new ProcessStartInfo ((string) null);
- // no shell
- process.StartInfo.UseShellExecute = false;
- try {
- process.Start ();
- Assert.Fail ("#A1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#A2");
- Assert.IsNull (ex.InnerException, "#A3");
- Assert.IsNotNull (ex.Message, "#A4");
- }
- // shell
- process.StartInfo.UseShellExecute = true;
- try {
- process.Start ();
- Assert.Fail ("#B1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#B2");
- Assert.IsNull (ex.InnerException, "#B3");
- Assert.IsNotNull (ex.Message, "#B4");
- }
- }
- [Test] // Start ()
- public void Start1_FileName_Whitespace ()
- {
- Process process = new Process ();
- process.StartInfo = new ProcessStartInfo (" ");
- process.StartInfo.UseShellExecute = false;
- try {
- process.Start ();
- Assert.Fail ("#1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#3");
- Assert.IsNull (ex.InnerException, "#4");
- Assert.IsNotNull (ex.Message, "#5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#6");
- }
- }
- [Test] // Start (ProcessStartInfo)
- public void Start2_FileName_Empty ()
- {
- ProcessStartInfo startInfo = new ProcessStartInfo (string.Empty);
- // no shell
- startInfo.UseShellExecute = false;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#A1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#A2");
- Assert.IsNull (ex.InnerException, "#A3");
- Assert.IsNotNull (ex.Message, "#A4");
- }
- // shell
- startInfo.UseShellExecute = true;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#B1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#B2");
- Assert.IsNull (ex.InnerException, "#B3");
- Assert.IsNotNull (ex.Message, "#B4");
- }
- }
- [Test] // Start (ProcessStartInfo)
- public void Start2_FileName_NotFound ()
- {
- ProcessStartInfo startInfo = new ProcessStartInfo ();
- string exe = RunningOnUnix ? exe = "/usr/bin/shouldnoteverexist"
- : @"c:\shouldnoteverexist.exe";
- // absolute path, no shell
- startInfo.FileName = exe;
- startInfo.UseShellExecute = false;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#A1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#A2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#A3");
- Assert.IsNull (ex.InnerException, "#A4");
- Assert.IsNotNull (ex.Message, "#A5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#A6");
- }
- // relative path, no shell
- startInfo.FileName = "shouldnoteverexist.exe";
- startInfo.UseShellExecute = false;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#B1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#B2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#B3");
- Assert.IsNull (ex.InnerException, "#B4");
- Assert.IsNotNull (ex.Message, "#B5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#B6");
- }
- if (RunningOnUnix)
- Assert.Ignore ("On Unix and Mac OS X, we try " +
- "to open any file (using xdg-open, ...)" +
- " and we do not report an exception " +
- "if this fails.");
- // absolute path, shell
- startInfo.FileName = exe;
- startInfo.UseShellExecute = true;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#C1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#C2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#C3");
- Assert.IsNull (ex.InnerException, "#C4");
- Assert.IsNotNull (ex.Message, "#C5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#C6");
- }
- // relative path, shell
- startInfo.FileName = "shouldnoteverexist.exe";
- startInfo.UseShellExecute = true;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#D1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#D2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#D3");
- Assert.IsNull (ex.InnerException, "#D4");
- Assert.IsNotNull (ex.Message, "#D5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#D6");
- }
- }
- [Test] // Start (ProcessStartInfo)
- public void Start2_FileName_Null ()
- {
- ProcessStartInfo startInfo = new ProcessStartInfo ((string) null);
- // no shell
- startInfo.UseShellExecute = false;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#A1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#A2");
- Assert.IsNull (ex.InnerException, "#A3");
- Assert.IsNotNull (ex.Message, "#A4");
- }
- // shell
- startInfo.UseShellExecute = true;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#B1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#B2");
- Assert.IsNull (ex.InnerException, "#B3");
- Assert.IsNotNull (ex.Message, "#B4");
- }
- }
- [Test] // Start (ProcessStartInfo)
- public void Start2_FileName_Whitespace ()
- {
- ProcessStartInfo startInfo = new ProcessStartInfo (" ");
- startInfo.UseShellExecute = false;
- try {
- Process.Start (startInfo);
- Assert.Fail ("#1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#3");
- Assert.IsNull (ex.InnerException, "#4");
- Assert.IsNotNull (ex.Message, "#5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#6");
- }
- }
- [Test] // Start (ProcessStartInfo)
- public void Start2_StartInfo_Null ()
- {
- try {
- Process.Start ((ProcessStartInfo) null);
- Assert.Fail ("#1");
- } catch (ArgumentNullException ex) {
- Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
- Assert.IsNull (ex.InnerException, "#3");
- Assert.IsNotNull (ex.Message, "#4");
- Assert.IsNotNull (ex.ParamName, "#5");
- Assert.AreEqual ("startInfo", ex.ParamName, "#6");
- }
- }
- [Test] // Start (string)
- public void Start3_FileName_Empty ()
- {
- try {
- Process.Start (string.Empty);
- Assert.Fail ("#1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
- Assert.IsNull (ex.InnerException, "#3");
- Assert.IsNotNull (ex.Message, "#4");
- }
- }
- [Test] // Start (string)
- public void Start3_FileName_NotFound ()
- {
- if (RunningOnUnix)
- Assert.Ignore ("On Unix and Mac OS X, we try " +
- "to open any file (using xdg-open, ...)" +
- " and we do not report an exception " +
- "if this fails.");
- string exe = @"c:\shouldnoteverexist.exe";
- // absolute path, no shell
- try {
- Process.Start (exe);
- Assert.Fail ("#A1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#A2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#A3");
- Assert.IsNull (ex.InnerException, "#A4");
- Assert.IsNotNull (ex.Message, "#A5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#A6");
- }
- // relative path, no shell
- try {
- Process.Start ("shouldnoteverexist.exe");
- Assert.Fail ("#B1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#B2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#B3");
- Assert.IsNull (ex.InnerException, "#B4");
- Assert.IsNotNull (ex.Message, "#B5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#B6");
- }
- }
- [Test] // Start (string)
- public void Start3_FileName_Null ()
- {
- try {
- Process.Start ((string) null);
- Assert.Fail ("#1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
- Assert.IsNull (ex.InnerException, "#3");
- Assert.IsNotNull (ex.Message, "#4");
- }
- }
- [Test] // Start (string, string)
- public void Start4_Arguments_Null ()
- {
- if (RunningOnUnix)
- Assert.Ignore ("On Unix and Mac OS X, we try " +
- "to open any file (using xdg-open, ...)" +
- " and we do not report an exception " +
- "if this fails.");
- string exe = @"c:\shouldnoteverexist.exe";
- try {
- Process.Start ("whatever.exe", (string) null);
- Assert.Fail ("#1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#B2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#B3");
- Assert.IsNull (ex.InnerException, "#B4");
- Assert.IsNotNull (ex.Message, "#B5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#B6");
- }
- }
- [Test] // Start (string, string)
- public void Start4_FileName_Empty ()
- {
- try {
- Process.Start (string.Empty, string.Empty);
- Assert.Fail ("#1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
- Assert.IsNull (ex.InnerException, "#3");
- Assert.IsNotNull (ex.Message, "#4");
- }
- }
- [Test] // Start (string, string)
- public void Start4_FileName_NotFound ()
- {
- if (RunningOnUnix)
- Assert.Ignore ("On Unix and Mac OS X, we try " +
- "to open any file (using xdg-open, ...)" +
- " and we do not report an exception " +
- "if this fails.");
- string exe = @"c:\shouldnoteverexist.exe";
- // absolute path, no shell
- try {
- Process.Start (exe, string.Empty);
- Assert.Fail ("#A1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#A2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#A3");
- Assert.IsNull (ex.InnerException, "#A4");
- Assert.IsNotNull (ex.Message, "#A5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#A6");
- }
- // relative path, no shell
- try {
- Process.Start ("shouldnoteverexist.exe", string.Empty);
- Assert.Fail ("#B1");
- } catch (Win32Exception ex) {
- // The system cannot find the file specified
- Assert.AreEqual (typeof (Win32Exception), ex.GetType (), "#B2");
- Assert.AreEqual (-2147467259, ex.ErrorCode, "#B3");
- Assert.IsNull (ex.InnerException, "#B4");
- Assert.IsNotNull (ex.Message, "#B5");
- Assert.AreEqual (2, ex.NativeErrorCode, "#B6");
- }
- }
- #if NET_2_0
- [Test]
- public void Start_UseShellExecuteWithEmptyUserName ()
- {
- if (RunningOnUnix)
- Assert.Ignore ("On Unix and Mac OS X, we try " +
- "to open any file (using xdg-open, ...)" +
- " and we do not report an exception " +
- "if this fails.");
- string exe = @"c:\shouldnoteverexist.exe";
- try {
- Process p = new Process ();
- p.StartInfo.FileName = exe;
- p.StartInfo.UseShellExecute = true;
- p.StartInfo.UserName = "";
- p.Start ();
- Assert.Fail ("#1");
- } catch (InvalidOperationException) {
- Assert.Fail ("#2");
- } catch (Win32Exception) {
- }
- try {
- Process p = new Process ();
- p.StartInfo.FileName = exe;
- p.StartInfo.UseShellExecute = true;
- p.StartInfo.UserName = null;
- p.Start ();
- Assert.Fail ("#3");
- } catch (InvalidOperationException) {
- Assert.Fail ("#4");
- } catch (Win32Exception) {
- }
- }
- #endif
-
- [Test] // Start (string, string)
- public void Start4_FileName_Null ()
- {
- try {
- Process.Start ((string) null, string.Empty);
- Assert.Fail ("#1");
- } catch (InvalidOperationException ex) {
- // Cannot start process because a file name has
- // not been provided
- Assert.AreEqual (typeof (InvalidOperationException), ex.GetType (), "#2");
- Assert.IsNull (ex.InnerException, "#3");
- Assert.IsNotNull (ex.Message, "#4");
- }
- }
- [Test]
- public void StartInfo ()
- {
- ProcessStartInfo startInfo = new ProcessStartInfo ();
- Process p = new Process ();
- Assert.IsNotNull (p.StartInfo, "#A1");
- p.StartInfo = startInfo;
- Assert.AreSame (startInfo, p.StartInfo, "#A2");
- }
- [Test]
- public void StartInfo_Null ()
- {
- Process p = new Process ();
- try {
- p.StartInfo = null;
- Assert.Fail ("#1");
- } catch (ArgumentNullException ex) {
- Assert.AreEqual (typeof (ArgumentNullException), ex.GetType (), "#2");
- Assert.IsNull (ex.InnerException, "#3");
- Assert.IsNotNull (ex.Message, "#4");
- Assert.IsNotNull (ex.ParamName, "#5");
- Assert.AreEqual ("value", ex.ParamName, "#6");
- }
- }
- [Test]
- [NUnit.Framework.Category ("NotDotNet")]
- public void TestRedirectedOutputIsAsync ()
- {
- // Test requires cygwin, so we just bail out for now.
- if (Path.DirectorySeparatorChar == '\\')
- return;
-
- Process p = new Process ();
- p.StartInfo = new ProcessStartInfo ("/bin/sh", "-c \"sleep 2; echo hello\"");
- p.StartInfo.RedirectStandardOutput = true;
- p.StartInfo.UseShellExecute = false;
- p.Start ();
- Stream stdout = p.StandardOutput.BaseStream;
- byte [] buffer = new byte [200];
- // start async Read operation
- DateTime start = DateTime.Now;
- IAsyncResult ar = stdout.BeginRead (buffer, 0, buffer.Length,
- new AsyncCallback (Read), stdout);
- Assert.IsTrue ((DateTime.Now - start).TotalMilliseconds < 1000, "#01 BeginRead was not async");
- p.WaitForExit ();
- Assert.AreEqual (0, p.ExitCode, "#02 script failure");
- /*
- ar.AsyncWaitHandle.WaitOne (2000, false);
- if (bytesRead < "hello".Length)
- Assert.Fail ("#03 got {0} bytes", bytesRead);
- Assert.AreEqual ("hello", Encoding.Default.GetString (buffer, 0, 5), "#04");
- */
- }
- void Read (IAsyncResult ar)
- {
- Stream stm = (Stream) ar.AsyncState;
- bytesRead = stm.EndRead (ar);
- }
- static bool RunningOnUnix {
- get {
- int p = (int)Environment.OSVersion.Platform;
- return ((p == 128) || (p == 4) || (p == 6));
- }
- }
- int bytesRead = -1;
- }
- }
|