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
49 typedef std::vector
< std::pair
<std::string
, std::string
> > Options
;
54 SUCCESS
= EXIT_SUCCESS
,
55 FAILURE
= EXIT_FAILURE
,
72 void close(const close_t
& arg
);
73 void dup_for_spawn(posix_spawn_file_actions_t
& file_actions
);
77 bool read(libtest::vchar_t
&);
86 Application(const std::string
& arg
, const bool _use_libtool_arg
= false);
88 virtual ~Application();
90 void add_option(const std::string
&);
91 void add_option(const std::string
&, const std::string
&);
92 void add_long_option(const std::string
& option_name
, const std::string
& option_value
);
93 error_t
run(const char *args
[]= NULL
);
94 error_t
wait(bool nohang
= true);
96 libtest::vchar_t
stdout_result() const
98 return _stdout_buffer
;
101 size_t stdout_result_length() const
103 return _stdout_buffer
.size();
106 libtest::vchar_t
stderr_result() const
108 return _stderr_buffer
;
111 const char* stderr_c_str() const
113 return &_stderr_buffer
[0];
116 size_t stderr_result_length() const
118 return _stderr_buffer
.size();
123 void use_valgrind(bool arg
= true)
133 void use_gdb(bool arg
= true)
138 void use_ptrcheck(bool arg
= true)
143 std::string
arguments();
145 std::string
gdb_filename()
147 return _gdb_filename
;
161 void create_argv(const char *args
[]);
165 const bool _use_libtool
;
171 std::string _exectuble_name
;
172 std::string _exectuble
;
173 std::string _exectuble_with_path
;
174 std::string _gdb_filename
;
181 libtest::vchar_t _stdout_buffer
;
182 libtest::vchar_t _stderr_buffer
;
185 static inline std::ostream
& operator<<(std::ostream
& output
, const enum Application::error_t
&arg
)
189 case Application::SUCCESS
:
190 output
<< "EXIT_SUCCESS";
193 case Application::FAILURE
:
194 output
<< "EXIT_FAILURE";
197 case Application::INVALID
:
202 output
<< "EXIT_UNKNOWN";
208 int exec_cmdline(const std::string
& executable
, const char *args
[], bool use_libtool
= false);
210 const char *gearmand_binary();
211 const char *drizzled_binary();