Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 1 | /* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */ |
| 2 | /** |
Alexander Afanasyev | 9bcbc7c | 2014-04-06 19:37:37 -0700 | [diff] [blame] | 3 | * 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 Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 24 | |
Alexander Afanasyev | 613e2a9 | 2014-04-15 13:36:58 -0700 | [diff] [blame] | 25 | #include "core/ethernet.hpp" |
Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 26 | #include "tests/test-common.hpp" |
| 27 | |
| 28 | namespace nfd { |
| 29 | namespace tests { |
| 30 | |
| 31 | BOOST_FIXTURE_TEST_SUITE(FaceEthernetAddress, BaseFixture) |
| 32 | |
| 33 | BOOST_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 | |
| 40 | BOOST_AUTO_TEST_CASE(ToString) |
| 41 | { |
Davide Pesavento | edae353 | 2014-04-09 03:07:11 +0200 | [diff] [blame] | 42 | BOOST_CHECK_EQUAL(ethernet::Address().toString('-'), |
Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 43 | "00-00-00-00-00-00"); |
Davide Pesavento | edae353 | 2014-04-09 03:07:11 +0200 | [diff] [blame] | 44 | BOOST_CHECK_EQUAL(ethernet::getBroadcastAddress().toString(), |
Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 45 | "ff:ff:ff:ff:ff:ff"); |
Davide Pesavento | edae353 | 2014-04-09 03:07:11 +0200 | [diff] [blame] | 46 | BOOST_CHECK_EQUAL(ethernet::Address(0x01, 0x23, 0x45, 0x67, 0x89, 0xAB).toString('-'), |
Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 47 | "01-23-45-67-89-ab"); |
Davide Pesavento | edae353 | 2014-04-09 03:07:11 +0200 | [diff] [blame] | 48 | BOOST_CHECK_EQUAL(ethernet::Address(0x01, 0x23, 0x45, 0x67, 0x89, 0xAB).toString(), |
Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 49 | "01:23:45:67:89:ab"); |
| 50 | } |
| 51 | |
| 52 | BOOST_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 Pesavento | 1bdef28 | 2014-04-08 20:59:50 +0200 | [diff] [blame] | 60 | BOOST_CHECK_EQUAL(ethernet::Address::fromString("DE:AD:BE:EF:1:2"), |
| 61 | ethernet::Address(0xde, 0xad, 0xbe, 0xef, 0x01, 0x02)); |
Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 62 | |
| 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 Pesavento | 1bdef28 | 2014-04-08 20:59:50 +0200 | [diff] [blame] | 74 | BOOST_CHECK_EQUAL(ethernet::Address::fromString("01:23:45:67-89-ab"), |
| 75 | ethernet::Address()); |
Davide Pesavento | 56fb597 | 2014-03-12 06:18:37 +0100 | [diff] [blame] | 76 | 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 | |
| 86 | BOOST_AUTO_TEST_SUITE_END() |
| 87 | |
| 88 | } // namespace tests |
| 89 | } // namespace nfd |