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
|
/*
* 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 "FileItem.h"
#include "filesystem/Directory.h"
#include "filesystem/IDirectory.h"
#include "filesystem/SpecialProtocol.h"
#include "test/TestUtils.h"
#include "utils/URIUtils.h"
#include <gtest/gtest.h>
TEST(TestDirectory, General)
{
std::string tmppath1, tmppath2, tmppath3;
CFileItemList items;
CFileItemPtr itemptr;
tmppath1 = CSpecialProtocol::TranslatePath("special://temp/");
tmppath1 = URIUtils::AddFileToFolder(tmppath1, "TestDirectory");
tmppath2 = tmppath1;
tmppath2 = URIUtils::AddFileToFolder(tmppath2, "subdir");
EXPECT_TRUE(XFILE::CDirectory::Create(tmppath1));
EXPECT_TRUE(XFILE::CDirectory::Exists(tmppath1));
EXPECT_FALSE(XFILE::CDirectory::Exists(tmppath2));
EXPECT_TRUE(XFILE::CDirectory::Create(tmppath2));
EXPECT_TRUE(XFILE::CDirectory::Exists(tmppath2));
EXPECT_TRUE(XFILE::CDirectory::GetDirectory(tmppath1, items, "", XFILE::DIR_FLAG_DEFAULTS));
XFILE::CDirectory::FilterFileDirectories(items, "");
tmppath3 = tmppath2;
URIUtils::AddSlashAtEnd(tmppath3);
itemptr = items[0];
EXPECT_STREQ(tmppath3.c_str(), itemptr->GetPath().c_str());
EXPECT_TRUE(XFILE::CDirectory::Remove(tmppath2));
EXPECT_FALSE(XFILE::CDirectory::Exists(tmppath2));
EXPECT_TRUE(XFILE::CDirectory::Exists(tmppath1));
EXPECT_TRUE(XFILE::CDirectory::Remove(tmppath1));
EXPECT_FALSE(XFILE::CDirectory::Exists(tmppath1));
}
TEST(TestDirectory, CreateRecursive)
{
auto path1 = URIUtils::AddFileToFolder(
CSpecialProtocol::TranslatePath("special://temp/"),
"level1");
auto path2 = URIUtils::AddFileToFolder(path1,
"level2",
"level3");
EXPECT_TRUE(XFILE::CDirectory::Create(path2));
EXPECT_TRUE(XFILE::CDirectory::RemoveRecursive(path1));
}
|