removed some useless spaces; not very important, I know :)
[senf.git] / Socket / Protocols / Raw / LLAddressing.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006
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 // Unit tests
24
25 //#include "LLAddressing.test.hh"
26 //#include "LLAddressing.test.ih"
27
28 // Custom includes
29 #include <boost/lexical_cast.hpp>
30 #include "LLAddressing.hh"
31
32 #include "../../../Utils/auto_unit_test.hh"
33 #include <boost/test/test_tools.hpp>
34
35 #define prefix_
36 ///////////////////////////////cc.p////////////////////////////////////////
37
38 BOOST_AUTO_UNIT_TEST(llAddress)
39 {
40     {
41         senf::LLSocketAddress a;
42
43         BOOST_CHECK_EQUAL( a.protocol(), 0u );
44         BOOST_CHECK_EQUAL( a.interface(), "" );
45         BOOST_CHECK_EQUAL( a.arptype(), 0u );
46         BOOST_CHECK_EQUAL( a.pkttype(), senf::LLSocketAddress::Undefined );
47         BOOST_CHECK( ! a.address() );
48
49         a.address(senf::MACAddress::from_string("05-10-1A-2f-25-30"));
50         BOOST_CHECK_EQUAL( boost::lexical_cast<std::string>(a.address()), "05:10:1a:2f:25:30" );
51         a.interface("lo");
52         BOOST_CHECK_EQUAL( a.interface(), "lo" );
53         a.protocol(123);
54         BOOST_CHECK_EQUAL( a.protocol(), 123u );
55     }
56
57     {
58         senf::LLSocketAddress a (
59             senf::MACAddress::from_string("11-12-13-14-15-16"), "lo");
60
61         BOOST_CHECK_EQUAL( a.protocol(), 0u );
62         BOOST_CHECK_EQUAL( a.interface(), "lo" );
63         BOOST_CHECK_EQUAL( a.arptype(), 0u );
64         BOOST_CHECK_EQUAL( a.pkttype(), senf::LLSocketAddress::Undefined );
65         BOOST_CHECK_EQUAL( boost::lexical_cast<std::string>(a.address()), "11:12:13:14:15:16" );
66     }
67
68     {
69         senf::LLSocketAddress a (123, "lo");
70
71         BOOST_CHECK_EQUAL( a.protocol(), 123u );
72         BOOST_CHECK_EQUAL( a.interface(), "lo" );
73         BOOST_CHECK_EQUAL( a.arptype(), 0u );
74         BOOST_CHECK_EQUAL( a.pkttype(), senf::LLSocketAddress::Undefined );
75         BOOST_CHECK( ! a.address() );
76     }
77 }
78
79 ///////////////////////////////cc.e////////////////////////////////////////
80 #undef prefix_
81
82 \f
83 // Local Variables:
84 // mode: c++
85 // fill-column: 100
86 // c-file-style: "senf"
87 // indent-tabs-mode: nil
88 // ispell-local-dictionary: "american"
89 // compile-command: "scons -u test"
90 // comment-column: 40
91 // End: