cesium-native/Cesium3DTilesSelection/test/TestCreditSystem.cpp

82 lines
2.6 KiB
C++

#include "Cesium3DTilesSelection/CreditSystem.h"
#include <catch2/catch.hpp>
using namespace Cesium3DTilesSelection;
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);
}