1b1501343SLei YU #include "version.hpp"
2b1501343SLei YU
35e0b2375SAdriana Kobylak #include <openssl/evp.h>
4b1501343SLei YU
5b1501343SLei YU #include <gtest/gtest.h>
6b1501343SLei YU
7b1501343SLei YU using namespace openpower::software::updater;
8b1501343SLei YU
95e0b2375SAdriana Kobylak using EVP_MD_CTX_Ptr =
105e0b2375SAdriana Kobylak std::unique_ptr<EVP_MD_CTX, decltype(&::EVP_MD_CTX_free)>;
115e0b2375SAdriana Kobylak
12b1501343SLei YU /** @brief Make sure we correctly get the Id from getId()*/
TEST(VersionTest,TestGetId)13b1501343SLei YU TEST(VersionTest, TestGetId)
14b1501343SLei YU {
15b1501343SLei YU auto version = "test-id";
165e0b2375SAdriana Kobylak unsigned char digest[EVP_MAX_MD_SIZE];
175e0b2375SAdriana Kobylak unsigned int digest_count = 0;
185e0b2375SAdriana Kobylak
195e0b2375SAdriana Kobylak EVP_MD_CTX_Ptr ctx(EVP_MD_CTX_new(), &::EVP_MD_CTX_free);
205e0b2375SAdriana Kobylak
215e0b2375SAdriana Kobylak EVP_DigestInit(ctx.get(), EVP_sha512());
225e0b2375SAdriana Kobylak EVP_DigestUpdate(ctx.get(), version, strlen(version));
235e0b2375SAdriana Kobylak EVP_DigestFinal(ctx.get(), digest, &digest_count);
245e0b2375SAdriana Kobylak
255e0b2375SAdriana Kobylak char mdString[EVP_MAX_MD_SIZE * 2 + 1];
265e0b2375SAdriana Kobylak for (decltype(digest_count) i = 0; i < digest_count; i++)
27b1501343SLei YU {
28b1501343SLei YU snprintf(&mdString[i * 2], 3, "%02x", (unsigned int)digest[i]);
29b1501343SLei YU }
30b1501343SLei YU std::string hexId = std::string(mdString);
31b1501343SLei YU hexId = hexId.substr(0, 8);
32b1501343SLei YU EXPECT_EQ(Version::getId(version), hexId);
33b1501343SLei YU }
34b1501343SLei YU
TEST(VersionTest,GetVersions)35b1501343SLei YU TEST(VersionTest, GetVersions)
36b1501343SLei YU {
37b1501343SLei YU constexpr auto versionString =
38b1501343SLei YU "open-power-romulus-v2.2-rc1-48-g268344f-dirty\n"
39b1501343SLei YU "\tbuildroot-2018.11.1-7-g5d7cc8c\n"
40b1501343SLei YU "\tskiboot-v6.2\n"
41b1501343SLei YU "\thostboot-3f1f218-pea87ca7\n"
42b1501343SLei YU "\tocc-12c8088\n"
43b1501343SLei YU "\tlinux-4.19.13-openpower1-p8031295\n"
44b1501343SLei YU "\tpetitboot-1.9.2\n"
45b1501343SLei YU "\tmachine-xml-7410460\n"
46b1501343SLei YU "\thostboot-binaries-hw121518a.930\n"
47b1501343SLei YU "\tcapp-ucode-p9-dd2-v4\n"
48b1501343SLei YU "\tsbe-cf61dc3\n"
49b1501343SLei YU "\thcode-hw123119a.930";
50b1501343SLei YU
51*f8e02429SPatrick Williams const auto& [version, extendedVersion] =
52*f8e02429SPatrick Williams Version::getVersions(versionString);
53b1501343SLei YU EXPECT_EQ(version, "open-power-romulus-v2.2-rc1-48-g268344f-dirty");
54*f8e02429SPatrick Williams EXPECT_EQ(extendedVersion,
55*f8e02429SPatrick Williams "buildroot-2018.11.1-7-g5d7cc8c,"
56b1501343SLei YU "skiboot-v6.2,"
57b1501343SLei YU "hostboot-3f1f218-pea87ca7,"
58b1501343SLei YU "occ-12c8088,"
59b1501343SLei YU "linux-4.19.13-openpower1-p8031295,"
60b1501343SLei YU "petitboot-1.9.2,"
61b1501343SLei YU "machine-xml-7410460,"
62b1501343SLei YU "hostboot-binaries-hw121518a.930,"
63b1501343SLei YU "capp-ucode-p9-dd2-v4,"
64b1501343SLei YU "sbe-cf61dc3,"
65b1501343SLei YU "hcode-hw123119a.930");
66b1501343SLei YU }
67