blob: 4b551a9cdbe989d8050871b295f4065b4d949225 [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 Pesavento47ce2ee2023-05-09 01:33:33 -04003 * Copyright (c) 2013-2023 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
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040028namespace ndn::tests {
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070029
30BOOST_AUTO_TEST_SUITE(TestVersion)
31
Davide Pesaventoeee3e822016-11-26 19:19:34 +010032BOOST_AUTO_TEST_CASE(VersionNumber)
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070033{
Davide Pesavento541a8222022-03-01 15:08:42 -050034 BOOST_TEST_MESSAGE("NDN_CXX_VERSION = " << NDN_CXX_VERSION);
Davide Pesaventoeee3e822016-11-26 19:19:34 +010035
Davide Pesavento541a8222022-03-01 15:08:42 -050036 BOOST_TEST(NDN_CXX_VERSION == NDN_CXX_VERSION_MAJOR * 1000000 +
37 NDN_CXX_VERSION_MINOR * 1000 +
38 NDN_CXX_VERSION_PATCH);
39
Davide Pesaventofffdd622023-08-28 22:50:43 -040040 static_assert(NDN_CXX_VERSION_MAJOR < 1000);
41 static_assert(NDN_CXX_VERSION_MINOR < 1000);
42 static_assert(NDN_CXX_VERSION_PATCH < 1000);
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070043}
44
45BOOST_AUTO_TEST_CASE(VersionString)
46{
Davide Pesaventoeee3e822016-11-26 19:19:34 +010047 BOOST_TEST_MESSAGE("NDN_CXX_VERSION_STRING = " NDN_CXX_VERSION_STRING);
Davide Pesavento541a8222022-03-01 15:08:42 -050048 BOOST_TEST_MESSAGE("NDN_CXX_VERSION_BUILD_STRING = " NDN_CXX_VERSION_BUILD_STRING);
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070049
Davide Pesavento541a8222022-03-01 15:08:42 -050050 char s[12];
51 std::snprintf(s, sizeof(s), "%d.%d.%d",
52 NDN_CXX_VERSION_MAJOR, NDN_CXX_VERSION_MINOR, NDN_CXX_VERSION_PATCH);
Davide Pesaventoeee3e822016-11-26 19:19:34 +010053
Davide Pesavento541a8222022-03-01 15:08:42 -050054 BOOST_TEST(NDN_CXX_VERSION_STRING == s);
55 BOOST_TEST(NDN_CXX_VERSION_BUILD_STRING != "");
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070056}
57
Davide Pesaventoeee3e822016-11-26 19:19:34 +010058BOOST_AUTO_TEST_SUITE_END() // TestVersion
Alexander Afanasyeva06fdda2014-04-29 19:15:00 -070059
Davide Pesavento47ce2ee2023-05-09 01:33:33 -040060} // namespace ndn::tests