blob: ff3e32a37031f98835e7c776127b63c181f2698f [file] [log] [blame]
Alexander Afanasyevc169a812014-05-20 20:37:29 -04001/* -*- Mode:C++; c-file-style:"gnu"; indent-tabs-mode:nil; -*- */
Davide Pesavento74daf742018-11-23 18:14:13 -05002/*
Davide Pesavento541a8222022-03-01 15:08:42 -05003 * Copyright (c) 2013-2022 Regents of the University of California.
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -07004 *
5 * This file is part of ndn-cxx library (NDN C++ library with eXperimental eXtensions).
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -07006 *
Alexander Afanasyevc169a812014-05-20 20:37:29 -04007 * ndn-cxx library is free software: you can redistribute it and/or modify it under the
8 * terms of the GNU Lesser General Public License as published by the Free Software
9 * Foundation, either version 3 of the License, or (at your option) any later version.
10 *
11 * ndn-cxx library is distributed in the hope that it will be useful, but WITHOUT ANY
12 * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A
13 * PARTICULAR PURPOSE. See the GNU Lesser General Public License for more details.
14 *
15 * You should have received copies of the GNU General Public License and GNU Lesser
16 * General Public License along with ndn-cxx, e.g., in COPYING.md file. If not, see
17 * <http://www.gnu.org/licenses/>.
18 *
19 * See AUTHORS.md for complete list of ndn-cxx authors and contributors.
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070020 */
21
Davide Pesavento7e780642018-11-24 15:51:34 -050022#include "ndn-cxx/version.hpp"
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070023
Davide Pesavento7e780642018-11-24 15:51:34 -050024#include "tests/boost-test.hpp"
Davide Pesaventoeee3e822016-11-26 19:19:34 +010025
Davide Pesavento541a8222022-03-01 15:08:42 -050026#include <cstdio>
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070027
28namespace ndn {
29namespace tests {
30
31BOOST_AUTO_TEST_SUITE(TestVersion)
32
Davide Pesaventoeee3e822016-11-26 19:19:34 +010033BOOST_AUTO_TEST_CASE(VersionNumber)
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070034{
Davide Pesavento541a8222022-03-01 15:08:42 -050035 BOOST_TEST_MESSAGE("NDN_CXX_VERSION = " << NDN_CXX_VERSION);
Davide Pesaventoeee3e822016-11-26 19:19:34 +010036
Davide Pesavento541a8222022-03-01 15:08:42 -050037 BOOST_TEST(NDN_CXX_VERSION == NDN_CXX_VERSION_MAJOR * 1000000 +
38 NDN_CXX_VERSION_MINOR * 1000 +
39 NDN_CXX_VERSION_PATCH);
40
41 static_assert(NDN_CXX_VERSION_MAJOR < 1000, "");
42 static_assert(NDN_CXX_VERSION_MINOR < 1000, "");
43 static_assert(NDN_CXX_VERSION_PATCH < 1000, "");
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070044}
45
46BOOST_AUTO_TEST_CASE(VersionString)
47{
Davide Pesaventoeee3e822016-11-26 19:19:34 +010048 BOOST_TEST_MESSAGE("NDN_CXX_VERSION_STRING = " NDN_CXX_VERSION_STRING);
Davide Pesavento541a8222022-03-01 15:08:42 -050049 BOOST_TEST_MESSAGE("NDN_CXX_VERSION_BUILD_STRING = " NDN_CXX_VERSION_BUILD_STRING);
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070050
Davide Pesavento541a8222022-03-01 15:08:42 -050051 char s[12];
52 std::snprintf(s, sizeof(s), "%d.%d.%d",
53 NDN_CXX_VERSION_MAJOR, NDN_CXX_VERSION_MINOR, NDN_CXX_VERSION_PATCH);
Davide Pesaventoeee3e822016-11-26 19:19:34 +010054
Davide Pesavento541a8222022-03-01 15:08:42 -050055 BOOST_TEST(NDN_CXX_VERSION_STRING == s);
56 BOOST_TEST(NDN_CXX_VERSION_BUILD_STRING != "");
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070057}
58
Davide Pesaventoeee3e822016-11-26 19:19:34 +010059BOOST_AUTO_TEST_SUITE_END() // TestVersion
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070060
61} // namespace tests
62} // namespace ndn