This commit is contained in:
Aria 2025-03-21 22:23:30 +11:00
commit 9c94d113d3
Signed by untrusted user who does not match committer: aria
GPG key ID: 19AB7AA462B8AB3B
10260 changed files with 1237388 additions and 0 deletions

View file

@ -0,0 +1,24 @@
#include "StarAssets.hpp"
#include "gtest/gtest.h"
using namespace Star;
TEST(AssetsTest, All) {
EXPECT_EQ(AssetPath::removeDirectives("/foo/bar/baz??::?:??:asdfasdf??D?"), "/foo/bar/baz");
EXPECT_EQ(AssetPath::directory("/foo/bar/baz"), "/foo/bar/");
EXPECT_EQ(AssetPath::directory("foo/bar/baz"), "foo/bar/");
EXPECT_EQ(AssetPath::directory("foo"), "");
EXPECT_EQ(AssetPath::directory("/foo"), "/");
EXPECT_EQ(AssetPath::filename(""), "");
EXPECT_EQ(AssetPath::filename("foo"), "foo");
EXPECT_EQ(AssetPath::filename("/foo"), "foo");
EXPECT_EQ(AssetPath::filename("/foo/"), "");
EXPECT_EQ(AssetPath::filename("/foo/bar"), "bar");
AssetPath compare = AssetPath{"/foo/bar/baz", String("baf"), {"whoa", "there"}};
EXPECT_EQ(AssetPath::split("/foo/bar/baz:baf?whoa?there"), compare);
EXPECT_EQ(
AssetPath::relativeTo("/foo/bar/baz:baf?whoa?there", "thing:sub?directive"), "/foo/bar/thing:sub?directive");
}