NEW FILE HEADER / COPYRIGHT FORMAT
[senf.git] / Utils / Daemon / Daemon.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2007 
4 // Fraunhofer Institute for Open Communication Systems (FOKUS) 
5 // Competence Center NETwork research (NET), St. Augustin, GERMANY 
6 //     Stefan Bund <g0dil@berlios.de>
7 //
8 // This program is free software; you can redistribute it and/or modify
9 // it under the terms of the GNU General Public License as published by
10 // the Free Software Foundation; either version 2 of the License, or
11 // (at your option) any later version.
12 //
13 // This program is distributed in the hope that it will be useful,
14 // but WITHOUT ANY WARRANTY; without even the implied warranty of
15 // MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
16 // GNU General Public License for more details.
17 //
18 // You should have received a copy of the GNU General Public License
19 // along with this program; if not, write to the
20 // Free Software Foundation, Inc.,
21 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
22
23 /** \file
24     \brief Daemon.test unit tests */
25
26 //#include "Daemon.test.hh"
27 //#include "Daemon.test.ih"
28
29 // Custom includes
30 #include <unistd.h>
31 #include <sys/types.h>
32 #include <sys/wait.h>
33 #include <iostream>
34 #include <fstream>
35 #include <boost/filesystem/operations.hpp>
36 #include "Daemon.hh"
37 #include "../Utils/Exception.hh"
38
39 #include "../Utils/auto_unit_test.hh"
40 #include <boost/test/test_tools.hpp>
41
42 #define prefix_
43 ///////////////////////////////cc.p////////////////////////////////////////
44
45 namespace {
46
47     void delay(unsigned long milliseconds)
48     {
49         struct timespec ts;
50         ts.tv_sec = milliseconds / 1000;
51         ts.tv_nsec = (milliseconds % 1000) * 1000000;
52         while (nanosleep(&ts,&ts) < 0 && errno == EINTR) ;
53     }
54
55     class MyDaemon : public senf::Daemon
56     {
57         void configure() { 
58             std::cout << "Running configure()" << std::endl; 
59             pidFile("invalid.pid");
60             consoleLog("invalid.log");
61             senf::Daemon::configure();
62         }
63
64         void init() { 
65             std::cout << "Running init()" << std::endl; 
66         }
67
68         void run() {
69             std::cout << "Running run()" << std::endl; 
70             delay(1500);
71         }
72     };
73
74     int myMain(int argc, char const ** argv)
75     {
76         MyDaemon instance;
77         return instance.start(argc, argv);
78     }
79
80     int run(int argc, char const ** argv)
81     {
82         int pid (::fork());
83         if (pid < 0) senf::throwErrno("::fork()");
84         if (pid == 0) {
85             ::_exit(myMain(argc, argv));
86         }
87         int status;
88         if (::waitpid(pid, &status, 0) < 0) senf::throwErrno("::waitpid()");
89         return WIFEXITED(status) ? WEXITSTATUS(status) : -1;
90     }
91
92 }
93
94 BOOST_AUTO_UNIT_TEST(testDaemon)
95 {
96     char const * args[] = { "run", 
97                             "--console-log=testDaemon.log,none", 
98                             "--pid-file=testDaemon.pid" };
99     BOOST_CHECK_EQUAL( run(sizeof(args)/sizeof(*args),args), 0 );
100
101     BOOST_CHECK( ! boost::filesystem::exists("invalid.log") );
102     BOOST_CHECK( ! boost::filesystem::exists("invalid.pid") );
103     BOOST_CHECK( boost::filesystem::exists("testDaemon.pid") );
104     delay(1000);
105     BOOST_CHECK( ! boost::filesystem::exists("testDaemon.pid") );
106     BOOST_REQUIRE( boost::filesystem::exists("testDaemon.log") );
107     
108     std::ifstream log ("testDaemon.log");
109     std::stringstream data;
110     data << log.rdbuf();
111     BOOST_CHECK_EQUAL( data.str(), "Running init()\nRunning run()\n" );
112     BOOST_CHECK_NO_THROW( boost::filesystem::remove("testDaemon.log") );
113 }
114
115 ///////////////////////////////cc.e////////////////////////////////////////
116 #undef prefix_
117
118 \f
119 // Local Variables:
120 // mode: c++
121 // fill-column: 100
122 // comment-column: 40
123 // c-file-style: "senf"
124 // indent-tabs-mode: nil
125 // ispell-local-dictionary: "american"
126 // compile-command: "scons -u test"
127 // End: