123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173 |
- /**
- * Licensed to the Apache Software Foundation (ASF) under one
- * or more contributor license agreements. See the NOTICE file
- * distributed with this work for additional information
- * regarding copyright ownership. The ASF licenses this file
- * to you under the Apache License, Version 2.0 (the
- * "License"); you may not use this file except in compliance
- * with the License. You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- */
- #include <string>
- #include <cppunit/TestRunner.h>
- #include <cppunit/CompilerOutputter.h>
- #include <cppunit/TestResult.h>
- #include <cppunit/TestResultCollector.h>
- #include <cppunit/TextTestProgressListener.h>
- #include <cppunit/BriefTestProgressListener.h>
- #include <cppunit/extensions/TestFactoryRegistry.h>
- #include <signal.h>
- #include <stdlib.h>
- #include <stdexcept>
- #include <unistd.h>
- #include <sys/select.h>
- #include <cppunit/Exception.h>
- #include <cppunit/TestFailure.h>
- #include <cppunit/XmlOutputter.h>
- #include <cppunit/TestAssert.h>
- #include <fstream>
- #include <time.h>
- #include "Util.h"
- #include "zookeeper_log.h"
- using namespace std;
- CPPUNIT_NS_BEGIN
- class EclipseOutputter: public CompilerOutputter
- {
- public:
- EclipseOutputter(TestResultCollector *result,ostream &stream):
- CompilerOutputter(result,stream,"%p:%l: "),stream_(stream)
- {
- }
- virtual void printFailedTestName( TestFailure *failure ){}
- virtual void printFailureMessage( TestFailure *failure )
- {
- stream_<<": ";
- Message msg = failure->thrownException()->message();
- stream_<< msg.shortDescription();
- string text;
- for(int i=0; i<msg.detailCount();i++){
- text+=msg.detailAt(i);
- if(i+1!=msg.detailCount())
- text+=", ";
- }
- if(text.length()!=0)
- stream_ <<" ["<<text<<"]";
- stream_<<"\n";
- }
- ostream& stream_;
- };
- CPPUNIT_NS_END
- class TimingListener : public CPPUNIT_NS::BriefTestProgressListener {
- public:
- void startTest( CPPUNIT_NS::Test *test )
- {
- gettimeofday(&_start_time, NULL);
- CPPUNIT_NS::BriefTestProgressListener::startTest(test);
- }
-
- void endTest( CPPUNIT_NS::Test *test )
- {
- struct timeval end;
- gettimeofday(&end, NULL);
- long seconds = end.tv_sec - _start_time.tv_sec;
- long useconds = end.tv_usec - _start_time.tv_usec;
- long mtime = seconds * 1000 + useconds/1000.0;
- CPPUNIT_NS::stdCOut() << " : elapsed " << mtime;
- CPPUNIT_NS::BriefTestProgressListener::endTest(test);
- }
- private:
- struct timeval _start_time;
- };
- class ZKServer {
- public:
- ZKServer() {
- char cmd[1024];
- sprintf(cmd, "%s startClean %s", ZKSERVER_CMD, "127.0.0.1:22181");
- CPPUNIT_ASSERT(system(cmd) == 0);
- struct sigaction act;
- act.sa_handler = SIG_IGN;
- sigemptyset(&act.sa_mask);
- act.sa_flags = 0;
- CPPUNIT_ASSERT(sigaction(SIGPIPE, &act, NULL) == 0);
- }
- virtual ~ZKServer(){
- char cmd[1024];
- sprintf(cmd, "%s stop %s", ZKSERVER_CMD, "127.0.0.1:22181");
- CPPUNIT_ASSERT(system(cmd) == 0);
- }
- };
- int main( int argc, char* argv[] ) {
- // if command line contains "-ide" then this is the post build check
- // => the output must be in the compiler error format.
- //bool selfTest = (argc > 1) && (std::string("-ide") == argv[1]);
- globalTestConfig.addConfigFromCmdLine(argc,argv);
- ZKServer zkserver;
- // Create the event manager and test controller
- CPPUNIT_NS::TestResult controller;
- // Add a listener that colllects test result
- CPPUNIT_NS::TestResultCollector result;
- controller.addListener( &result );
-
- // A listener that print dots as tests run.
- // CPPUNIT_NS::TextTestProgressListener progress;
- // CPPUNIT_NS::BriefTestProgressListener progress;
- // brief + elapsed time
- TimingListener progress;
- controller.addListener( &progress );
-
- CPPUNIT_NS::TestRunner runner;
- runner.addTest( CPPUNIT_NS::TestFactoryRegistry::getRegistry().makeTest() );
-
- try {
- CPPUNIT_NS::stdCOut() << endl << "Running " << endl;
- zoo_set_debug_level(ZOO_LOG_LEVEL_INFO);
- //zoo_set_debug_level(ZOO_LOG_LEVEL_DEBUG);
- runner.run( controller, globalTestConfig.getTestName());
- // Print test in a compiler compatible format.
- CPPUNIT_NS::EclipseOutputter outputter( &result,cout);
- outputter.write();
- // Uncomment this for XML output
- #ifdef ENABLE_XML_OUTPUT
- std::ofstream file( "tests.xml" );
- CPPUNIT_NS::XmlOutputter xml( &result, file );
- xml.setStyleSheet( "report.xsl" );
- xml.write();
- file.close();
- #endif
- } catch ( std::invalid_argument &e ) {
- // Test path not resolved
- cout<<"\nERROR: "<<e.what()<<endl;
- return 0;
- }
- return result.wasSuccessful() ? 0 : 1;
- }
|