1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
3 * Data Differential YATL (i.e. libtest) library
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
14 * * Redistributions in binary form must reproduce the above
15 * copyright notice, this list of conditions and the following disclaimer
16 * in the documentation and/or other materials provided with the
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
23 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
24 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
25 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
26 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
27 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
28 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
29 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
30 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
31 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
32 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
33 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
40 typedef int posix_spawn_file_actions_t
;
47 // http://www.gnu.org/software/automake/manual/automake.html#Using-the-TAP-test-protocol
53 # define EXIT_FATAL 99
57 # define EX_NOEXEC 126
61 # define EX_NOTFOUND 127
68 typedef std::vector
< std::pair
<std::string
, std::string
> > Options
;
73 SUCCESS
= EXIT_SUCCESS
,
74 FAILURE
= EXIT_FAILURE
,
79 INVALID_POSIX_SPAWN
= 127
82 static const char* toString(error_t arg
)
86 case Application::SUCCESS
:
87 return "EXIT_SUCCESS";
89 case Application::UNINITIALIZED
:
90 return "UNINITIALIZED";
92 case Application::SIGTERM_KILLED
:
93 return "Exit happened via SIGTERM";
95 case Application::FAILURE
:
96 return "EXIT_FAILURE";
98 case Application::UNKNOWN_SIGNAL
:
99 return "Exit happened via a signal which was not SIGTERM";
101 case Application::INVALID_POSIX_SPAWN
:
102 return "127: Invalid call to posix_spawn()";
104 case Application::UNKNOWN
:
109 return "EXIT_UNKNOWN";
125 void close(const close_t
& arg
);
126 void dup_for_spawn(posix_spawn_file_actions_t
& file_actions
);
130 bool read(libtest::vchar_t
&);
139 Application(const std::string
& arg
, const bool _use_libtool_arg
= false);
141 virtual ~Application();
143 void add_option(const std::string
&);
144 void add_option(const std::string
&, const std::string
&);
145 void add_long_option(const std::string
& option_name
, const std::string
& option_value
);
146 error_t
run(const char *args
[]= NULL
);
147 Application::error_t
join();
149 libtest::vchar_t
stdout_result() const
151 return _stdout_buffer
;
154 size_t stdout_result_length() const
156 return _stdout_buffer
.size();
159 libtest::vchar_t
stderr_result() const
161 return _stderr_buffer
;
164 const char* stderr_c_str() const
166 return &_stderr_buffer
[0];
169 size_t stderr_result_length() const
171 return _stderr_buffer
.size();
176 void use_valgrind(bool arg
)
186 void use_gdb(bool arg
)
191 void use_ptrcheck(bool arg
)
196 std::string
arguments();
198 std::string
gdb_filename()
200 return _gdb_filename
;
214 void create_argv(const char *args
[]);
216 void add_to_build_argv(const char*);
219 const bool _use_libtool
;
225 std::string _exectuble_name
;
226 std::string _exectuble
;
227 std::string _exectuble_with_path
;
228 std::string _gdb_filename
;
233 libtest::vchar_ptr_t built_argv
;
235 libtest::vchar_t _stdout_buffer
;
236 libtest::vchar_t _stderr_buffer
;
239 error_t _app_exit_state
;
242 static inline std::ostream
& operator<<(std::ostream
& output
, const enum Application::error_t
&arg
)
244 return output
<< Application::toString(arg
);
247 int exec_cmdline(const std::string
& executable
, const char *args
[], bool use_libtool
= false);
249 const char *gearmand_binary();
250 const char *drizzled_binary();