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.
41 // http://www.gnu.org/software/automake/manual/automake.html#Using-the-TAP-test-protocol
47 # define EXIT_FATAL 99
51 # define EX_NOEXEC 126
55 # define EX_NOTFOUND 127
62 typedef std::vector
< std::pair
<std::string
, std::string
> > Options
;
67 SUCCESS
= EXIT_SUCCESS
,
68 FAILURE
= EXIT_FAILURE
,
73 INVALID_POSIX_SPAWN
= 127
76 static const char* toString(error_t arg
)
80 case Application::SUCCESS
:
81 return "EXIT_SUCCESS";
83 case Application::UNINITIALIZED
:
84 return "UNINITIALIZED";
86 case Application::SIGTERM_KILLED
:
87 return "Exit happened via SIGTERM";
89 case Application::FAILURE
:
90 return "EXIT_FAILURE";
92 case Application::UNKNOWN_SIGNAL
:
93 return "Exit happened via a signal which was not SIGTERM";
95 case Application::INVALID_POSIX_SPAWN
:
96 return "127: Invalid call to posix_spawn()";
98 case Application::UNKNOWN
:
103 return "EXIT_UNKNOWN";
119 void close(const close_t
& arg
);
120 void dup_for_spawn(posix_spawn_file_actions_t
& file_actions
);
124 bool read(libtest::vchar_t
&);
133 Application(const std::string
& arg
, const bool _use_libtool_arg
= false);
135 virtual ~Application();
137 void add_option(const std::string
&);
138 void add_option(const std::string
&, const std::string
&);
139 void add_long_option(const std::string
& option_name
, const std::string
& option_value
);
140 error_t
run(const char *args
[]= NULL
);
141 Application::error_t
join();
143 libtest::vchar_t
stdout_result() const
145 return _stdout_buffer
;
148 size_t stdout_result_length() const
150 return _stdout_buffer
.size();
153 libtest::vchar_t
stderr_result() const
155 return _stderr_buffer
;
158 const char* stderr_c_str() const
160 return &_stderr_buffer
[0];
163 size_t stderr_result_length() const
165 return _stderr_buffer
.size();
170 void use_valgrind(bool arg
)
180 void use_gdb(bool arg
)
185 void use_ptrcheck(bool arg
)
190 std::string
arguments();
192 std::string
gdb_filename()
194 return _gdb_filename
;
208 void create_argv(const char *args
[]);
210 void add_to_build_argv(const char*);
213 const bool _use_libtool
;
219 std::string _exectuble_name
;
220 std::string _exectuble
;
221 std::string _exectuble_with_path
;
222 std::string _gdb_filename
;
227 libtest::vchar_ptr_t built_argv
;
229 libtest::vchar_t _stdout_buffer
;
230 libtest::vchar_t _stderr_buffer
;
233 error_t _app_exit_state
;
236 static inline std::ostream
& operator<<(std::ostream
& output
, const enum Application::error_t
&arg
)
238 return output
<< Application::toString(arg
);
241 int exec_cmdline(const std::string
& executable
, const char *args
[], bool use_libtool
= false);
243 const char *gearmand_binary();
244 const char *drizzled_binary();