mpd/test/test_archive.cxx

47 lines
1.1 KiB
C++
Raw Normal View History

2014-01-24 00:09:37 +01:00
#include "archive/ArchiveLookup.hxx"
2018-08-20 16:19:17 +02:00
#include "util/Compiler.h"
2018-10-16 19:01:13 +02:00
#include <gtest/gtest.h>
#include <string.h>
#include <stdlib.h>
2018-10-16 19:01:13 +02:00
TEST(ArchiveTest, Lookup)
{
2013-10-17 00:35:58 +02:00
const char *archive, *inpath, *suffix;
char *path = strdup("");
2018-10-16 19:01:13 +02:00
EXPECT_FALSE(archive_lookup(path, &archive, &inpath, &suffix));
2014-10-24 20:30:48 +02:00
free(path);
path = strdup(".");
2018-10-16 19:01:13 +02:00
EXPECT_FALSE(archive_lookup(path, &archive, &inpath, &suffix));
2014-10-24 20:30:48 +02:00
free(path);
path = strdup("config.h");
2018-10-16 19:01:13 +02:00
EXPECT_FALSE(archive_lookup(path, &archive, &inpath, &suffix));
2014-10-24 20:30:48 +02:00
free(path);
path = strdup("src/foo/bar");
2018-10-16 19:01:13 +02:00
EXPECT_FALSE(archive_lookup(path, &archive, &inpath, &suffix));
2014-10-24 20:30:48 +02:00
free(path);
fclose(fopen("dummy", "w"));
path = strdup("dummy/foo/bar");
2018-10-16 19:01:13 +02:00
EXPECT_TRUE(archive_lookup(path, &archive, &inpath, &suffix));
EXPECT_EQ((const char *)path, archive);
EXPECT_STREQ(archive, "dummy");
EXPECT_STREQ(inpath, "foo/bar");
EXPECT_EQ((const char *)nullptr, suffix);
2014-10-24 20:30:48 +02:00
free(path);
path = strdup("config.h/foo/bar");
2018-10-16 19:01:13 +02:00
EXPECT_TRUE(archive_lookup(path, &archive, &inpath, &suffix));
EXPECT_EQ((const char *)path, archive);
EXPECT_STREQ(archive, "config.h");
EXPECT_STREQ(inpath, "foo/bar");
EXPECT_STREQ(suffix, "h");
2014-10-24 20:30:48 +02:00
free(path);
}