31 lines
731 B
C++
31 lines
731 B
C++
#include "archive/ArchiveLookup.hxx"
|
|
#include "util/Compiler.h"
|
|
|
|
#include <gtest/gtest.h>
|
|
|
|
#include <string.h>
|
|
#include <stdlib.h>
|
|
|
|
TEST(ArchiveTest, Lookup)
|
|
{
|
|
EXPECT_THROW(archive_lookup(""), std::system_error);
|
|
|
|
EXPECT_FALSE(archive_lookup("."));
|
|
|
|
EXPECT_FALSE(archive_lookup("config.h"));
|
|
|
|
EXPECT_THROW(archive_lookup("src/foo/bar"), std::system_error);
|
|
|
|
fclose(fopen("dummy", "w"));
|
|
|
|
auto result = archive_lookup("dummy/foo/bar");
|
|
EXPECT_TRUE(result);
|
|
EXPECT_STREQ(result.archive.c_str(), "dummy");
|
|
EXPECT_STREQ(result.inside.c_str(), "foo/bar");
|
|
|
|
result = archive_lookup("config.h/foo/bar");
|
|
EXPECT_TRUE(result);
|
|
EXPECT_STREQ(result.archive.c_str(), "config.h");
|
|
EXPECT_STREQ(result.inside.c_str(), "foo/bar");
|
|
}
|