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
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
|
/*
* 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 "ServiceBroker.h"
#include "filesystem/File.h"
#include "settings/AdvancedSettings.h"
#include "settings/Settings.h"
#include "settings/SettingsComponent.h"
#include "test/TestUtils.h"
#include "utils/StringUtils.h"
#include <gtest/gtest.h>
class TestFileFactory : public testing::Test
{
protected:
TestFileFactory()
{
std::vector<std::string> advancedsettings =
CXBMCTestUtils::Instance().getAdvancedSettingsFiles();
std::vector<std::string> guisettings =
CXBMCTestUtils::Instance().getGUISettingsFiles();
const std::shared_ptr<CSettings> settings = CServiceBroker::GetSettingsComponent()->GetSettings();
for (const auto& it : guisettings)
settings->Load(it);
const std::shared_ptr<CAdvancedSettings> advancedSettings = CServiceBroker::GetSettingsComponent()->GetAdvancedSettings();
for (const auto& it : advancedsettings)
advancedSettings->ParseSettingsFile(it);
settings->SetLoaded();
}
~TestFileFactory() override
{
CServiceBroker::GetSettingsComponent()->GetSettings()->Unload();
}
};
/* The tests for XFILE::CFileFactory are tested indirectly through
* XFILE::CFile. Since most parts of the VFS require some form of
* network connection, the settings and VFS URLs must be given as
* arguments in the main testsuite program.
*/
TEST_F(TestFileFactory, Read)
{
XFILE::CFile file;
std::string str;
ssize_t size, i;
unsigned char buf[16];
int64_t count = 0;
std::vector<std::string> urls =
CXBMCTestUtils::Instance().getTestFileFactoryReadUrls();
for (const auto& url : urls)
{
std::cout << "Testing URL: " << url << std::endl;
ASSERT_TRUE(file.Open(url));
std::cout << "file.GetLength(): " <<
testing::PrintToString(file.GetLength()) << std::endl;
std::cout << "file.Seek(file.GetLength() / 2, SEEK_CUR) return value: " <<
testing::PrintToString(file.Seek(file.GetLength() / 2, SEEK_CUR)) << std::endl;
std::cout << "file.Seek(0, SEEK_END) return value: " <<
testing::PrintToString(file.Seek(0, SEEK_END)) << std::endl;
std::cout << "file.Seek(0, SEEK_SET) return value: " <<
testing::PrintToString(file.Seek(0, SEEK_SET)) << std::endl;
std::cout << "File contents:" << std::endl;
while ((size = file.Read(buf, sizeof(buf))) > 0)
{
str = StringUtils::Format(" {:08X}", count);
std::cout << str << " ";
count += size;
for (i = 0; i < size; i++)
{
str = StringUtils::Format("{:02X} ", buf[i]);
std::cout << str;
}
while (i++ < static_cast<ssize_t> (sizeof(buf)))
std::cout << " ";
std::cout << " [";
for (i = 0; i < size; i++)
{
if (buf[i] >= ' ' && buf[i] <= '~')
std::cout << buf[i];
else
std::cout << ".";
}
std::cout << "]" << std::endl;
}
file.Close();
}
}
TEST_F(TestFileFactory, Write)
{
XFILE::CFile file, inputfile;
std::string str;
size_t size, i;
unsigned char buf[16];
int64_t count = 0;
str = CXBMCTestUtils::Instance().getTestFileFactoryWriteInputFile();
ASSERT_TRUE(inputfile.Open(str));
std::vector<std::string> urls =
CXBMCTestUtils::Instance().getTestFileFactoryWriteUrls();
for (const auto& url : urls)
{
std::cout << "Testing URL: " << url << std::endl;
std::cout << "Writing...";
ASSERT_TRUE(file.OpenForWrite(url, true));
while ((size = inputfile.Read(buf, sizeof(buf))) > 0)
{
EXPECT_GE(file.Write(buf, size), 0);
}
file.Close();
std::cout << "done." << std::endl;
std::cout << "Reading..." << std::endl;
ASSERT_TRUE(file.Open(url));
EXPECT_EQ(inputfile.GetLength(), file.GetLength());
std::cout << "file.Seek(file.GetLength() / 2, SEEK_CUR) return value: " <<
testing::PrintToString(file.Seek(file.GetLength() / 2, SEEK_CUR)) << std::endl;
std::cout << "file.Seek(0, SEEK_END) return value: " <<
testing::PrintToString(file.Seek(0, SEEK_END)) << std::endl;
std::cout << "file.Seek(0, SEEK_SET) return value: " <<
testing::PrintToString(file.Seek(0, SEEK_SET)) << std::endl;
std::cout << "File contents:\n";
while ((size = file.Read(buf, sizeof(buf))) > 0)
{
str = StringUtils::Format(" {:08X}", count);
std::cout << str << " ";
count += size;
for (i = 0; i < size; i++)
{
str = StringUtils::Format("{:02X} ", buf[i]);
std::cout << str;
}
while (i++ < sizeof(buf))
std::cout << " ";
std::cout << " [";
for (i = 0; i < size; i++)
{
if (buf[i] >= ' ' && buf[i] <= '~')
std::cout << buf[i];
else
std::cout << ".";
}
std::cout << "]" << std::endl;
}
file.Close();
}
inputfile.Close();
}
|