blob: 46a8c5f2b0c10ebae13de6c121dc77436bc4a2df (
plain) (
blame)
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
|
#include "fs.h"
#include "fs_win.h"
#include <library/cpp/testing/unittest/registar.h>
#include "fileapi.h"
#include "file.h"
#include "fstat.h"
#include "win_undef.h"
#include <util/charset/wide.h>
#include <util/folder/path.h>
#include <util/generic/string.h>
static void Touch(const TFsPath& path) {
TFile file(path, CreateAlways | WrOnly);
file.Write("1115", 4);
}
static LPCWSTR UTF8ToWCHAR(const TStringBuf str, TUtf16String& wstr) {
wstr.resize(str.size());
size_t written = 0;
if (!UTF8ToWide(str.data(), str.size(), wstr.begin(), written))
return nullptr;
wstr.erase(written);
static_assert(sizeof(WCHAR) == sizeof(wchar16), "expect sizeof(WCHAR) == sizeof(wchar16)");
return (const WCHAR*)wstr.data();
}
Y_UNIT_TEST_SUITE(TFsWinTest) {
Y_UNIT_TEST(TestRemoveDirWithROFiles) {
TFsPath dir1 = "dir1";
NFsPrivate::WinRemove(dir1);
UNIT_ASSERT(!NFsPrivate::WinExists(dir1));
UNIT_ASSERT(NFsPrivate::WinMakeDirectory(dir1));
UNIT_ASSERT(TFileStat(dir1).IsDir());
TFsPath file1 = dir1 / "file.txt";
Touch(file1);
UNIT_ASSERT(NFsPrivate::WinExists(file1));
{
TUtf16String wstr;
LPCWSTR wname = UTF8ToWCHAR(static_cast<const TString&>(file1), wstr);
UNIT_ASSERT(wname);
WIN32_FILE_ATTRIBUTE_DATA fad;
fad.dwFileAttributes = FILE_ATTRIBUTE_READONLY;
::SetFileAttributesW(wname, fad.dwFileAttributes);
}
NFsPrivate::WinRemove(dir1);
UNIT_ASSERT(!NFsPrivate::WinExists(dir1));
}
Y_UNIT_TEST(TestRemoveReadOnlyDir) {
TFsPath dir1 = "dir1";
NFsPrivate::WinRemove(dir1);
UNIT_ASSERT(!NFsPrivate::WinExists(dir1));
UNIT_ASSERT(NFsPrivate::WinMakeDirectory(dir1));
UNIT_ASSERT(TFileStat(dir1).IsDir());
{
TUtf16String wstr;
LPCWSTR wname = UTF8ToWCHAR(static_cast<const TString&>(dir1), wstr);
UNIT_ASSERT(wname);
WIN32_FILE_ATTRIBUTE_DATA fad;
fad.dwFileAttributes = FILE_ATTRIBUTE_READONLY;
::SetFileAttributesW(wname, fad.dwFileAttributes);
}
NFsPrivate::WinRemove(dir1);
UNIT_ASSERT(!NFsPrivate::WinExists(dir1));
}
}
|