94d9c8bd0919590bc925c8d4092159b69a5746c5
[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 }
59
60 SENF_AUTO_UNIT_TEST(syslogUDPTarget)
61 {
62     using namespace boost::gregorian;
63
64     senf::log::SyslogUDPTarget udplog (
65         senf::INet4SocketAddress(senf::INet4Address::Loopback, port(0)));
66     senf::UDPv4ClientSocketHandle server (
67         senf::INet4SocketAddress(senf::INet4Address::Loopback, port(0)));
68
69     udplog.tag("");
70     udplog.showTime(false);
71     udplog.showLevel(false);
72     udplog.route();
73
74     SENF_LOG(("Test message"));
75     BOOST_CHECK_EQUAL( server.read(), "<13> Test message" );
76
77     SENF_LOG(("Test message\nLine 2"));
78     BOOST_CHECK_EQUAL( server.read(), "<13> Test message" );
79     BOOST_CHECK_EQUAL( server.read(), "<13> Line 2" );
80
81     udplog.timeFormat("%Y-%m-%d");
82     udplog.showTime();
83     SENF_LOG(("Very long message: " + std::string(896, 'x') ));
84
85     date d (day_clock::local_day());
86     BOOST_CHECK_EQUAL( server.read(), "<13> " + to_iso_extended_string(d) + " Very long message: " + std::string(896-5-10-19-1, 'x') );
87     BOOST_CHECK_EQUAL( server.read(), "<13> " + to_iso_extended_string(d) + " " + std::string(5+10+19+1, 'x'));
88 }
89
90 //-/////////////////////////////////////////////////////////////////////////////////////////////////
91 #undef prefix_
92
93 \f
94 // Local Variables:
95 // mode: c++
96 // fill-column: 100
97 // comment-column: 40
98 // c-file-style: "senf"
99 // indent-tabs-mode: nil
100 // ispell-local-dictionary: "american"
101 // compile-command: "scons -u test"
102 // End: