blob: 157f574c2c2559661ac2b18e1bc98475232c1204 [file] [log] [blame]
Davide Pesavento56fb5972014-03-12 06:18:37 +01001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
2/**
Alexander Afanasyev9bcbc7c2014-04-06 19:37:37 -07003 * Copyright (c) 2014 Regents of the University of California,
4 * Arizona Board of Regents,
5 * Colorado State University,
6 * University Pierre & Marie Curie, Sorbonne University,
7 * Washington University in St. Louis,
8 * Beijing Institute of Technology
9 *
10 * This file is part of NFD (Named Data Networking Forwarding Daemon).
11 * See AUTHORS.md for complete list of NFD authors and contributors.
12 *
13 * NFD is free software: you can redistribute it and/or modify it under the terms
14 * of the GNU General Public License as published by the Free Software Foundation,
15 * either version 3 of the License, or (at your option) any later version.
16 *
17 * NFD is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
18 * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
19 * PURPOSE. See the GNU General Public License for more details.
20 *
21 * You should have received a copy of the GNU General Public License along with
22 * NFD, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
23 **/
Davide Pesavento56fb5972014-03-12 06:18:37 +010024
Alexander Afanasyev613e2a92014-04-15 13:36:58 -070025#include "core/ethernet.hpp"
Davide Pesavento56fb5972014-03-12 06:18:37 +010026#include "tests/test-common.hpp"
27
28namespace nfd {
29namespace tests {
30
31BOOST_FIXTURE_TEST_SUITE(FaceEthernetAddress, BaseFixture)
32
33BOOST_AUTO_TEST_CASE(Checks)
34{
35 BOOST_CHECK(ethernet::Address().isNull());
36 BOOST_CHECK(ethernet::getBroadcastAddress().isBroadcast());
37 BOOST_CHECK(ethernet::getDefaultMulticastAddress().isMulticast());
38}
39
40BOOST_AUTO_TEST_CASE(ToString)
41{
Davide Pesaventoedae3532014-04-09 03:07:11 +020042 BOOST_CHECK_EQUAL(ethernet::Address().toString('-'),
Davide Pesavento56fb5972014-03-12 06:18:37 +010043 "00-00-00-00-00-00");
Davide Pesaventoedae3532014-04-09 03:07:11 +020044 BOOST_CHECK_EQUAL(ethernet::getBroadcastAddress().toString(),
Davide Pesavento56fb5972014-03-12 06:18:37 +010045 "ff:ff:ff:ff:ff:ff");
Davide Pesaventoedae3532014-04-09 03:07:11 +020046 BOOST_CHECK_EQUAL(ethernet::Address(0x01, 0x23, 0x45, 0x67, 0x89, 0xAB).toString('-'),
Davide Pesavento56fb5972014-03-12 06:18:37 +010047 "01-23-45-67-89-ab");
Davide Pesaventoedae3532014-04-09 03:07:11 +020048 BOOST_CHECK_EQUAL(ethernet::Address(0x01, 0x23, 0x45, 0x67, 0x89, 0xAB).toString(),
Davide Pesavento56fb5972014-03-12 06:18:37 +010049 "01:23:45:67:89:ab");
50}
51
52BOOST_AUTO_TEST_CASE(FromString)
53{
54 BOOST_CHECK_EQUAL(ethernet::Address::fromString("0:0:0:0:0:0"),
55 ethernet::Address());
56 BOOST_CHECK_EQUAL(ethernet::Address::fromString("ff-ff-ff-ff-ff-ff"),
57 ethernet::getBroadcastAddress());
58 BOOST_CHECK_EQUAL(ethernet::Address::fromString("de:ad:be:ef:1:2"),
59 ethernet::Address(0xde, 0xad, 0xbe, 0xef, 0x01, 0x02));
Davide Pesavento1bdef282014-04-08 20:59:50 +020060 BOOST_CHECK_EQUAL(ethernet::Address::fromString("DE:AD:BE:EF:1:2"),
61 ethernet::Address(0xde, 0xad, 0xbe, 0xef, 0x01, 0x02));
Davide Pesavento56fb5972014-03-12 06:18:37 +010062
63 // malformed inputs
64 BOOST_CHECK_EQUAL(ethernet::Address::fromString("01.23.45.67.89.ab"),
65 ethernet::Address());
66 BOOST_CHECK_EQUAL(ethernet::Address::fromString("01:23:45 :67:89:ab"),
67 ethernet::Address());
68 BOOST_CHECK_EQUAL(ethernet::Address::fromString("01:23:45:67:89::1"),
69 ethernet::Address());
70 BOOST_CHECK_EQUAL(ethernet::Address::fromString("01-23-45-67-89"),
71 ethernet::Address());
72 BOOST_CHECK_EQUAL(ethernet::Address::fromString("01:23:45:67:89:ab:cd"),
73 ethernet::Address());
Davide Pesavento1bdef282014-04-08 20:59:50 +020074 BOOST_CHECK_EQUAL(ethernet::Address::fromString("01:23:45:67-89-ab"),
75 ethernet::Address());
Davide Pesavento56fb5972014-03-12 06:18:37 +010076 BOOST_CHECK_EQUAL(ethernet::Address::fromString("qw-er-ty-12-34-56"),
77 ethernet::Address());
78 BOOST_CHECK_EQUAL(ethernet::Address::fromString("this-is-not-an-ethernet-address"),
79 ethernet::Address());
80 BOOST_CHECK_EQUAL(ethernet::Address::fromString("foobar"),
81 ethernet::Address());
82 BOOST_CHECK_EQUAL(ethernet::Address::fromString(""),
83 ethernet::Address());
84}
85
86BOOST_AUTO_TEST_SUITE_END()
87
88} // namespace tests
89} // namespace nfd