e4969358af8f54d5df25b964fa2dcbf491454b34
[senf.git] / senf / Utils / Logger / SyslogUDPTarget.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2008
4 // Fraunhofer Institute for Open Communication Systems (FOKUS)
5 //
6 // The contents of this file are subject to the Fraunhofer FOKUS Public License
7 // Version 1.0 (the "License"); you may not use this file except in compliance
8 // with the License. You may obtain a copy of the License at 
9 // http://senf.berlios.de/license.html
10 //
11 // The Fraunhofer FOKUS Public License Version 1.0 is based on, 
12 // but modifies the Mozilla Public License Version 1.1.
13 // See the full license text for the amendments.
14 //
15 // Software distributed under the License is distributed on an "AS IS" basis, 
16 // WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License 
17 // for the specific language governing rights and limitations under the License.
18 //
19 // The Original Code is Fraunhofer FOKUS code.
20 //
21 // The Initial Developer of the Original Code is Fraunhofer-Gesellschaft e.V. 
22 // (registered association), Hansastraße 27 c, 80686 Munich, Germany.
23 // All Rights Reserved.
24 //
25 // Contributor(s):
26 //   Stefan Bund <g0dil@berlios.de>
27
28 /** \file
29     \brief SyslogUDPTarget unit tests */
30
31 //#include "SyslogUDPTarget.test.hh"
32 //#include "SyslogUDPTarget.test.ih"
33
34 // Custom includes
35 #include "SyslogUDPTarget.hh"
36 #include <senf/Socket/Protocols/INet/UDPSocketHandle.hh>
37 #include <boost/format.hpp>
38 #include "boost/date_time/gregorian/gregorian.hpp"
39 #include "Logger.hh"
40
41 #include <senf/Utils/auto_unit_test.hh>
42 #include <boost/test/test_tools.hpp>
43
44 #define prefix_
45 //-/////////////////////////////////////////////////////////////////////////////////////////////////
46
47 namespace {
48
49     int base_pid = 0;
50
51     unsigned port(unsigned i)
52     {
53         if (! base_pid)
54             base_pid = ::getpid();
55         return 23456u + (((base_pid^(base_pid>>8)^(base_pid>>16)^(base_pid>>24))&0xff)<<2) + i;
56     }
57
58     std::string localhost4str(unsigned i)
59     {
60         return (boost::format("localhost:%d") % port(i)).str();
61     }
62
63     std::string localhost6str(unsigned i)
64     {
65         return (boost::format("[::1]:%d") % port(i)).str();
66     }
67
68 }
69
70 SENF_AUTO_UNIT_TEST(syslogUDPTarget)
71 {
72     using namespace boost::gregorian;
73
74     senf::log::SyslogUDPTarget udplog (
75         senf::INet4SocketAddress(senf::INet4Address::Loopback, port(0)));
76     senf::UDPv4ClientSocketHandle server (
77         senf::INet4SocketAddress(senf::INet4Address::Loopback, port(0)));
78
79     udplog.tag("");
80     udplog.showTime(false);
81     udplog.showLevel(false);
82     udplog.route();
83
84     SENF_LOG(("Test message"));
85     BOOST_CHECK_EQUAL( server.read(), "<13> Test message" );
86
87     SENF_LOG(("Test message\nLine 2"));
88     BOOST_CHECK_EQUAL( server.read(), "<13> Test message" );
89     BOOST_CHECK_EQUAL( server.read(), "<13> Line 2" );
90
91     udplog.timeFormat("%Y-%m-%d");
92     udplog.showTime();
93     SENF_LOG(("Very long message: " + std::string(896, 'x') ));
94
95     date d (day_clock::local_day());
96     BOOST_CHECK_EQUAL( server.read(), "<13> " + to_iso_extended_string(d) + " Very long message: " + std::string(896-5-10-19-1, 'x') );
97     BOOST_CHECK_EQUAL( server.read(), "<13> " + to_iso_extended_string(d) + " " + std::string(5+10+19+1, 'x'));
98 }
99
100 //-/////////////////////////////////////////////////////////////////////////////////////////////////
101 #undef prefix_
102
103 \f
104 // Local Variables:
105 // mode: c++
106 // fill-column: 100
107 // comment-column: 40
108 // c-file-style: "senf"
109 // indent-tabs-mode: nil
110 // ispell-local-dictionary: "american"
111 // compile-command: "scons -u test"
112 // End: