2.0.0-rc (#9)
Some checks failed
BlockStorage/repertory_osx/pipeline/head This commit looks good
BlockStorage/repertory_windows/pipeline/head This commit looks good
BlockStorage/repertory/pipeline/head There was a failure building this commit
BlockStorage/repertory_linux_builds/pipeline/head This commit looks good
BlockStorage/repertory_osx_builds/pipeline/head There was a failure building this commit
Some checks failed
BlockStorage/repertory_osx/pipeline/head This commit looks good
BlockStorage/repertory_windows/pipeline/head This commit looks good
BlockStorage/repertory/pipeline/head There was a failure building this commit
BlockStorage/repertory_linux_builds/pipeline/head This commit looks good
BlockStorage/repertory_osx_builds/pipeline/head There was a failure building this commit
### Issues * \#1 \[bug\] Unable to mount S3 due to 'item_not_found' exception * \#2 Require bucket name for S3 mounts * \#3 \[bug\] File size is not being updated in S3 mount * \#4 Upgrade to libfuse-3.x.x * \#5 Switch to renterd for Sia support * \#6 Switch to cpp-httplib to further reduce dependencies * \#7 Remove global_data and calculate used disk space per provider * \#8 Switch to libcurl for S3 mount support ### Changes from v1.x.x * Added read-only encrypt provider * Pass-through mount point that transparently encrypts source data using `XChaCha20-Poly1305` * Added S3 encryption support via `XChaCha20-Poly1305` * Added replay protection to remote mounts * Added support base64 writes in remote FUSE * Created static linked Linux binaries for `amd64` and `aarch64` using `musl-libc` * Removed legacy Sia renter support * Removed Skynet support * Fixed multiple remote mount WinFSP API issues on \*NIX servers * Implemented chunked read and write * Writes for non-cached files are performed in chunks of 8Mib * Removed `repertory-ui` support * Removed `FreeBSD` support * Switched to `libsodium` over `CryptoPP` * Switched to `XChaCha20-Poly1305` for remote mounts * Updated `GoogleTest` to v1.14.0 * Updated `JSON for Modern C++` to v3.11.2 * Updated `OpenSSL` to v1.1.1w * Updated `RocksDB` to v8.5.3 * Updated `WinFSP` to 2023 * Updated `boost` to v1.78.0 * Updated `cURL` to v8.3.0 * Updated `zlib` to v1.3 * Use `upload_manager` for all providers * Adds a delay to uploads to prevent excessive API calls * Supports re-upload after mount restart for incomplete uploads * NOTE: Uploads for all providers are full file (no resume support) * Multipart upload support is planned for S3 Reviewed-on: #9
This commit is contained in:
@@ -1,25 +1,29 @@
|
||||
/*
|
||||
Copyright <2018-2022> <scott.e.graves@protonmail.com>
|
||||
Copyright <2018-2023> <scott.e.graves@protonmail.com>
|
||||
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy of this software and
|
||||
associated documentation files (the "Software"), to deal in the Software without restriction,
|
||||
including without limitation the rights to use, copy, modify, merge, publish, distribute,
|
||||
sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is
|
||||
Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
of this software and associated documentation files (the "Software"), to deal
|
||||
in the Software without restriction, including without limitation the rights
|
||||
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
copies of the Software, and to permit persons to whom the Software is
|
||||
furnished to do so, subject to the following conditions:
|
||||
|
||||
The above copyright notice and this permission notice shall be included in all copies or
|
||||
substantial portions of the Software.
|
||||
The above copyright notice and this permission notice shall be included in all
|
||||
copies or substantial portions of the Software.
|
||||
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT
|
||||
NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND
|
||||
NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM,
|
||||
DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT
|
||||
OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
|
||||
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
SOFTWARE.
|
||||
*/
|
||||
#include "test_common.hpp"
|
||||
|
||||
#include "drives/winfsp/i_winfsp_drive.hpp"
|
||||
#include "drives/winfsp/remotewinfsp/remote_client.hpp"
|
||||
#include "events/consumers/console_consumer.hpp"
|
||||
#include "test_common.hpp"
|
||||
#ifdef _WIN32
|
||||
#include "drives/winfsp/remotewinfsp/remote_server.hpp"
|
||||
#include "mocks/mock_winfsp_drive.hpp"
|
||||
@@ -27,6 +31,7 @@
|
||||
#include "drives/fuse/remotefuse/remote_server.hpp"
|
||||
#include "mocks/mock_fuse_drive.hpp"
|
||||
#endif
|
||||
#include "types/repertory.hpp"
|
||||
#include "utils/utils.hpp"
|
||||
|
||||
using namespace repertory;
|
||||
@@ -37,138 +42,153 @@ static std::string mount_location_;
|
||||
|
||||
static void can_delete_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/candelete.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
native_file::native_file_ptr nf;
|
||||
native_file::create_or_open(test_file, nf);
|
||||
EXPECT_EQ(api_error::success, native_file::create_or_open(test_file, nf));
|
||||
EXPECT_TRUE(nf);
|
||||
if (nf) {
|
||||
EXPECT_EQ(STATUS_INVALID_HANDLE,
|
||||
client.winfsp_can_delete(reinterpret_cast<PVOID>(nf->get_handle()), &api_path[0]));
|
||||
client.winfsp_can_delete(
|
||||
reinterpret_cast<PVOID>(nf->get_handle()), &api_path[0]));
|
||||
|
||||
nf->close();
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
}
|
||||
|
||||
static void create_and_close_test(remote_client &client) {
|
||||
template <typename t>
|
||||
static void create_and_close_test(remote_client &client, t &server) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/create.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
const auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
const auto ret = client.winfsp_create(
|
||||
&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(1u, client.get_open_file_count(utils::string::to_utf8(api_path)));
|
||||
EXPECT_EQ(1u, server.get_open_file_count(test_file));
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
EXPECT_EQ(0u, client.get_open_file_count(utils::string::to_utf8(api_path)));
|
||||
EXPECT_EQ(0u, server.get_open_file_count(test_file));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void cleanup_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/cleanup.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
BOOLEAN was_closed = 0;
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_cleanup(file_desc, &api_path[0], 0, was_closed));
|
||||
BOOLEAN was_closed = 0u;
|
||||
EXPECT_EQ(STATUS_SUCCESS,
|
||||
client.winfsp_cleanup(file_desc, &api_path[0], 0, was_closed));
|
||||
EXPECT_FALSE(was_closed);
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void flush_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/flush.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_flush(file_desc, &fi));
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void get_file_info_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/getfileinfo.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_get_file_info(file_desc, &fi));
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void get_security_by_name_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/getsecuritybyname.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
const auto test_file =
|
||||
utils::path::absolute("./win_remote/getsecuritybyname.txt");
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
UINT32 attributes = 0;
|
||||
UINT32 attributes = 0u;
|
||||
std::uint64_t securityDescriptorSize = 1024;
|
||||
std::wstring strDescriptor;
|
||||
ret = client.winfsp_get_security_by_name(&api_path[0], &attributes, &securityDescriptorSize,
|
||||
strDescriptor);
|
||||
ret = client.winfsp_get_security_by_name(
|
||||
&api_path[0], &attributes, &securityDescriptorSize, strDescriptor);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(FILE_ATTRIBUTE_NORMAL, attributes);
|
||||
EXPECT_EQ(static_cast<UINT32>(FILE_ATTRIBUTE_NORMAL), attributes);
|
||||
EXPECT_FALSE(strDescriptor.empty());
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void get_volume_info_test(remote_client &client) {
|
||||
UINT64 total_size = 0u;
|
||||
UINT64 free_size = 0u;
|
||||
std::string volume_label;
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_get_volume_info(total_size, free_size, volume_label));
|
||||
EXPECT_EQ(100, free_size);
|
||||
EXPECT_EQ(200, total_size);
|
||||
EXPECT_STREQ(&volume_label[0], "TestVolumeLabel");
|
||||
EXPECT_EQ(STATUS_SUCCESS,
|
||||
client.winfsp_get_volume_info(total_size, free_size, volume_label));
|
||||
EXPECT_EQ(100u, free_size);
|
||||
EXPECT_EQ(200u, total_size);
|
||||
EXPECT_STREQ(volume_label.c_str(), "TestVolumeLabel");
|
||||
}
|
||||
|
||||
static void mounted_test(remote_client &client) {
|
||||
@@ -178,73 +198,79 @@ static void mounted_test(remote_client &client) {
|
||||
|
||||
static void open_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/open.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
PVOID file_desc2 = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
{
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL,
|
||||
0, &file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(
|
||||
&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
}
|
||||
{
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
const auto ret = client.winfsp_open(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, &file_desc2,
|
||||
&fi, normalized_name);
|
||||
const auto ret =
|
||||
client.winfsp_open(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
&file_desc2, &fi, normalized_name);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
}
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc2));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void overwrite_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/overwrite.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
const UINT32 attributes = FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_ARCHIVE;
|
||||
const BOOLEAN replace_attributes = 0;
|
||||
const UINT64 allocation_size = 0;
|
||||
ret = client.winfsp_overwrite(file_desc, attributes, replace_attributes, allocation_size, &fi);
|
||||
const BOOLEAN replace_attributes = 0u;
|
||||
const UINT64 allocation_size = 0u;
|
||||
ret = client.winfsp_overwrite(file_desc, attributes, replace_attributes,
|
||||
allocation_size, &fi);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(0, fi.FileSize);
|
||||
EXPECT_EQ(0u, fi.FileSize);
|
||||
EXPECT_EQ(attributes, fi.FileAttributes);
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void create_and_read_directory_test(remote_client &client) {
|
||||
const auto test_directory = utils::path::absolute("./win_remote/readdirectory");
|
||||
utils::file::delete_directory(test_directory);
|
||||
auto api_path = utils::string::from_utf8(test_directory).substr(mount_location_.size());
|
||||
const auto test_directory =
|
||||
utils::path::absolute("./win_remote/readdirectory");
|
||||
EXPECT_TRUE(utils::file::delete_directory(test_directory));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_directory).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], FILE_DIRECTORY_FILE, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_DIRECTORY, 0, &file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(
|
||||
&api_path[0], FILE_DIRECTORY_FILE, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_DIRECTORY, 0, &file_desc, &fi, normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
EXPECT_TRUE(utils::file::is_directory(test_directory));
|
||||
@@ -252,25 +278,27 @@ static void create_and_read_directory_test(remote_client &client) {
|
||||
json list;
|
||||
ret = client.winfsp_read_directory(file_desc, nullptr, nullptr, list);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(2, list.size());
|
||||
EXPECT_EQ(2u, list.size());
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_directory(test_directory);
|
||||
EXPECT_TRUE(utils::file::delete_directory(test_directory));
|
||||
}
|
||||
|
||||
static void open_and_read_directory_test(remote_client &client) {
|
||||
const auto test_directory = utils::path::absolute("./win_remote/openreaddirectory");
|
||||
utils::file::delete_directory(test_directory);
|
||||
auto api_path = utils::string::from_utf8(test_directory).substr(mount_location_.size());
|
||||
const auto test_directory =
|
||||
utils::path::absolute("./win_remote/openreaddirectory");
|
||||
EXPECT_TRUE(utils::file::delete_directory(test_directory));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_directory).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], FILE_DIRECTORY_FILE, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_DIRECTORY, 0, &file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(
|
||||
&api_path[0], FILE_DIRECTORY_FILE, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_DIRECTORY, 0, &file_desc, &fi, normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
@@ -278,48 +306,52 @@ static void open_and_read_directory_test(remote_client &client) {
|
||||
EXPECT_TRUE(utils::file::is_directory(test_directory));
|
||||
|
||||
file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
ret = client.winfsp_open(&api_path[0], FILE_DIRECTORY_FILE, GENERIC_READ | GENERIC_WRITE,
|
||||
&file_desc, &fi, normalized_name);
|
||||
ret = client.winfsp_open(&api_path[0], FILE_DIRECTORY_FILE,
|
||||
GENERIC_READ | GENERIC_WRITE, &file_desc, &fi,
|
||||
normalized_name);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
json item_list;
|
||||
ret = client.winfsp_read_directory(file_desc, nullptr, nullptr, item_list);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(2, item_list.size());
|
||||
EXPECT_EQ(2u, item_list.size());
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_directory(test_directory);
|
||||
EXPECT_TRUE(utils::file::delete_directory(test_directory));
|
||||
}
|
||||
|
||||
static void read_and_write_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/readwrite.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
std::vector<char> buffer;
|
||||
data_buffer buffer;
|
||||
buffer.emplace_back('T');
|
||||
buffer.emplace_back('e');
|
||||
buffer.emplace_back('s');
|
||||
buffer.emplace_back('t');
|
||||
UINT32 bytes_transferred = 0;
|
||||
ret = client.winfsp_write(file_desc, &buffer[0], 0, static_cast<UINT32>(buffer.size()), 0, 0,
|
||||
UINT32 bytes_transferred = 0u;
|
||||
ret = client.winfsp_write(file_desc, &buffer[0], 0,
|
||||
static_cast<UINT32>(buffer.size()), 0, 0,
|
||||
&bytes_transferred, &fi);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(buffer.size(), bytes_transferred);
|
||||
|
||||
std::vector<char> buffer2(buffer.size());
|
||||
UINT32 bytes_transferred2 = 0;
|
||||
ret = client.winfsp_read(file_desc, &buffer2[0], 0, static_cast<UINT32>(buffer2.size()),
|
||||
data_buffer buffer2(buffer.size());
|
||||
UINT32 bytes_transferred2 = 0u;
|
||||
ret = client.winfsp_read(file_desc, &buffer2[0], 0,
|
||||
static_cast<UINT32>(buffer2.size()),
|
||||
&bytes_transferred2);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
EXPECT_EQ(bytes_transferred, bytes_transferred2);
|
||||
@@ -327,24 +359,26 @@ static void read_and_write_test(remote_client &client) {
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void rename_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/rename.txt");
|
||||
const auto test_file2 = utils::path::absolute("./win_remote/rename2.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
utils::file::delete_file(test_file2);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
auto api_path2 = utils::string::from_utf8(test_file2).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file2));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
auto api_path2 =
|
||||
utils::string::from_utf8(test_file2).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
ret = client.winfsp_rename(file_desc, &api_path[0], &api_path2[0], 0);
|
||||
@@ -354,23 +388,24 @@ static void rename_test(remote_client &client) {
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
utils::file::delete_file(test_file2);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file2));
|
||||
}
|
||||
|
||||
static void set_basic_info_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/setbasicinfo.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
const auto attributes = FILE_ATTRIBUTE_HIDDEN | FILE_ATTRIBUTE_ARCHIVE;
|
||||
@@ -386,16 +421,18 @@ static void set_basic_info_test(remote_client &client) {
|
||||
const auto last_write_time = ft.QuadPart + 2;
|
||||
const auto change_time = last_write_time;
|
||||
#else
|
||||
const auto creation_time = utils::unix_time_to_windows_time(utils::get_time_now());
|
||||
const auto creation_time =
|
||||
utils::unix_time_to_windows_time(utils::get_time_now());
|
||||
const auto last_access_time = creation_time + 1;
|
||||
const auto last_write_time = creation_time + 2;
|
||||
const auto change_time = last_write_time;
|
||||
#endif
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS,
|
||||
client.winfsp_set_basic_info(file_desc, attributes, creation_time, last_access_time,
|
||||
last_write_time, change_time, &fi));
|
||||
EXPECT_EQ(attributes, fi.FileAttributes);
|
||||
client.winfsp_set_basic_info(file_desc, attributes, creation_time,
|
||||
last_access_time, last_write_time,
|
||||
change_time, &fi));
|
||||
EXPECT_EQ(static_cast<std::uint32_t>(attributes), fi.FileAttributes);
|
||||
EXPECT_EQ(creation_time, fi.CreationTime);
|
||||
EXPECT_EQ(last_access_time, fi.LastAccessTime);
|
||||
EXPECT_EQ(last_write_time, fi.LastWriteTime);
|
||||
@@ -403,35 +440,37 @@ static void set_basic_info_test(remote_client &client) {
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void set_file_size_test(remote_client &client) {
|
||||
const auto test_file = utils::path::absolute("./win_remote/setfilesize.txt");
|
||||
utils::file::delete_file(test_file);
|
||||
auto api_path = utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
auto api_path =
|
||||
utils::string::from_utf8(test_file).substr(mount_location_.size());
|
||||
|
||||
PVOID file_desc = reinterpret_cast<PVOID>(REPERTORY_INVALID_HANDLE);
|
||||
remote::file_info fi{};
|
||||
std::string normalized_name;
|
||||
BOOLEAN exists = 0;
|
||||
auto ret =
|
||||
client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE, FILE_ATTRIBUTE_NORMAL, 0,
|
||||
&file_desc, &fi, normalized_name, exists);
|
||||
BOOLEAN exists = 0u;
|
||||
auto ret = client.winfsp_create(&api_path[0], 0, GENERIC_READ | GENERIC_WRITE,
|
||||
FILE_ATTRIBUTE_NORMAL, 0, &file_desc, &fi,
|
||||
normalized_name, exists);
|
||||
EXPECT_EQ(STATUS_SUCCESS, ret);
|
||||
|
||||
const UINT64 new_file_size = 34;
|
||||
const BOOLEAN set_allocation_size = 0;
|
||||
const UINT64 new_file_size = 34u;
|
||||
const BOOLEAN set_allocation_size = 0u;
|
||||
EXPECT_EQ(STATUS_SUCCESS,
|
||||
client.winfsp_set_file_size(file_desc, new_file_size, set_allocation_size, &fi));
|
||||
client.winfsp_set_file_size(file_desc, new_file_size,
|
||||
set_allocation_size, &fi));
|
||||
|
||||
std::uint64_t file_size = 0;
|
||||
utils::file::get_file_size(test_file, file_size);
|
||||
EXPECT_EQ(34, file_size);
|
||||
std::uint64_t file_size = 0u;
|
||||
EXPECT_TRUE(utils::file::get_file_size(test_file, file_size));
|
||||
EXPECT_EQ(34u, file_size);
|
||||
|
||||
EXPECT_EQ(STATUS_SUCCESS, client.winfsp_close(file_desc));
|
||||
|
||||
utils::file::delete_file(test_file);
|
||||
EXPECT_TRUE(utils::file::retry_delete_file(test_file));
|
||||
}
|
||||
|
||||
static void unmounted_test(remote_client &client) {
|
||||
@@ -441,7 +480,7 @@ static void unmounted_test(remote_client &client) {
|
||||
|
||||
TEST(remote_winfsp, all_tests) {
|
||||
std::uint16_t port = 0;
|
||||
const auto found_port = utils::get_next_available_port(20000u, port);
|
||||
const auto found_port = utils::get_next_available_port(20020u, port);
|
||||
EXPECT_TRUE(found_port);
|
||||
if (found_port) {
|
||||
console_consumer c;
|
||||
@@ -463,12 +502,14 @@ TEST(remote_winfsp, all_tests) {
|
||||
mock_fuse_drive drive(mount_location_);
|
||||
remote_fuse::remote_server server(config, drive, mount_location_);
|
||||
#endif
|
||||
std::this_thread::sleep_for(2s);
|
||||
|
||||
std::thread([&]() {
|
||||
remote_client client(config);
|
||||
|
||||
can_delete_test(client);
|
||||
cleanup_test(client);
|
||||
create_and_close_test(client);
|
||||
create_and_close_test(client, server);
|
||||
create_and_read_directory_test(client);
|
||||
flush_test(client);
|
||||
get_file_info_test(client);
|
||||
@@ -487,6 +528,6 @@ TEST(remote_winfsp, all_tests) {
|
||||
}
|
||||
|
||||
event_system::instance().stop();
|
||||
utils::file::delete_directory_recursively("./win_remote");
|
||||
EXPECT_TRUE(utils::file::delete_directory_recursively("./win_remote"));
|
||||
}
|
||||
} // namespace winfsp_test
|
||||
|
Reference in New Issue
Block a user