49 lines
1.2 KiB
C++
49 lines
1.2 KiB
C++
// SPDX-License-Identifier: LGPL-2.1-or-later
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include "App/License.h"
|
|
|
|
TEST(License, isLicenseEmpty)
|
|
{
|
|
EXPECT_EQ(App::findLicense(""), -1);
|
|
}
|
|
|
|
TEST(License, isLicenseNull)
|
|
{
|
|
EXPECT_EQ(App::findLicense(nullptr), -1);
|
|
}
|
|
|
|
TEST(License, isLicenseYesStr)
|
|
{
|
|
EXPECT_EQ(App::findLicense("CC_BY_40"), 1);
|
|
}
|
|
|
|
TEST(License, UnknownIdentifier)
|
|
{
|
|
int index {App::findLicense("junk")};
|
|
EXPECT_EQ(index, -1);
|
|
}
|
|
|
|
TEST(License, direct)
|
|
{
|
|
int posn {App::findLicense("CC_BY_40")};
|
|
App::TLicenseArr tt {
|
|
"CC_BY_40",
|
|
"Creative Commons Attribution 4.0",
|
|
"https://creativecommons.org/licenses/by/4.0/"
|
|
};
|
|
EXPECT_STREQ(App::licenseItems.at(posn).at(0), tt.at(0));
|
|
EXPECT_STREQ(App::licenseItems.at(posn).at(1), tt.at(1));
|
|
EXPECT_STREQ(App::licenseItems.at(posn).at(2), tt.at(2));
|
|
}
|
|
|
|
TEST(License, findLicenseByIdent)
|
|
{
|
|
App::TLicenseArr arr {App::licenseItems.at(App::findLicense("CC_BY_40"))};
|
|
|
|
EXPECT_STREQ(arr.at(App::posnOfIdentifier), "CC_BY_40");
|
|
EXPECT_STREQ(arr.at(App::posnOfFullName), "Creative Commons Attribution 4.0");
|
|
EXPECT_STREQ(arr.at(App::posnOfUrl), "https://creativecommons.org/licenses/by/4.0/");
|
|
}
|