osb/source/test/assets_test.cpp
2023-06-26 11:58:35 -07:00

25 lines
945 B
C++

#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");
}