Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-winehq
Commits
cbc1e442
Commit
cbc1e442
authored
May 01, 2023
by
Joel Holdsworth
Committed by
Alexandre Julliard
Jun 27, 2023
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ntdll/tests: Add tests for FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE.
Signed-off-by:
Joel Holdsworth
<
joel@airwebreathe.org.uk
>
parent
cc1d0e49
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
22 additions
and
0 deletions
+22
-0
file.c
dlls/ntdll/tests/file.c
+22
-0
No files found.
dlls/ntdll/tests/file.c
View file @
cbc1e442
...
...
@@ -2957,6 +2957,7 @@ static void test_file_disposition_information(void)
NTSTATUS
res
;
IO_STATUS_BLOCK
io
;
FILE_DISPOSITION_INFORMATION
fdi
;
FILE_DISPOSITION_INFORMATION_EX
fdie
;
FILE_STANDARD_INFORMATION
fsi
;
BOOL
fileDeleted
;
DWORD
fdi2
,
size
;
...
...
@@ -3089,6 +3090,27 @@ static void test_file_disposition_information(void)
SetFileAttributesA
(
buffer
,
FILE_ATTRIBUTE_NORMAL
);
DeleteFileA
(
buffer
);
/* set disposition on readonly file ignoring readonly attribute */
/* FileDispositionInformationEx is only supported on Windows 10 build 1809 and later */
GetTempFileNameA
(
tmp_path
,
"dis"
,
0
,
buffer
);
DeleteFileA
(
buffer
);
handle
=
CreateFileA
(
buffer
,
GENERIC_WRITE
|
DELETE
,
0
,
NULL
,
CREATE_ALWAYS
,
FILE_ATTRIBUTE_READONLY
,
0
);
ok
(
handle
!=
INVALID_HANDLE_VALUE
,
"failed to create temp file
\n
"
);
fdie
.
Flags
=
FILE_DISPOSITION_DELETE
|
FILE_DISPOSITION_IGNORE_READONLY_ATTRIBUTE
;
res
=
pNtSetInformationFile
(
handle
,
&
io
,
&
fdie
,
sizeof
fdie
,
FileDispositionInformationEx
);
todo_wine
ok
(
res
==
STATUS_SUCCESS
||
broken
(
res
==
STATUS_INVALID_INFO_CLASS
),
"unexpected FileDispositionInformationEx result (expected STATUS_SUCCESS or SSTATUS_INVALID_INFO_CLASS, got %lx)
\n
"
,
res
);
CloseHandle
(
handle
);
if
(
res
==
STATUS_SUCCESS
)
{
fileDeleted
=
GetFileAttributesA
(
buffer
)
==
INVALID_FILE_ATTRIBUTES
&&
GetLastError
()
==
ERROR_FILE_NOT_FOUND
;
todo_wine
ok
(
fileDeleted
,
"File should have been deleted
\n
"
);
}
SetFileAttributesA
(
buffer
,
FILE_ATTRIBUTE_NORMAL
);
DeleteFileA
(
buffer
);
/* can set disposition on file and then reset it */
GetTempFileNameA
(
tmp_path
,
"dis"
,
0
,
buffer
);
handle
=
CreateFileA
(
buffer
,
GENERIC_WRITE
|
DELETE
,
0
,
NULL
,
CREATE_ALWAYS
,
0
,
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment