cesium-native/Cesium3DTilesSelection/test/TestCreditSystem.cpp

152 lines
4.7 KiB
C++

#include <CesiumUtility/CreditSystem.h>
#include <doctest/doctest.h>
#include <string>
#include <vector>
using namespace CesiumUtility;
TEST_CASE("Test basic credit handling") {
CreditSystem creditSystem;
std::string html0 = "<html>Credit0</html>";
std::string html1 = "<html>Credit1</html>";
std::string html2 = "<html>Credit2</html>";
Credit credit0 = creditSystem.createCredit(html0);
Credit credit1 = creditSystem.createCredit(html1);
Credit credit2 = creditSystem.createCredit(html2);
REQUIRE(creditSystem.getHtml(credit1) == html1);
// Frame 0: Add 0 and 1
creditSystem.addCreditToFrame(credit0);
creditSystem.addCreditToFrame(credit1);
std::vector<Credit> expectedShow0{credit0, credit1};
REQUIRE(creditSystem.getCreditsToShowThisFrame() == expectedShow0);
std::vector<Credit> expectedHide0{};
REQUIRE(creditSystem.getCreditsToNoLongerShowThisFrame() == expectedHide0);
// Start frame 1: Add 1 and 2, remove 0
creditSystem.startNextFrame();
creditSystem.addCreditToFrame(credit1);
creditSystem.addCreditToFrame(credit2);
std::vector<Credit> expectedShow1{credit1, credit2};
REQUIRE(creditSystem.getCreditsToShowThisFrame() == expectedShow1);
std::vector<Credit> expectedHide1{credit0};
REQUIRE(creditSystem.getCreditsToNoLongerShowThisFrame() == expectedHide1);
// Start frame 2: Add nothing, remove 1 and 2
creditSystem.startNextFrame();
std::vector<Credit> expectedShow2{};
REQUIRE(creditSystem.getCreditsToShowThisFrame() == expectedShow2);
std::vector<Credit> expectedHide2{credit1, credit2};
REQUIRE(creditSystem.getCreditsToNoLongerShowThisFrame() == expectedHide2);
// Start frame 3: Add nothing, remove nothing
creditSystem.startNextFrame();
std::vector<Credit> expectedShow3{};
REQUIRE(creditSystem.getCreditsToShowThisFrame() == expectedShow3);
std::vector<Credit> expectedHide3{};
REQUIRE(creditSystem.getCreditsToNoLongerShowThisFrame() == expectedHide3);
}
TEST_CASE("Test wrong credit handling") {
CreditSystem creditSystemA;
CreditSystem creditSystemB;
std::string html0 = "<html>Credit0</html>";
std::string html1 = "<html>Credit1</html>";
Credit creditA0 = creditSystemA.createCredit(html0);
Credit creditA1 = creditSystemA.createCredit(html1);
/*Credit creditB0 = */ creditSystemB.createCredit(html0);
// NOTE: This is using a Credit from a different credit
// system, which coincidentally has a valid ID here.
// This is not (and can hardly be) checked right now,
// so this returns a valid HTML string:
REQUIRE(creditSystemB.getHtml(creditA0) == html0);
REQUIRE(creditSystemB.getHtml(creditA1) != html1);
}
TEST_CASE("Test sorting credits by frequency") {
CreditSystem creditSystem;
std::string html0 = "<html>Credit0</html>";
std::string html1 = "<html>Credit1</html>";
std::string html2 = "<html>Credit2</html>";
Credit credit0 = creditSystem.createCredit(html0);
Credit credit1 = creditSystem.createCredit(html1);
Credit credit2 = creditSystem.createCredit(html2);
REQUIRE(creditSystem.getHtml(credit1) == html1);
for (int i = 0; i < 3; i++) {
creditSystem.addCreditToFrame(credit0);
}
for (int i = 0; i < 2; i++) {
creditSystem.addCreditToFrame(credit1);
}
creditSystem.addCreditToFrame(credit2);
std::vector<Credit> expectedShow0{credit0, credit1, credit2};
REQUIRE(creditSystem.getCreditsToShowThisFrame() == expectedShow0);
creditSystem.startNextFrame();
for (int i = 0; i < 3; i++) {
creditSystem.addCreditToFrame(credit2);
}
for (int i = 0; i < 2; i++) {
creditSystem.addCreditToFrame(credit1);
}
creditSystem.addCreditToFrame(credit0);
std::vector<Credit> expectedShow1{credit2, credit1, credit0};
REQUIRE(creditSystem.getCreditsToShowThisFrame() == expectedShow1);
}
TEST_CASE("Test setting showOnScreen on credits") {
CreditSystem creditSystem;
std::string html0 = "<html>Credit0</html>";
std::string html1 = "<html>Credit1</html>";
std::string html2 = "<html>Credit2</html>";
Credit credit0 = creditSystem.createCredit(html0, true);
Credit credit1 = creditSystem.createCredit(html1, false);
Credit credit2 = creditSystem.createCredit(html2, true);
REQUIRE(creditSystem.getHtml(credit1) == html1);
CHECK(creditSystem.shouldBeShownOnScreen(credit0) == true);
CHECK(creditSystem.shouldBeShownOnScreen(credit1) == false);
CHECK(creditSystem.shouldBeShownOnScreen(credit2) == true);
creditSystem.setShowOnScreen(credit0, false);
creditSystem.setShowOnScreen(credit1, true);
creditSystem.setShowOnScreen(credit2, true);
CHECK(creditSystem.shouldBeShownOnScreen(credit0) == false);
CHECK(creditSystem.shouldBeShownOnScreen(credit1) == true);
CHECK(creditSystem.shouldBeShownOnScreen(credit2) == true);
}