tlv: add LSDB dataset tlv abstractions
refs #2280
Change-Id: I2d0d238686e28d1c25a7821a47352fcd589df823
diff --git a/tests/tlv/test-lsa-info.cpp b/tests/tlv/test-lsa-info.cpp
new file mode 100644
index 0000000..dff4458
--- /dev/null
+++ b/tests/tlv/test-lsa-info.cpp
@@ -0,0 +1,130 @@
+/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
+/**
+ * Copyright (c) 2014-2015, The University of Memphis,
+ * Regents of the University of California,
+ * Arizona Board of Regents.
+ *
+ * This file is part of NLSR (Named-data Link State Routing).
+ * See AUTHORS.md for complete list of NLSR authors and contributors.
+ *
+ * NLSR is free software: you can redistribute it and/or modify it under the terms
+ * of the GNU General Public License as published by the Free Software Foundation,
+ * either version 3 of the License, or (at your option) any later version.
+ *
+ * NLSR is distributed in the hope that it will be useful, but WITHOUT ANY WARRANTY;
+ * without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR
+ * PURPOSE. See the GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License along with
+ * NLSR, e.g., in COPYING.md file. If not, see <http://www.gnu.org/licenses/>.
+ **/
+
+#include "tlv/lsa-info.hpp"
+
+#include "../boost-test.hpp"
+
+namespace nlsr {
+namespace tlv {
+namespace test {
+
+BOOST_AUTO_TEST_SUITE(TlvTestLsaInfo)
+
+const uint8_t LsaInfoData[] =
+{
+ // Header
+ 0x80, 0x21,
+ // OriginRouter
+ 0x81, 0x18, 0x07, 0x16, 0x08, 0x04, 0x74, 0x65, 0x73, 0x74, 0x08, 0x03, 0x6c, 0x73,
+ 0x61, 0x08, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x08, 0x03, 0x74, 0x6c, 0x76,
+ // SequenceNumber
+ 0x82, 0x01, 0x80,
+ // ExpirationPeriod
+ 0x8b, 0x02, 0x27, 0x10
+};
+
+const uint8_t LsaInfoDataInfiniteExpirationPeriod[] =
+{
+ // Header
+ 0x80, 0x1d,
+ // OriginRouter
+ 0x81, 0x18, 0x07, 0x16, 0x08, 0x04, 0x74, 0x65, 0x73, 0x74, 0x08, 0x03, 0x6c, 0x73,
+ 0x61, 0x08, 0x04, 0x69, 0x6e, 0x66, 0x6f, 0x08, 0x03, 0x74, 0x6c, 0x76,
+ // SequenceNumber
+ 0x82, 0x1, 0x80
+};
+
+BOOST_AUTO_TEST_CASE(LsaInfoEncode)
+{
+ LsaInfo lsaInfo;
+ lsaInfo.setOriginRouter("/test/lsa/info/tlv");
+ lsaInfo.setSequenceNumber(128);
+ lsaInfo.setExpirationPeriod(ndn::time::milliseconds(10000));
+
+ const ndn::Block& wire = lsaInfo.wireEncode();
+
+ BOOST_REQUIRE_EQUAL_COLLECTIONS(LsaInfoData,
+ LsaInfoData + sizeof(LsaInfoData),
+ wire.begin(), wire.end());
+}
+
+BOOST_AUTO_TEST_CASE(LsaInfoDecode)
+{
+ LsaInfo lsaInfo;
+
+ lsaInfo.wireDecode(ndn::Block(LsaInfoData, sizeof(LsaInfoData)));
+
+ ndn::Name originRouter("/test/lsa/info/tlv");
+ BOOST_REQUIRE_EQUAL(lsaInfo.getOriginRouter(), originRouter);
+ BOOST_REQUIRE_EQUAL(lsaInfo.getSequenceNumber(), 128);
+ BOOST_REQUIRE_EQUAL(lsaInfo.getExpirationPeriod(), ndn::time::milliseconds(10000));
+ BOOST_REQUIRE_EQUAL(lsaInfo.hasInfiniteExpirationPeriod(), false);
+}
+
+BOOST_AUTO_TEST_CASE(LsaInfoInfiniteExpirationPeriodEncode)
+{
+ LsaInfo lsaInfo;
+ lsaInfo.setOriginRouter("/test/lsa/info/tlv");
+ lsaInfo.setSequenceNumber(128);
+ lsaInfo.setExpirationPeriod(LsaInfo::INFINITE_EXPIRATION_PERIOD);
+
+ const ndn::Block& wire = lsaInfo.wireEncode();
+
+ BOOST_REQUIRE_EQUAL_COLLECTIONS(LsaInfoDataInfiniteExpirationPeriod,
+ LsaInfoDataInfiniteExpirationPeriod +
+ sizeof(LsaInfoDataInfiniteExpirationPeriod),
+ wire.begin(), wire.end());
+}
+
+BOOST_AUTO_TEST_CASE(LsaInfoInfiniteExpirationPeriodDecode)
+{
+ LsaInfo lsaInfo;
+
+ lsaInfo.wireDecode(ndn::Block(LsaInfoDataInfiniteExpirationPeriod,
+ sizeof(LsaInfoDataInfiniteExpirationPeriod)));
+
+ ndn::Name originRouter("/test/lsa/info/tlv");
+ BOOST_REQUIRE_EQUAL(lsaInfo.getOriginRouter(), originRouter);
+ BOOST_REQUIRE_EQUAL(lsaInfo.getSequenceNumber(), 128);
+ BOOST_REQUIRE_EQUAL(lsaInfo.getExpirationPeriod(), LsaInfo::INFINITE_EXPIRATION_PERIOD);
+ BOOST_REQUIRE_EQUAL(lsaInfo.hasInfiniteExpirationPeriod(), true);
+}
+
+BOOST_AUTO_TEST_CASE(LsaInfoOutputStream)
+{
+ LsaInfo lsaInfo;
+ lsaInfo.setOriginRouter("/test/lsa/info/tlv");
+ lsaInfo.setSequenceNumber(128);
+ lsaInfo.setExpirationPeriod(ndn::time::milliseconds(10000));
+
+ std::ostringstream os;
+ os << lsaInfo;
+
+ BOOST_CHECK_EQUAL(os.str(), "LsaInfo(OriginRouter: /test/lsa/info/tlv, SequenceNumber: 128, "
+ "ExpirationPeriod: 10000 milliseconds)");
+}
+
+BOOST_AUTO_TEST_SUITE_END()
+
+} // namespace test
+} // namespace tlv
+} // namespace nlsr