2014-01-24 00:09:37 +01:00
|
|
|
#include "archive/ArchiveLookup.hxx"
|
2018-08-20 16:19:17 +02:00
|
|
|
#include "util/Compiler.h"
|
2013-10-17 00:19:22 +02:00
|
|
|
|
2018-10-16 19:01:13 +02:00
|
|
|
#include <gtest/gtest.h>
|
2013-10-17 00:19:22 +02:00
|
|
|
|
|
|
|
#include <string.h>
|
2013-11-05 17:28:23 +01:00
|
|
|
#include <stdlib.h>
|
2013-10-17 00:19:22 +02:00
|
|
|
|
2018-10-16 19:01:13 +02:00
|
|
|
TEST(ArchiveTest, Lookup)
|
2013-10-17 00:19:22 +02:00
|
|
|
{
|
|
|
|
char *path = strdup("");
|
2019-05-31 19:29:13 +02:00
|
|
|
EXPECT_THROW(archive_lookup(path), std::system_error);
|
2014-10-24 20:30:48 +02:00
|
|
|
free(path);
|
2013-10-17 00:19:22 +02:00
|
|
|
|
|
|
|
path = strdup(".");
|
2019-05-31 19:29:13 +02:00
|
|
|
EXPECT_FALSE(archive_lookup(path));
|
2014-10-24 20:30:48 +02:00
|
|
|
free(path);
|
2013-10-17 00:19:22 +02:00
|
|
|
|
|
|
|
path = strdup("config.h");
|
2019-05-31 19:29:13 +02:00
|
|
|
EXPECT_FALSE(archive_lookup(path));
|
2014-10-24 20:30:48 +02:00
|
|
|
free(path);
|
2013-10-17 00:19:22 +02:00
|
|
|
|
|
|
|
path = strdup("src/foo/bar");
|
2019-05-31 19:29:13 +02:00
|
|
|
EXPECT_THROW(archive_lookup(path), std::system_error);
|
2014-10-24 20:30:48 +02:00
|
|
|
free(path);
|
2013-10-17 00:19:22 +02:00
|
|
|
|
2017-12-29 17:12:55 +01:00
|
|
|
fclose(fopen("dummy", "w"));
|
|
|
|
|
|
|
|
path = strdup("dummy/foo/bar");
|
2019-05-31 19:29:13 +02:00
|
|
|
auto result = archive_lookup(path);
|
|
|
|
EXPECT_TRUE(result);
|
|
|
|
EXPECT_EQ((const char *)path, result.archive.c_str());
|
|
|
|
EXPECT_STREQ(result.archive.c_str(), "dummy");
|
|
|
|
EXPECT_STREQ(result.inside.c_str(), "foo/bar");
|
2014-10-24 20:30:48 +02:00
|
|
|
free(path);
|
2013-10-17 00:19:22 +02:00
|
|
|
|
|
|
|
path = strdup("config.h/foo/bar");
|
2019-05-31 19:29:13 +02:00
|
|
|
result = archive_lookup(path);
|
|
|
|
EXPECT_TRUE(result);
|
|
|
|
EXPECT_EQ((const char *)path, result.archive.c_str());
|
|
|
|
EXPECT_STREQ(result.archive.c_str(), "config.h");
|
|
|
|
EXPECT_STREQ(result.inside.c_str(), "foo/bar");
|
2014-10-24 20:30:48 +02:00
|
|
|
free(path);
|
2013-10-17 00:19:22 +02:00
|
|
|
}
|