added more tests to increase test coverage
[senf.git] / 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.test 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 "../../../Utils/String.hh"
33
34 #include "../../../Utils/auto_unit_test.hh"
35 #include <boost/test/test_tools.hpp>
36
37 #define prefix_
38 ///////////////////////////////cc.p////////////////////////////////////////
39
40 BOOST_AUTO_UNIT_TEST(macAddress)
41 {
42     using senf::MACAddress;
43     using senf::AddressSyntaxException;
44
45     std::string test ("A1-b2-C3:d4:E5:f6");
46     MACAddress mac (MACAddress::from_string(test));
47
48     BOOST_CHECK_EQUAL( mac[0], 0xA1u );
49     BOOST_CHECK_EQUAL( mac[1], 0xB2u );
50     BOOST_CHECK_EQUAL( mac[2], 0xC3u );
51     BOOST_CHECK_EQUAL( mac[3], 0xD4u );
52     BOOST_CHECK_EQUAL( mac[4], 0xE5u );
53     BOOST_CHECK_EQUAL( mac[5], 0xF6u );
54
55     {
56         std::stringstream str;
57         str >> mac;
58         BOOST_CHECK( str.fail());
59     }
60     {
61         std::stringstream str ( "invalid_mac_address");
62         str >> mac;
63         BOOST_CHECK( str.fail());
64     }
65     {
66         std::stringstream str;
67         str << mac;
68         BOOST_CHECK_EQUAL( str.str(), "a1:b2:c3:d4:e5:f6" );
69         str >> mac;
70         BOOST_CHECK( ! str.fail());
71     }
72     
73     BOOST_CHECK_EQUAL(mac, MACAddress::from_string(test));
74     BOOST_CHECK( ! mac.local() );
75     BOOST_CHECK( mac.multicast() );
76     BOOST_CHECK( ! mac.broadcast() );
77     BOOST_CHECK( mac );
78     BOOST_CHECK_EQUAL( mac.oui(), 0xa1b2c3u );
79     BOOST_CHECK_EQUAL( mac.nic(), 0xd4e5f6u );
80     BOOST_CHECK_EQUAL( mac.eui64(), 0xa1b2c3fffed4e5f6llu );
81
82     MACAddress mac2;
83     BOOST_CHECK( ! mac2 );
84     mac2 = MACAddress::from_string("ff:ff:ff:ff:ff:ff");
85     BOOST_CHECK( mac2.broadcast() );
86     BOOST_CHECK_EQUAL( mac2, MACAddress::Broadcast );
87     char data[] = { 0x01,0x02,0x03,0x04,0x05,0x06 };
88     mac2 = MACAddress::from_data(data);
89     BOOST_CHECK_EQUAL( senf::str(mac2), "01:02:03:04:05:06" );
90     BOOST_CHECK( mac != mac2 );
91     mac2 = mac;
92     BOOST_CHECK( mac == mac2 );
93     BOOST_CHECK_EQUAL( senf::str(mac2), "a1:b2:c3:d4:e5:f6" );
94
95     BOOST_CHECK_THROW( MACAddress::from_string("1:2:3:4:5:6"), AddressSyntaxException );
96     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05"), AddressSyntaxException );
97     // test all invalid ascii ranges
98     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:z6"), AddressSyntaxException );
99     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:/6"), AddressSyntaxException );
100     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:@6"), AddressSyntaxException );
101     BOOST_CHECK_THROW( MACAddress::from_string("01:02:03:04:05:[6"), AddressSyntaxException );
102
103     BOOST_CHECK_EQUAL( mac, MACAddress::from_eui64(0xa1b2c3fffed4e5f6llu) );
104     BOOST_CHECK_THROW( MACAddress::from_eui64(0u), AddressSyntaxException );
105
106     BOOST_CHECK_EQUAL( MACAddress(0x1a2b3c4d5e6fULL).uint64(), 0x1a2b3c4d5e6fULL);
107 }
108
109 ///////////////////////////////cc.e////////////////////////////////////////
110 #undef prefix_
111
112
113 // Local Variables:
114 // mode: c++
115 // fill-column: 100
116 // comment-column: 40
117 // c-file-style: "senf"
118 // indent-tabs-mode: nil
119 // ispell-local-dictionary: "american"
120 // compile-command: "scons -u test"
121 // End: