major: initial release

* initial development

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* pipeline

* ci/cd

* ci/cd

* ci/cd

* ci/cd

* ci/cd

* ci/cd

* ci/cd

* pokemon

* pokemon

* pokemon

* pokemon

* pokemon

* pokemon

* improvements

* improvements

* ci/cd

* ci/cd

* improvements

* improvements

* improvements

* improvements

* improvements

* improvements

* improvements

* improvements

* improvements

---------

Co-authored-by: sdine <sdine@sdine.com>
This commit is contained in:
Sebastian Dine
2026-05-09 11:05:47 +02:00
committed by GitHub
parent 13262fa015
commit 55ace147bc
149 changed files with 12611 additions and 0 deletions
+131
View File
@@ -0,0 +1,131 @@
#include <doctest/doctest.h>
#include "ccm/domain/Enums.hpp"
#include "ccm/ports/IImageStore.hpp"
#include "ccm/services/ImageService.hpp"
#include <map>
#include <string>
#include <vector>
using namespace ccm;
namespace {
// Trivial image store that records calls without touching disk.
class RecordingImageStore final : public IImageStore {
public:
struct Call { Game game; std::filesystem::path src; std::string target; };
std::vector<Call> copies;
std::vector<std::pair<Game, std::string>> removes;
std::string returnedExt = ".png";
Result<std::string> copyIn(Game game,
const std::filesystem::path& srcPath,
const std::string& targetName) override {
copies.push_back({game, srcPath, targetName});
return Result<std::string>::ok(targetName + returnedExt);
}
Result<void> remove(Game game, const std::string& imageName) override {
removes.emplace_back(game, imageName);
return Result<void>::ok();
}
std::filesystem::path resolvePath(Game, const std::string& imageName) const override {
return std::filesystem::path("/fake") / imageName;
}
};
} // namespace
TEST_SUITE("ImageService::nextImageIndex") {
TEST_CASE("empty list returns 0") {
CHECK(ImageService::nextImageIndex({}) == 0);
}
TEST_CASE("increments by one over the latest filename") {
std::vector<std::string> imgs = {"set+name+0.png", "set+name+1.png"};
CHECK(ImageService::nextImageIndex(imgs) == 2);
}
TEST_CASE("CCM1-style filenames reset back to 0") {
std::vector<std::string> imgs = {"someCardIMG_FRONT.png"};
CHECK(ImageService::nextImageIndex(imgs) == 0);
std::vector<std::string> imgs2 = {"otherIMG_BACK.png"};
CHECK(ImageService::nextImageIndex(imgs2) == 0);
}
}
TEST_SUITE("ImageService::buildTargetName") {
TEST_CASE("new entry omits id, uses sanitized set+name+idx") {
const auto out = ImageService::buildTargetName(true, 99, "Limited: Alpha", "Lightning, Bolt", 3);
CHECK(out == "Limited-Alpha+LightningBolt+3");
}
TEST_CASE("existing entry prepends the card id") {
const auto out = ImageService::buildTargetName(false, 42, "Beta", "Black Lotus", 0);
CHECK(out == "42+Beta+BlackLotus+0");
}
}
TEST_SUITE("ImageService::addImage") {
TEST_CASE("delegates to the store with the computed target name") {
RecordingImageStore store;
ImageService svc{store};
std::vector<std::string> existing;
auto res = svc.addImage(Game::Magic, "/tmp/source.png",
/*newEntry=*/true, /*cardId=*/0,
"Beta", "Black Lotus", existing);
REQUIRE(res.isOk());
CHECK(res.value() == "Beta+BlackLotus+0.png");
REQUIRE(store.copies.size() == 1);
CHECK(store.copies[0].game == Game::Magic);
CHECK(store.copies[0].target == "Beta+BlackLotus+0");
}
}
TEST_SUITE("ImageService::normalizeNamesForPersistedCard") {
TEST_CASE("renames non-prefixed images to include card id") {
RecordingImageStore store;
ImageService svc{store};
const std::vector<std::string> images{
"Beta+BlackLotus+0.png",
"Beta+BlackLotus+1.jpg"
};
auto normalized = svc.normalizeNamesForPersistedCard(
Game::Magic, 42, "Beta", "Black Lotus", images);
REQUIRE(normalized.isOk());
CHECK(normalized.value().size() == 2);
CHECK(normalized.value()[0] == "42+Beta+BlackLotus+0.png");
CHECK(normalized.value()[1] == "42+Beta+BlackLotus+1.jpg");
REQUIRE(store.copies.size() == 2);
CHECK(store.copies[0].src == std::filesystem::path("/fake/Beta+BlackLotus+0.png"));
CHECK(store.copies[0].target == "42+Beta+BlackLotus+0");
CHECK(store.copies[1].src == std::filesystem::path("/fake/Beta+BlackLotus+1.jpg"));
CHECK(store.copies[1].target == "42+Beta+BlackLotus+1");
REQUIRE(store.removes.size() == 2);
CHECK(store.removes[0].second == "Beta+BlackLotus+0.png");
CHECK(store.removes[1].second == "Beta+BlackLotus+1.jpg");
}
TEST_CASE("keeps already-prefixed names untouched") {
RecordingImageStore store;
ImageService svc{store};
const std::vector<std::string> images{"42+Beta+BlackLotus+0.png"};
auto normalized = svc.normalizeNamesForPersistedCard(
Game::Magic, 42, "Beta", "Black Lotus", images);
REQUIRE(normalized.isOk());
CHECK(normalized.value() == images);
CHECK(store.copies.empty());
CHECK(store.removes.empty());
}
}