Fix documentation build under maverick (doxygen 1.7.1)
[senf.git] / senf / Socket / Protocols / Raw / MACAddress.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 MACAddress unit tests */
25
26 //#include "MACAddress.test.hh"
27 //#include "MACAddress.test.ih"
28
29 // Custom includes
30 #include <sstream>
31 #include "MACAddress.hh"
32 #include <senf/Utils/String.hh>
33 #include "EUI64.hh"
34 #include <senf/Socket/Protocols/AddressExceptions.hh>
35
36 #include <senf/Utils/auto_unit_test.hh>
37 #include <boost/test/test_tools.hpp>
38
39 #define prefix_
40 //-/////////////////////////////////////////////////////////////////////////////////////////////////
41
42 SENF_AUTO_UNIT_TEST(macAddress)
43 {
44     using senf::MACAddress;
45     using senf::AddressSyntaxException;
46
47     std::string test ("A1-b2-C3:d4:E5:f6");
48     MACAddress mac (MACAddress::from_string(test));
49
50     BOOST_CHECK_EQUAL( mac[0], 0xA1u );
51     BOOST_CHECK_EQUAL( mac[1], 0xB2u );
52     BOOST_CHECK_EQUAL( mac[2], 0xC3u );
53     BOOST_CHECK_EQUAL( mac[3], 0xD4u );
54     BOOST_CHECK_EQUAL( mac[4], 0xE5u );
55     BOOST_CHECK_EQUAL( mac[5], 0xF6u );
56
57     {
58         std::stringstream str;
59         str >> mac;
60         BOOST_CHECK( str.fail());
61     }
62     {
63         std::stringstream str ( "invalid_mac_address");
64         str >> mac;
65         BOOST_CHECK( str.fail() );
66     }
67     {
68         std::stringstream str;
69         str << mac;
70         BOOST_CHECK_EQUAL( str.str(), "a1:b2:c3:d4:e5:f6" );
71         str >> mac;
72         BOOST_CHECK( ! str.fail() );
73     }
74
75     BOOST_CHECK_EQUAL(mac, MACAddress::from_string(test));
76     BOOST_CHECK( ! mac.local() );
77     BOOST_CHECK( mac.multicast() );
78     BOOST_CHECK( ! mac.broadcast() );
79     BOOST_CHECK( mac );
80     BOOST_CHECK_EQUAL( mac.oui(), 0xa1b2c3u );
81     BOOST_CHECK_EQUAL( mac.nic(), 0xd4e5f6u );
82     BOOST_CHECK_EQUAL( mac.eui64(), 0xa1b2c3fffed4e5f6llu );
83
84     MACAddress mac2;
85     BOOST_CHECK( ! mac2 );
86     mac2 = MACAddress::from_string("ff:ff:ff:ff:ff:ff");
87     BOOST_CHECK( mac2.broadcast() );
88     BOOST_CHECK_EQUAL( mac2, MACAddress::Broadcast );
89     char data[] = { 0x01,0x02,0x03,0x04,0x05,0x06 };
90     mac2 = MACAddress::from_data(data);
91     BOOST_CHECK_EQUAL( senf::str(mac2), "01:02:03:04:05:06" );
92     SENF_CHECK_NOT_EQUAL( mac, mac2 );
93     mac2 = mac;
94     BOOST_CHECK( mac == mac2 );
95     BOOST_CHECK_EQUAL( senf::str(mac2), "a1:b2:c3:d4:e5:f6" );
96
97     BOOST_CHECK_THROW( MACAddress::from_string("123:2:3:4:5:6"), AddressSyntaxException );
98     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05"), AddressSyntaxException );
99     // test all invalid ascii ranges
100     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:z6"), AddressSyntaxException );
101     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:/6"), AddressSyntaxException );
102     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:@6"), AddressSyntaxException );
103     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:[6"), AddressSyntaxException );
104
105     BOOST_CHECK_EQUAL( mac, MACAddress::from_eui64(senf::EUI64(0xa1b2c3fffed4e5f6llu)) );
106     BOOST_CHECK_THROW( MACAddress::from_eui64(senf::EUI64(0ull)),
107                        AddressSyntaxException );
108
109     BOOST_CHECK_EQUAL( MACAddress(0x1a2b3c4d5e6fULL).uint64(), 0x1a2b3c4d5e6fULL);
110
111     BOOST_CHECK_EQUAL( mac, senf::EUI64::from_mac(mac) );
112     BOOST_CHECK_EQUAL( senf::EUI64::from_mac(mac), mac );
113 }
114
115 //-/////////////////////////////////////////////////////////////////////////////////////////////////
116 #undef prefix_
117
118
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: