/* * Copyright (C) 2019 Emeric Poupon * * This file is part of LMS. * * LMS 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. * * LMS 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 LMS. If not, see . */ #include #include "Utils.hpp" namespace lms::metadata::utils::tests { TEST(MetaData, parseDate) { struct TestCase { std::string str; Wt::WDate result; } testCases[] { { "1995-05-09", Wt::WDate {1995, 5, 9} }, { "1995-01-01", Wt::WDate {1995, 1, 1} }, { "1900-01-01", Wt::WDate {1900, 1, 1} }, { "1899-01-01", Wt::WDate {1899, 1, 1} }, { "1899-12-31", Wt::WDate {1899, 12, 31} }, { "1899-11-30", Wt::WDate {1899, 11, 30} }, { "1500-11-30", Wt::WDate {1500, 11, 30} }, { "1000-11-30", Wt::WDate {1000, 11, 30} }, { "1899-11-31", Wt::WDate {} }, // invalid day { "1899-11-00", Wt::WDate {} }, // invalid day { "1899-13-01", Wt::WDate {} }, // invalid month { "1899-00-01", Wt::WDate {} }, // invalid month { "1899-11", Wt::WDate {} }, // missing day { "1899", Wt::WDate {} }, // missing month and days { "1600", Wt::WDate {} }, // missing month and days { "1995/05/09", Wt::WDate {1995, 5, 9} }, { "1995/01/01", Wt::WDate {1995, 1, 1} }, { "1900/01/01", Wt::WDate {1900, 1, 1} }, { "1899/01/01", Wt::WDate {1899, 1, 1} }, { "1899/12/31", Wt::WDate {1899, 12, 31} }, { "1899/11/30", Wt::WDate {1899, 11, 30} }, { "1500/11/30", Wt::WDate {1500, 11, 30} }, { "1000/11/30", Wt::WDate {1000, 11, 30} }, { "1899/11/31", Wt::WDate {} }, // invalid day { "1899/11/00", Wt::WDate {} }, // invalid day { "1899/13/01", Wt::WDate {} }, // invalid month { "1899/00/01", Wt::WDate {} }, // invalid month { "1899/11", Wt::WDate {} }, // missing day { "1899", Wt::WDate {} }, // missing month and days { "1600", Wt::WDate {} }, // missing month and days { "1995/05-09", Wt::WDate {} }, // invalid mixup separators { "1995-05/09", Wt::WDate {} }, // invalid mixup separators }; for (const TestCase& testCase : testCases) { const Wt::WDate parsed{ parseDate(testCase.str) }; EXPECT_EQ(parsed.year(), testCase.result.year()) << " str was '" << testCase.str << "'"; EXPECT_EQ(parsed.month(), testCase.result.month()) << " str was '" << testCase.str << "'"; EXPECT_EQ(parsed.day(), testCase.result.day()) << " str was '" << testCase.str << "'"; } } TEST(MetaData, parseYear) { struct TestCase { std::string str; std::optional result; } testCases[] { { "1995-05-09", 1995 }, { "1995", 1995 }, { "-0", 0 }, { "0", 0 }, { "00", 0 }, { "05", 5 }, { "050", 50 }, { "00005", 0 }, { "-50", -50 }, { "-", std::nullopt }, { "", std::nullopt }, { "a", std::nullopt }, { "1a", 1 }, { "12a", 12 }, { "123a", 123 }, { "1234a", 1234 }, { "19951123", 1995 }, { "199511", 1995 }, }; for (const TestCase& testCase : testCases) { const std::optional parsed{ parseYear(testCase.str) }; EXPECT_EQ(parsed, testCase.result) << " str was '" << testCase.str << "'"; } } TEST(MetaData, extractPerformerAndRole) { struct TestCase { std::string str; std::string expectedArtistName; std::string expectedRole; } testCases[] { { "", "", "" }, { "(myrole)", "", "myrole" }, { "(my role)", "", "my role" }, { " ( my role ) ", "", "my role" }, { " (()) ", "", "()" }, { ")", ")", "" }, { "(", "(", "" }, { "artist name (my role)", "artist name", "my role" }, { "artist name ()", "artist name", "" }, { "artist name ( )", "artist name", "" }, { "artist (subname) name", "artist (subname) name", "" }, { " artist name ( my role )", "artist name", "my role" }, { "artist name (artist subname) (my role)", "artist name (artist subname)", "my role" }, { "artist name", "artist name", "" }, { " artist name ", "artist name", "" }, { "artist name (", "artist name (", "" }, { "artist name )", "artist name )", "" }, { "artist name (()", "artist name (", "" }, { "artist name (())", "artist name", "()" }, { "artist name ( () )", "artist name", "()" }, { "artist name (drums (drum set))", "artist name", "drums (drum set)" }, { "artist name ( drums (drum set) )", "artist name", "drums (drum set)" }, }; for (const TestCase& testCase : testCases) { PerformerArtist performer{ extractPerformerAndRole(testCase.str) }; EXPECT_EQ(performer.artist.name, testCase.expectedArtistName) << " str was '" << testCase.str << "'"; EXPECT_EQ(performer.role, testCase.expectedRole) << " str was '" << testCase.str << "'"; } } }