1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
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");
}
|