327c2c0de4ae65b827ec8fe340d045826e546327
[awesomized/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 namespace libtest {
47
48 Framework::Framework(libtest::SignalThread& signal,
49 const std::string& name_,
50 const std::string& only_run_arg,
51 const std::string& wildcard_arg) :
52 _total(0),
53 _success(0),
54 _skipped(0),
55 _failed(0),
56 _create(NULL),
57 _destroy(NULL),
58 _on_error(NULL),
59 _runner(NULL),
60 _socket(false),
61 _creators_ptr(NULL),
62 _signal(signal),
63 _only_run(only_run_arg),
64 _wildcard(wildcard_arg),
65 _name(name_)
66 {
67 get_world(this);
68 }
69
70 void Framework::collections(collection_st* collections_)
71 {
72 for (collection_st *next= collections_; next and next->name; next++)
73 {
74 _collection.push_back(new Collection(this, next));
75 }
76 }
77
78 Framework::~Framework()
79 {
80 if (_destroy and _destroy(_creators_ptr))
81 {
82 Error << "Failure in _destroy(), some resources may not have been cleaned up.";
83 }
84
85 _servers.shutdown();
86
87 delete _runner;
88
89 for (std::vector<Collection*>::iterator iter= _collection.begin();
90 iter != _collection.end();
91 ++iter)
92 {
93 delete *iter;
94 }
95 }
96
97 bool Framework::match(const char* arg)
98 {
99 if (_wildcard.empty() == false and fnmatch(_wildcard.c_str(), arg, 0))
100 {
101 return true;
102 }
103
104 return false;
105 }
106
107 void Framework::exec()
108 {
109 for (std::vector<Collection*>::iterator iter= _collection.begin();
110 iter != _collection.end() and (_signal.is_shutdown() == false);
111 ++iter)
112 {
113 if (_only_run.empty() == false and
114 fnmatch(_only_run.c_str(), (*iter)->name(), 0))
115 {
116 continue;
117 }
118
119 _total++;
120
121 try {
122 switch ((*iter)->exec())
123 {
124 case TEST_FAILURE:
125 _failed++;
126 break;
127
128 case TEST_SKIPPED:
129 _skipped++;
130 break;
131
132 // exec() can return SUCCESS, but that doesn't mean that some tests did
133 // not fail or get skipped.
134 case TEST_SUCCESS:
135 _success++;
136 break;
137 }
138 }
139 catch (libtest::fatal& e)
140 {
141 _failed++;
142 stream::cerr(e.file(), e.line(), e.func()) << e.mesg();
143 }
144 catch (libtest::disconnected& e)
145 {
146 _failed++;
147 Error << "Unhandled disconnection occurred:" << e.what();
148 throw;
149 }
150 catch (...)
151 {
152 _failed++;
153 throw;
154 }
155 }
156
157 void xml(const std::string& testsuites_name, std::ostream& output);
158 }
159
160 uint32_t Framework::sum_total()
161 {
162 uint32_t count= 0;
163 for (std::vector<Collection*>::iterator iter= _collection.begin();
164 iter != _collection.end();
165 ++iter)
166 {
167 count+= (*iter)->total();
168 }
169
170 return count;
171 }
172
173 uint32_t Framework::sum_success()
174 {
175 uint32_t count= 0;
176 for (std::vector<Collection*>::iterator iter= _collection.begin();
177 iter != _collection.end();
178 ++iter)
179 {
180 count+= (*iter)->success();
181 }
182
183 return count;
184 }
185
186 uint32_t Framework::sum_skipped()
187 {
188 uint32_t count= 0;
189 for (std::vector<Collection*>::iterator iter= _collection.begin();
190 iter != _collection.end();
191 ++iter)
192 {
193 count+= (*iter)->skipped();
194 }
195
196 return count;
197 }
198
199 uint32_t Framework::sum_failed()
200 {
201 uint32_t count= 0;
202 for (std::vector<Collection*>::iterator iter= _collection.begin();
203 iter != _collection.end();
204 ++iter)
205 {
206 count+= (*iter)->failed();
207 }
208
209 return count;
210 }
211
212 libtest::Runner *Framework::runner()
213 {
214 if (_runner == NULL)
215 {
216 _runner= new Runner;
217 }
218 _runner->set_servers(_servers);
219
220 return _runner;
221 }
222
223 test_return_t Framework::create()
224 {
225 test_return_t rc= TEST_SUCCESS;
226 if (_create)
227 {
228 _creators_ptr= _create(_servers, rc);
229 }
230
231 return rc;
232 }
233
234 } // namespace libtest