Mercurial > hg > orthanc
view OrthancServer/UnitTestsSources/VersionsTests.cpp @ 5352:49b7d6dfd437 Orthanc-1.11.2
closing branch Orthanc-1.11.2
author | Sebastien Jodogne <s.jodogne@gmail.com> |
---|---|
date | Tue, 04 Jul 2023 12:21:28 +0200 |
parents | 02fae039a15d |
children | 0ea402b4d901 |
line wrap: on
line source
/** * Orthanc - A Lightweight, RESTful DICOM Store * Copyright (C) 2012-2016 Sebastien Jodogne, Medical Physics * Department, University Hospital of Liege, Belgium * Copyright (C) 2017-2022 Osimis S.A., Belgium * Copyright (C) 2021-2022 Sebastien Jodogne, ICTEAM UCLouvain, Belgium * * This program 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. * * This program 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 this program. If not, see <http://www.gnu.org/licenses/>. **/ #include "PrecompiledHeadersUnitTests.h" #include <gtest/gtest.h> #include <stdint.h> #include <math.h> #include <png.h> #include <ctype.h> #include <zlib.h> #include <curl/curl.h> #include <boost/version.hpp> #include <sqlite3.h> #include <lua.h> #include <jpeglib.h> #if BUILDING_LIBICONV == 1 # include <iconv.h> #endif #if ORTHANC_ENABLE_SSL == 1 # include <openssl/opensslv.h> #endif #if (ORTHANC_ENABLE_CIVETWEB == 1 && \ ORTHANC_UNIT_TESTS_LINK_FRAMEWORK != 1) # include <civetweb.h> #endif #if ORTHANC_ENABLE_PUGIXML == 1 # include <pugixml.hpp> #endif TEST(Versions, Zlib) { ASSERT_STREQ(zlibVersion(), ZLIB_VERSION); } TEST(Versions, Curl) { curl_version_info_data* v = curl_version_info(CURLVERSION_NOW); ASSERT_STREQ(LIBCURL_VERSION, v->version); } TEST(Versions, Png) { ASSERT_EQ(PNG_LIBPNG_VER_MAJOR * 10000 + PNG_LIBPNG_VER_MINOR * 100 + PNG_LIBPNG_VER_RELEASE, static_cast<int>(png_access_version_number())); } TEST(Versions, SQLite) { #if defined(__APPLE__) // Under OS X, there might exist minor differences between the // version of the headers and the version of the library, for the // system-wide SQLite. Ignore these differences. #else // http://www.sqlite.org/capi3ref.html#sqlite3_libversion EXPECT_EQ(sqlite3_libversion_number(), SQLITE_VERSION_NUMBER); EXPECT_STREQ(sqlite3_libversion(), SQLITE_VERSION); /** * On Orthanc > 1.5.8, we comment out the following test, that is * too strict for some GNU/Linux distributions to apply their own * security fixes. Checking the main version macros is sufficient. * https://bugzilla.suse.com/show_bug.cgi?id=1154550#c2 **/ // EXPECT_STREQ(sqlite3_sourceid(), SQLITE_SOURCE_ID); #endif // Ensure that the SQLite version is above 3.7.0. // "sqlite3_create_function_v2" is not defined in previous versions. ASSERT_GE(SQLITE_VERSION_NUMBER, 3007000); } TEST(Versions, Lua) { // Ensure that the Lua version is above 5.1.0. This version has // introduced some API changes. ASSERT_GE(LUA_VERSION_NUM, 501); } #if ORTHANC_STATIC == 1 TEST(Versions, ZlibStatic) { ASSERT_STREQ("1.2.11", zlibVersion()); } TEST(Versions, BoostStatic) { ASSERT_TRUE(std::string(BOOST_LIB_VERSION) == "1_80" || std::string(BOOST_LIB_VERSION) == "1_69" /* if USE_LEGACY_BOOST */); } TEST(Versions, CurlStatic) { curl_version_info_data* v = curl_version_info(CURLVERSION_NOW); ASSERT_STREQ("7.77.0", v->version); } TEST(Versions, PngStatic) { ASSERT_EQ(10636u, png_access_version_number()); ASSERT_STREQ("1.6.36", PNG_LIBPNG_VER_STRING); } TEST(Versions, JpegStatic) { ASSERT_EQ(9, JPEG_LIB_VERSION_MAJOR); ASSERT_EQ(3, JPEG_LIB_VERSION_MINOR); } TEST(Versions, CurlSslStatic) { curl_version_info_data * vinfo = curl_version_info(CURLVERSION_NOW); // Check that SSL support is enabled when required bool curlSupportsSsl = (vinfo->features & CURL_VERSION_SSL) != 0; #if ORTHANC_ENABLE_SSL == 0 ASSERT_FALSE(curlSupportsSsl); #else ASSERT_TRUE(curlSupportsSsl); #endif } TEST(Version, LuaStatic) { ASSERT_STREQ("Lua 5.3.5", LUA_RELEASE); } #if BUILDING_LIBICONV == 1 TEST(Version, LibIconvStatic) { static const int major = 1; static const int minor = 15; ASSERT_EQ((major << 8) + minor, _LIBICONV_VERSION); } #endif #if ORTHANC_ENABLE_SSL == 1 TEST(Version, OpenSslStatic) { // openssl-3.0.5 ASSERT_EQ(3 * 0x10000000L + 0 * 0x00100000L + 1 * 0x00000050L + 0 * 0x0000000fL, OPENSSL_VERSION_NUMBER); } #endif #include <json/version.h> TEST(Version, JsonCpp) { #if ORTHANC_LEGACY_JSONCPP == 1 ASSERT_STREQ("0.10.6", JSONCPP_VERSION_STRING); #elif ORTHANC_LEGACY_JSONCPP == 0 ASSERT_STREQ("1.9.4", JSONCPP_VERSION_STRING); #else # error Macro ORTHANC_LEGACY_JSONCPP should be set #endif } #if ORTHANC_ENABLE_CIVETWEB == 1 TEST(Version, Civetweb) { ASSERT_EQ(1, CIVETWEB_VERSION_MAJOR); ASSERT_EQ(14, CIVETWEB_VERSION_MINOR); ASSERT_EQ(0, CIVETWEB_VERSION_PATCH); } #endif #if ORTHANC_ENABLE_PUGIXML == 1 TEST(Version, Pugixml) { ASSERT_EQ(190, PUGIXML_VERSION); } #endif #endif