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.
39 #include <libtest/signal.h>
42 Framework is the structure which is passed to the test implementation to be filled.
43 This must be implemented in order for the test framework to load the tests. We call
44 get_world() in order to fill this structure.
49 namespace { class Collection
; }
50 typedef std::vector
<libtest::Collection
*> Suites
;
58 test_return_t
create();
60 const std::string
& name() const
65 void create(test_callback_create_fn
* arg
)
70 void destroy(test_callback_destroy_fn
* arg
)
75 void collections(collection_st
* arg
);
77 void set_on_error(test_callback_error_fn
*arg
)
82 test_return_t
on_error(const enum test_return_t
, void *);
86 _servers
.set_socket();
89 void set_sasl(const std::string
& username_arg
, const std::string
& password_arg
)
91 _servers
.set_sasl(username_arg
, password_arg
);
94 libtest::server_startup_st
& servers()
99 void set_runner(libtest::Runner
*arg
)
104 libtest::Runner
*runner();
108 libtest::Collection
& collection();
110 virtual ~Framework();
112 Framework(libtest::SignalThread
&,
117 bool match(const char* arg
);
121 return _creators_ptr
;
124 libtest::SignalThread
& signal()
129 uint32_t sum_total();
130 uint32_t sum_success();
131 uint32_t sum_skipped();
132 uint32_t sum_failed();
136 return _collection
.size();
139 uint32_t total() const
144 uint32_t success() const
149 uint32_t skipped() const
154 uint32_t failed() const
165 Framework
& operator=(const Framework
&);
172 /* These methods are called outside of any collection call. */
173 test_callback_create_fn
*_create
;
174 test_callback_destroy_fn
*_destroy
;
177 If an error occurs during the test, this is called.
179 test_callback_error_fn
*_on_error
;
182 Runner represents the callers for the tests. If not implemented we will use
183 a set of default implementations.
185 libtest::Runner
*_runner
;
187 libtest::server_startup_st _servers
;
190 unsigned long int _servers_to_run
;
192 libtest::SignalThread
& _signal
;
193 std::string _only_run
;
194 std::string _wildcard
;
198 } // namespace libtest