File size: 8,770 Bytes
985c397 | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 | // SPDX-License-Identifier: LGPL-2.1-or-later
/**************************************************************************
* *
* Copyright (c) 2021-2023 FreeCAD Project Association *
* *
* This file is part of FreeCAD. *
* *
* FreeCAD is free software: you can redistribute it and/or modify it *
* under the terms of the GNU Lesser General Public License as *
* published by the Free Software Foundation, either version 2.1 of the *
* License, or (at your option) any later version. *
* *
* FreeCAD 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 *
* Lesser General Public License for more details. *
* *
* You should have received a copy of the GNU Lesser General Public *
* License along with FreeCAD. If not, see *
* <https://www.gnu.org/licenses/>. *
* *
***************************************************************************/
// NOLINTNEXTLINE
#include <gtest/gtest.h>
#include "App/Metadata.h"
#include <xercesc/util/PlatformUtils.hpp>
// NOLINTBEGIN(readability-named-parameter)
TEST(ContactTest, ContactDefaultConstruction)
{
auto contact = App::Meta::Contact();
ASSERT_EQ(contact.name, "");
ASSERT_EQ(contact.email, "");
}
TEST(ContactTest, ContactParameterConstruction)
{
auto contact = App::Meta::Contact("Name", "email@some.com");
ASSERT_EQ(contact.name, "Name");
ASSERT_EQ(contact.email, "email@some.com");
}
TEST(ContactTest, ContactNullDomNodeConstruction)
{
auto contact = App::Meta::Contact(nullptr);
ASSERT_EQ(contact.name, "");
ASSERT_EQ(contact.email, "");
}
TEST(ContactTest, ContactOperatorEquality)
{
auto contact1 = App::Meta::Contact("Name", "Email");
auto contact2 = App::Meta::Contact("Name", "Email");
auto contact3 = App::Meta::Contact("NotName", "Email");
auto contact4 = App::Meta::Contact("Name", "NotEmail");
ASSERT_TRUE(contact1 == contact2);
ASSERT_FALSE(contact1 == contact3);
ASSERT_FALSE(contact1 == contact4);
}
TEST(LicenseTest, LicenseDefaultConstruction)
{
auto contact = App::Meta::License();
ASSERT_EQ(contact.name, "");
ASSERT_EQ(contact.file, "");
}
TEST(LicenseTest, LicenseParameterConstruction)
{
auto contact = App::Meta::License("Name", "path/to/file");
ASSERT_EQ(contact.name, "Name");
ASSERT_EQ(contact.file, "path/to/file");
}
TEST(LicenseTest, LicenseNullDomNodeConstruction)
{
auto contact = App::Meta::License(nullptr);
ASSERT_EQ(contact.name, "");
ASSERT_EQ(contact.file, "");
}
TEST(LicenseTest, LicenseOperatorEquality)
{
auto license1 = App::Meta::License("Name", "path/to/file");
auto license2 = App::Meta::License("Name", "path/to/file");
auto license3 = App::Meta::License("NotName", "path/to/file");
auto license4 = App::Meta::License("Name", "not/path/to/file");
ASSERT_TRUE(license1 == license2);
ASSERT_FALSE(license1 == license3);
ASSERT_FALSE(license1 == license4);
}
TEST(UrlTest, UrlDefaultConstruction)
{
auto url = App::Meta::Url();
ASSERT_EQ(url.location, "");
ASSERT_EQ(url.type, App::Meta::UrlType::website);
}
TEST(UrlTest, UrlParameterConstruction)
{
auto url = App::Meta::Url("https://some.url", App::Meta::UrlType::documentation);
ASSERT_EQ(url.location, "https://some.url");
ASSERT_EQ(url.type, App::Meta::UrlType::documentation);
}
TEST(UrlTest, UrlNullDomNodeConstruction)
{
auto url = App::Meta::Url(nullptr);
ASSERT_EQ(url.location, "");
}
TEST(UrlTest, UrlOperatorEquality)
{
auto url1 = App::Meta::Url("https://some.url", App::Meta::UrlType::documentation);
auto url2 = App::Meta::Url("https://some.url", App::Meta::UrlType::documentation);
auto url3 = App::Meta::Url("https://not.some.url", App::Meta::UrlType::documentation);
auto url4 = App::Meta::Url("https://some.url", App::Meta::UrlType::website);
ASSERT_TRUE(url1 == url2);
ASSERT_FALSE(url1 == url3);
ASSERT_FALSE(url1 == url4);
}
TEST(VersionTest, VersionDefaultConstruction)
{
auto version = App::Meta::Version();
ASSERT_EQ(version.major, 0);
ASSERT_EQ(version.minor, 0);
ASSERT_EQ(version.patch, 0);
ASSERT_EQ(version.suffix, "");
}
TEST(VersionTest, VersionParameterConstruction)
{
auto version = App::Meta::Version(1, 2, 3, "delta");
ASSERT_EQ(version.major, 1);
ASSERT_EQ(version.minor, 2);
ASSERT_EQ(version.patch, 3);
ASSERT_EQ(version.suffix, "delta");
}
TEST(VersionTest, VersionStringConstruction)
{
auto version = App::Meta::Version("1.2.3delta");
ASSERT_EQ(version.major, 1);
ASSERT_EQ(version.minor, 2);
ASSERT_EQ(version.patch, 3);
ASSERT_EQ(version.suffix, "delta");
}
TEST(VersionTest, VersionOperatorEqual)
{
auto version1 = App::Meta::Version(1, 2, 3, "delta");
auto version2 = App::Meta::Version(1, 2, 3, "delta");
auto version3 = App::Meta::Version(1, 3, 3, "delta");
auto version4 = App::Meta::Version(1, 2, 4, "delta");
auto version5 = App::Meta::Version(1, 2, 3, "gamma");
ASSERT_EQ(version1, version2);
ASSERT_NE(version1, version3);
ASSERT_NE(version1, version4);
ASSERT_NE(version1, version5);
}
TEST(VersionTest, VersionOperatorComparison)
{
auto version_2_3_4_delta = App::Meta::Version(2, 3, 4, "delta");
auto version_1_3_4_delta = App::Meta::Version(1, 3, 4, "delta");
auto version_3_3_4_delta = App::Meta::Version(3, 3, 4, "delta");
auto version_2_2_4_delta = App::Meta::Version(2, 2, 4, "delta");
auto version_2_4_4_delta = App::Meta::Version(2, 4, 4, "delta");
auto version_2_3_3_delta = App::Meta::Version(2, 3, 3, "delta");
// NOLINTNEXTLINE Five is not really a "magic number" in this test
auto version_2_3_5_delta = App::Meta::Version(2, 3, 5, "delta");
auto version_2_3_4_epsilon = App::Meta::Version(2, 3, 4, "epsilon");
auto version_2_3_4_beta = App::Meta::Version(2, 3, 4, "beta");
ASSERT_GT(version_2_3_4_delta, version_1_3_4_delta);
ASSERT_LT(version_2_3_4_delta, version_3_3_4_delta);
ASSERT_GT(version_2_3_4_delta, version_2_2_4_delta);
ASSERT_LT(version_2_3_4_delta, version_2_4_4_delta);
ASSERT_GT(version_2_3_4_delta, version_2_3_3_delta);
ASSERT_LT(version_2_3_4_delta, version_2_3_5_delta);
ASSERT_GT(version_2_3_4_delta, version_2_3_4_beta);
ASSERT_LT(version_2_3_4_delta, version_2_3_4_epsilon);
}
// TODO: Test Dependency
// TODO: Test GenericMetadata
class MetadataTest: public ::testing::Test
{
protected:
void SetUp() override
{
XERCES_CPP_NAMESPACE::XMLPlatformUtils::Initialize();
}
void TearDown() override
{
XERCES_CPP_NAMESPACE::XMLPlatformUtils::Terminate();
}
std::string GivenSimpleMetadataXMLString()
{
std::ostringstream stream;
stream << "<?xml version=\"1.0\" encoding=\"utf-8\" standalone=\"no\" ?>\n"
<< "<package format=\"1\" xmlns=\"https://wiki.freecad.org/Package_Metadata\">\n"
<< " <name>" << _name << "</name>\n"
<< " <description>" << _description << "</description>\n"
<< " <version>" << _version << "</version>\n"
<< " <date>2022-01-07</date>\n"
<< " <url type=\"repository\" "
"branch=\"main\">https://github.com/FreeCAD/FreeCAD</url>\n"
<< "</package>";
return stream.str();
}
void AssertMetadataMatches(App::Metadata& testObject)
{
ASSERT_EQ(testObject.name(), _name);
ASSERT_EQ(testObject.description(), _description);
ASSERT_EQ(testObject.version(), App::Meta::Version(_version));
}
private:
std::string _name = "TestAddon";
std::string _description = "A package.xml file for unit testing.";
std::string _version = "1.2.3beta";
};
TEST_F(MetadataTest, MetadataInMemoryConstruction)
{
auto xml = GivenSimpleMetadataXMLString();
auto testObject = App::Metadata(std::string {xml});
AssertMetadataMatches(testObject);
}
// NOLINTEND(readability-named-parameter)
|