X-Git-Url: https://git.m6w6.name/?a=blobdiff_plain;f=libtest%2Fframework.cc;h=b5ad738b2a88be1ff35ed91ab08e2c39d3f36376;hb=00a8f6f7d315dc3fce0b0e5a1987c8663488ae1c;hp=eb0f4120de3982eacdc485d3a5e487f37a7461bf;hpb=bce9a74e8addd1085b2e751508bf9ab0c2e84e45;p=awesomized%2Flibmemcached diff --git a/libtest/framework.cc b/libtest/framework.cc index eb0f4120..b5ad738b 100644 --- a/libtest/framework.cc +++ b/libtest/framework.cc @@ -43,28 +43,33 @@ #include #include -using namespace libtest; +namespace libtest { Framework::Framework(libtest::SignalThread& signal, + const std::string& name_, const std::string& only_run_arg, const std::string& wildcard_arg) : - collections(NULL), _total(0), _success(0), _skipped(0), _failed(0), _create(NULL), _destroy(NULL), + _on_error(NULL), _runner(NULL), _socket(false), _creators_ptr(NULL), _signal(signal), _only_run(only_run_arg), - _wildcard(wildcard_arg) + _wildcard(wildcard_arg), + _name(name_) { get_world(this); +} - for (collection_st *next= collections; next and next->name; next++) +void Framework::collections(collection_st* collections_) +{ + for (collection_st *next= collections_; next and next->name; next++) { _collection.push_back(new Collection(this, next)); } @@ -83,11 +88,10 @@ Framework::~Framework() for (std::vector::iterator iter= _collection.begin(); iter != _collection.end(); - iter++) + ++iter) { delete *iter; } - _collection.clear(); } bool Framework::match(const char* arg) @@ -104,7 +108,7 @@ void Framework::exec() { for (std::vector::iterator iter= _collection.begin(); iter != _collection.end() and (_signal.is_shutdown() == false); - iter++) + ++iter) { if (_only_run.empty() == false and fnmatch(_only_run.c_str(), (*iter)->name(), 0)) @@ -114,7 +118,8 @@ void Framework::exec() _total++; - try { + try + { switch ((*iter)->exec()) { case TEST_FAILURE: @@ -134,16 +139,23 @@ void Framework::exec() } catch (libtest::fatal& e) { + _failed++; stream::cerr(e.file(), e.line(), e.func()) << e.mesg(); } catch (libtest::disconnected& e) { - Error << "Unhandled disconnection occurred:" << e.what(); + _failed++; + stream::cerr(e.file(), e.line(), e.func()) << "Unhandled disconnection occurred: " << e.mesg(); + throw; + } + catch (...) + { + _failed++; throw; } - - Outn(); } + + void xml(const std::string& testsuites_name, std::ostream& output); } uint32_t Framework::sum_total() @@ -151,7 +163,7 @@ uint32_t Framework::sum_total() uint32_t count= 0; for (std::vector::iterator iter= _collection.begin(); iter != _collection.end(); - iter++) + ++iter) { count+= (*iter)->total(); } @@ -164,7 +176,7 @@ uint32_t Framework::sum_success() uint32_t count= 0; for (std::vector::iterator iter= _collection.begin(); iter != _collection.end(); - iter++) + ++iter) { count+= (*iter)->success(); } @@ -177,7 +189,7 @@ uint32_t Framework::sum_skipped() uint32_t count= 0; for (std::vector::iterator iter= _collection.begin(); iter != _collection.end(); - iter++) + ++iter) { count+= (*iter)->skipped(); } @@ -190,7 +202,7 @@ uint32_t Framework::sum_failed() uint32_t count= 0; for (std::vector::iterator iter= _collection.begin(); iter != _collection.end(); - iter++) + ++iter) { count+= (*iter)->failed(); } @@ -219,3 +231,5 @@ test_return_t Framework::create() return rc; } + +} // namespace libtest