Fix include file.
[m6w6/libmemcached] / libtest / framework.cc
1 /* vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
2 *
3 * Data Differential YATL (i.e. libtest) library
4 *
5 * Copyright (C) 2012 Data Differential, http://datadifferential.com/
6 *
7 * Redistribution and use in source and binary forms, with or without
8 * modification, are permitted provided that the following conditions are
9 * met:
10 *
11 * * Redistributions of source code must retain the above copyright
12 * notice, this list of conditions and the following disclaimer.
13 *
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
17 * distribution.
18 *
19 * * The names of its contributors may not be used to endorse or
20 * promote products derived from this software without specific prior
21 * written permission.
22 *
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.
34 *
35 */
36
37 #include <config.h>
38
39 #include <libtest/common.h>
40 #include <libtest/collection.h>
41 #include <libtest/signal.h>
42
43 #include <fnmatch.h>
44 #include <iostream>
45
46 using namespace libtest;
47
48 Framework::Framework(libtest::SignalThread& signal,
49 const std::string& only_run_arg,
50 const std::string& wildcard_arg) :
51 collections(NULL),
52 _total(0),
53 _success(0),
54 _skipped(0),
55 _failed(0),
56 _create(NULL),
57 _destroy(NULL),
58 _runner(NULL),
59 _socket(false),
60 _creators_ptr(NULL),
61 _signal(signal),
62 _only_run(only_run_arg),
63 _wildcard(wildcard_arg)
64 {
65 get_world(this);
66
67 for (collection_st *next= collections; next and next->name; next++)
68 {
69 _collection.push_back(new Collection(this, next));
70 }
71 }
72
73 Framework::~Framework()
74 {
75 if (_destroy and _destroy(_creators_ptr))
76 {
77 Error << "Failure in _destroy(), some resources may not have been cleaned up.";
78 }
79
80 _servers.shutdown();
81
82 delete _runner;
83
84 for (std::vector<Collection*>::iterator iter= _collection.begin();
85 iter != _collection.end();
86 iter++)
87 {
88 delete *iter;
89 }
90 }
91
92 bool Framework::match(const char* arg)
93 {
94 if (_wildcard.empty() == false and fnmatch(_wildcard.c_str(), arg, 0))
95 {
96 return true;
97 }
98
99 return false;
100 }
101
102 void Framework::exec()
103 {
104 for (std::vector<Collection*>::iterator iter= _collection.begin();
105 iter != _collection.end() and (_signal.is_shutdown() == false);
106 iter++)
107 {
108 if (_only_run.empty() == false and
109 fnmatch(_only_run.c_str(), (*iter)->name(), 0))
110 {
111 continue;
112 }
113
114 _total++;
115
116 try {
117 switch ((*iter)->exec())
118 {
119 case TEST_FAILURE:
120 _failed++;
121 break;
122
123 case TEST_SKIPPED:
124 _skipped++;
125 break;
126
127 // exec() can return SUCCESS, but that doesn't mean that some tests did
128 // not fail or get skipped.
129 case TEST_SUCCESS:
130 _success++;
131 break;
132 }
133 }
134 catch (libtest::fatal& e)
135 {
136 stream::cerr(e.file(), e.line(), e.func()) << e.mesg();
137 }
138 catch (libtest::disconnected& e)
139 {
140 Error << "Unhandled disconnection occurred:" << e.what();
141 throw;
142 }
143
144 Outn();
145 }
146 }
147
148 uint32_t Framework::sum_total()
149 {
150 uint32_t count= 0;
151 for (std::vector<Collection*>::iterator iter= _collection.begin();
152 iter != _collection.end();
153 iter++)
154 {
155 count+= (*iter)->total();
156 }
157
158 return count;
159 }
160
161 uint32_t Framework::sum_success()
162 {
163 uint32_t count= 0;
164 for (std::vector<Collection*>::iterator iter= _collection.begin();
165 iter != _collection.end();
166 iter++)
167 {
168 count+= (*iter)->success();
169 }
170
171 return count;
172 }
173
174 uint32_t Framework::sum_skipped()
175 {
176 uint32_t count= 0;
177 for (std::vector<Collection*>::iterator iter= _collection.begin();
178 iter != _collection.end();
179 iter++)
180 {
181 count+= (*iter)->skipped();
182 }
183
184 return count;
185 }
186
187 uint32_t Framework::sum_failed()
188 {
189 uint32_t count= 0;
190 for (std::vector<Collection*>::iterator iter= _collection.begin();
191 iter != _collection.end();
192 iter++)
193 {
194 count+= (*iter)->failed();
195 }
196
197 return count;
198 }
199
200 libtest::Runner *Framework::runner()
201 {
202 if (_runner == NULL)
203 {
204 _runner= new Runner;
205 }
206 _runner->set_servers(_servers);
207
208 return _runner;
209 }
210
211 test_return_t Framework::create()
212 {
213 test_return_t rc= TEST_SUCCESS;
214 if (_create)
215 {
216 _creators_ptr= _create(_servers, rc);
217 }
218
219 return rc;
220 }