69e0ee10556c504a1ab44a7c329dc1105474b35d
[senf.git] / Socket / LLAddressing.test.cc
1 // $Id$
2 //
3 // Copyright (C) 2006 
4 // Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS)
5 // Kompetenzzentrum fuer Satelitenkommunikation (SatCom)
6 //     Stefan Bund <stefan.bund@fokus.fraunhofer.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 "LLAddressing.hh"
30
31 #include <boost/test/auto_unit_test.hpp>
32 #include <boost/test/test_tools.hpp>
33
34 #define prefix_
35 ///////////////////////////////cc.p////////////////////////////////////////
36
37 BOOST_AUTO_UNIT_TEST(llAddress)
38 {
39     { 
40         senf::LLSocketAddress a;
41
42         BOOST_CHECK_EQUAL( a.protocol(), 0u );
43         BOOST_CHECK_EQUAL( a.interface(), "" );
44         BOOST_CHECK_EQUAL( a.arptype(), 0u );
45         BOOST_CHECK_EQUAL( a.pkttype(), 0u );
46         BOOST_CHECK_EQUAL( a.address(), "" );
47
48         a.address(senf::llAddress("05-10-1A-2f-25-30"));
49         BOOST_CHECK_EQUAL( senf::llAddress(a.address()), "05-10-1a-2f-25-30" );
50         a.interface("lo");
51         BOOST_CHECK_EQUAL( a.interface(), "lo" );
52         a.protocol(123);
53         BOOST_CHECK_EQUAL( a.protocol(), 123u );
54     }
55     
56     {
57         senf::LLSocketAddress a (
58             senf::llAddress("11-12-13-14-15-16"), "lo");
59         
60         BOOST_CHECK_EQUAL( a.protocol(), 0u );
61         BOOST_CHECK_EQUAL( a.interface(), "lo" );
62         BOOST_CHECK_EQUAL( a.arptype(), 0u );
63         BOOST_CHECK_EQUAL( a.pkttype(), 0u );
64         BOOST_CHECK_EQUAL( senf::llAddress(a.address()), "11-12-13-14-15-16" );
65     }
66
67     {
68         senf::LLSocketAddress a (123, "lo");
69         
70         BOOST_CHECK_EQUAL( a.protocol(), 123u );
71         BOOST_CHECK_EQUAL( a.interface(), "lo" );
72         BOOST_CHECK_EQUAL( a.arptype(), 0u );
73         BOOST_CHECK_EQUAL( a.pkttype(), 0u );
74         BOOST_CHECK_EQUAL( senf::llAddress(a.address()), "" );
75     }
76 }
77
78 ///////////////////////////////cc.e////////////////////////////////////////
79 #undef prefix_
80
81 \f
82 // Local Variables:
83 // mode: c++
84 // c-file-style: "senf"
85 // End: