1 ///////////////////////////////////////////////////////////////////////////////
2 // Name: tests/exec/exec.cpp
3 // Purpose: test wxExecute()
4 // Author: Francesco Montorsi
5 // (based on console sample TestExecute() function)
8 // Copyright: (c) 2009 Francesco Montorsi
9 ///////////////////////////////////////////////////////////////////////////////
11 // ----------------------------------------------------------------------------
13 // ----------------------------------------------------------------------------
22 #include "wx/process.h"
23 #include "wx/sstream.h"
26 #define COMMAND "echo hi"
27 #define ASYNC_COMMAND "xclock"
28 #define SHELL_COMMAND "echo hi from shell"
29 #define REDIRECT_COMMAND "cat -n Makefile"
30 #elif defined(__WXMSW__)
31 #define COMMAND "cmd.exe /c \"echo hi\""
32 #define ASYNC_COMMAND "notepad"
33 #define SHELL_COMMAND "echo hi"
34 #define REDIRECT_COMMAND COMMAND
36 #error "no command to exec"
39 // ----------------------------------------------------------------------------
41 // ----------------------------------------------------------------------------
43 class ExecTestCase
: public CppUnit::TestCase
49 CPPUNIT_TEST_SUITE( ExecTestCase
);
50 CPPUNIT_TEST( TestShell
);
51 CPPUNIT_TEST( TestExecute
);
52 CPPUNIT_TEST( TestProcess
);
53 CPPUNIT_TEST_SUITE_END();
59 DECLARE_NO_COPY_CLASS(ExecTestCase
)
62 // register in the unnamed registry so that these tests are run by default
63 CPPUNIT_TEST_SUITE_REGISTRATION( ExecTestCase
);
65 // also include in it's own registry so that these tests can be run alone
66 CPPUNIT_TEST_SUITE_NAMED_REGISTRATION( ExecTestCase
, "ExecTestCase" );
69 void ExecTestCase::TestShell()
71 CPPUNIT_ASSERT( wxShell(SHELL_COMMAND
) );
74 void ExecTestCase::TestExecute()
77 CPPUNIT_ASSERT( wxExecute(COMMAND
, wxEXEC_SYNC
) == 0 );
80 long pid
= wxExecute(ASYNC_COMMAND
, wxEXEC_ASYNC
);
81 CPPUNIT_ASSERT( pid
!= 0 );
83 // NOTE: under Windows the first wxKill() invocation with wxSIGTERM
84 // may fail if the system is fast and the ASYNC_COMMAND app
85 // doesn't manage to create its HWND before our wxKill() is
86 // executed; in that case we "fall back" to the second invocation
87 // with wxSIGKILL (which should always succeed)
88 CPPUNIT_ASSERT( wxKill(pid
, wxSIGTERM
) == 0 ||
89 wxKill(pid
, wxSIGKILL
) == 0 );
91 // test running COMMAND again, but this time with redirection:
92 wxArrayString stdout_arr
;
93 CPPUNIT_ASSERT( wxExecute(COMMAND
, stdout_arr
, wxEXEC_SYNC
) == 0 );
94 CPPUNIT_ASSERT( stdout_arr
[0] == "hi" );
97 void ExecTestCase::TestProcess()
99 // test wxExecute with wxProcess
100 wxProcess
*proc
= new wxProcess
;
101 long pid
= wxExecute(ASYNC_COMMAND
, wxEXEC_ASYNC
, proc
);
102 CPPUNIT_ASSERT( proc
->GetPid() == pid
&& pid
!= 0 );
104 // we're not going to process the wxEVT_END_PROCESS event,
105 // so the proc instance will auto-delete itself after we kill
106 // the asynch process:
107 CPPUNIT_ASSERT( wxKill(pid
, wxSIGTERM
) == 0 ||
108 wxKill(pid
, wxSIGKILL
) == 0 );
111 // test wxExecute with wxProcess and REDIRECTION
112 wxProcess
*proc2
= new wxProcess
;
114 CPPUNIT_ASSERT( wxExecute(COMMAND
, wxEXEC_SYNC
, proc2
) == 0 );
116 wxStringOutputStream stdout_stream
;
117 CPPUNIT_ASSERT( proc2
->GetInputStream() );
118 CPPUNIT_ASSERT_EQUAL( wxSTREAM_EOF
,
119 proc2
->GetInputStream()->Read(stdout_stream
).GetLastError() );
121 wxString
str(stdout_stream
.GetString());
122 CPPUNIT_ASSERT_EQUAL( "hi", str
.Trim() );