1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84
|
/*
* Copyright (C) 2005-2018 Team Kodi
* This file is part of Kodi - https://kodi.tv
*
* SPDX-License-Identifier: GPL-2.0-or-later
* See LICENSES/README.md for more information.
*/
#include "URL.h"
#include "filesystem/NFSFile.h"
#include "test/TestUtils.h"
#include <errno.h>
#include <string>
#include <gtest/gtest.h>
using ::testing::Test;
using ::testing::WithParamInterface;
using ::testing::ValuesIn;
struct SplitPath
{
std::string url;
std::string exportPath;
std::string relativePath;
bool expectedResultExport;
bool expectedResultPath;
} g_TestData[] = {
{"nfs://192.168.0.1:2049/srv/test/tvmedia/foo.txt", "/srv/test", "//tvmedia/foo.txt", true, true},
{"nfs://192.168.0.1/srv/test/tv/media/foo.txt", "/srv/test/tv", "//media/foo.txt", true, true},
{"nfs://192.168.0.1:2049/srv/test/tvmedia", "/srv/test", "//tvmedia", true, true},
{"nfs://192.168.0.1:2049/srv/test/tvmedia/", "/srv/test", "//tvmedia/", true, true},
{"nfs://192.168.0.1:2049/srv/test/tv/media", "/srv/test/tv", "//media", true, true},
{"nfs://192.168.0.1:2049/srv/test/tv/media/", "/srv/test/tv", "//media/", true, true},
{"nfs://192.168.0.1:2049/srv/test/tv", "/srv/test/tv", "//", true, true},
{"nfs://192.168.0.1:2049/srv/test/", "/srv/test", "//", true, true},
{"nfs://192.168.0.1:2049/", "/", "//", true, true},
{"nfs://192.168.0.1:2049/notexported/foo.txt", "/", "//notexported/foo.txt", true, true},
{"nfs://192.168.0.1:2049/notexported/foo.txt", "/notexported", "//foo.txt", false, false},
};
class TestNfs : public Test,
public WithParamInterface<SplitPath>
{
};
class ExportList
{
public:
std::list<std::string> data;
ExportList()
{
data.emplace_back("/srv/test");
data.emplace_back("/srv/test/tv");
data.emplace_back("/");
data.sort();
data.reverse();
}
};
static ExportList exportList;
TEST_P(TestNfs, splitUrlIntoExportAndPath)
{
CURL url(GetParam().url);
std::string exportPath;
std::string relativePath;
gNfsConnection.splitUrlIntoExportAndPath(url, exportPath, relativePath, exportList.data);
if (GetParam().expectedResultExport)
EXPECT_STREQ(GetParam().exportPath.c_str(), exportPath.c_str());
else
EXPECT_STRNE(GetParam().exportPath.c_str(), exportPath.c_str());
if (GetParam().expectedResultPath)
EXPECT_STREQ(GetParam().relativePath.c_str(), relativePath.c_str());
else
EXPECT_STRNE(GetParam().relativePath.c_str(), relativePath.c_str());
}
INSTANTIATE_TEST_SUITE_P(NfsFile, TestNfs, ValuesIn(g_TestData));
|