forked from TestableIO/System.IO.Abstractions
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockFileCreateTests.cs
More file actions
305 lines (245 loc) · 10.1 KB
/
MockFileCreateTests.cs
File metadata and controls
305 lines (245 loc) · 10.1 KB
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
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
namespace System.IO.Abstractions.TestingHelpers.Tests
{
using Collections.Generic;
using Globalization;
using NUnit.Framework;
using Text;
using XFS = MockUnixSupport;
public class MockFileCreateTests
{
[Test]
public void Mockfile_Create_ShouldCreateNewStream()
{
string fullPath = XFS.Path(@"c:\something\demo.txt");
var fileSystem = new MockFileSystem();
fileSystem.AddDirectory(XFS.Path(@"c:\something"));
var sut = new MockFile(fileSystem);
Assert.That(fileSystem.FileExists(fullPath), Is.False);
sut.Create(fullPath).Dispose();
Assert.That(fileSystem.FileExists(fullPath), Is.True);
}
[Test]
public void Mockfile_Create_CanWriteToNewStream()
{
string fullPath = XFS.Path(@"c:\something\demo.txt");
var fileSystem = new MockFileSystem();
fileSystem.AddDirectory(XFS.Path(@"c:\something"));
var data = new UTF8Encoding(false).GetBytes("Test string");
var sut = new MockFile(fileSystem);
using (var stream = sut.Create(fullPath))
{
stream.Write(data, 0, data.Length);
}
var mockFileData = fileSystem.GetFile(fullPath);
var fileData = mockFileData.Contents;
Assert.That(fileData, Is.EqualTo(data));
}
[Test]
public void Mockfile_Create_OverwritesExistingFile()
{
string path = XFS.Path(@"c:\some\file.txt");
var fileSystem = new MockFileSystem();
fileSystem.AddDirectory(XFS.Path(@"c:\some"));
var mockFile = new MockFile(fileSystem);
// Create a file
using (var stream = mockFile.Create(path))
{
var contents = new UTF8Encoding(false).GetBytes("Test 1");
stream.Write(contents, 0, contents.Length);
}
// Create new file that should overwrite existing file
var expectedContents = new UTF8Encoding(false).GetBytes("Test 2");
using (var stream = mockFile.Create(path))
{
stream.Write(expectedContents, 0, expectedContents.Length);
}
var actualContents = fileSystem.GetFile(path).Contents;
Assert.That(actualContents, Is.EqualTo(expectedContents));
}
[Test]
public void Mockfile_Create_ShouldThrowUnauthorizedAccessExceptionIfPathIsReadOnly()
{
// Arrange
string path = XFS.Path(@"c:\something\read-only.txt");
var fileSystem = new MockFileSystem(new Dictionary<string, MockFileData> { { path, new MockFileData("Content") } });
var mockFile = new MockFile(fileSystem);
// Act
mockFile.SetAttributes(path, FileAttributes.ReadOnly);
// Assert
var exception = Assert.Throws<UnauthorizedAccessException>(() => mockFile.Create(path).Dispose());
Assert.That(exception.Message, Is.EqualTo(string.Format(CultureInfo.InvariantCulture, "Access to the path '{0}' is denied.", path)));
}
[Test]
public void Mockfile_Create_ShouldThrowArgumentExceptionIfPathIsZeroLength()
{
// Arrange
var fileSystem = new MockFileSystem();
// Act
TestDelegate action = () => fileSystem.File.Create("");
// Assert
Assert.Throws<ArgumentException>(action);
}
[TestCase("\"")]
[TestCase("<")]
[TestCase(">")]
[TestCase("|")]
[WindowsOnly(WindowsSpecifics.StrictPathRules)]
public void MockFile_Create_ShouldThrowArgumentNullExceptionIfPathIsNull1(string path)
{
// Arrange
var fileSystem = new MockFileSystem();
// Act
TestDelegate action = () => fileSystem.File.Create(path);
// Assert
Assert.Throws<ArgumentException>(action);
}
[TestCase(" ")]
[TestCase(" ")]
public void MockFile_Create_ShouldThrowArgumentExceptionIfPathContainsOnlyWhitespaces(string path)
{
// Arrange
var fileSystem = new MockFileSystem();
// Act
TestDelegate action = () => fileSystem.File.Create(path);
// Assert
Assert.Throws<ArgumentException>(action);
}
[Test]
public void MockFile_Create_ShouldThrowArgumentNullExceptionIfPathIsNull()
{
// Arrange
var fileSystem = new MockFileSystem();
// Act
TestDelegate action = () => fileSystem.File.Create(null);
// Assert
var exception = Assert.Throws<ArgumentNullException>(action);
Assert.That(exception.Message, Does.StartWith("Path cannot be null."));
}
[Test]
public void MockFile_Create_ShouldThrowDirectoryNotFoundExceptionIfCreatingAndParentPathDoesNotExist()
{
// Arrange
var fileSystem = new MockFileSystem();
var file = XFS.Path("C:\\path\\NotFound.ext");
// Act
TestDelegate action = () => fileSystem.File.Create(file);
// Assert
var exception = Assert.Throws<DirectoryNotFoundException>(action);
Assert.That(exception.Message, Does.StartWith("Could not find a part of the path"));
}
[Test]
public void MockFile_Create_TruncateShouldWriteNewContents()
{
// Arrange
string testFileName = XFS.Path(@"c:\someFile.txt");
var fileSystem = new MockFileSystem();
using (var stream = fileSystem.FileStream.Create(testFileName, FileMode.Create, FileAccess.Write))
{
using (var writer = new StreamWriter(stream))
{
writer.Write("original_text");
}
}
// Act
using (var stream = fileSystem.FileStream.Create(testFileName, FileMode.Truncate, FileAccess.Write))
{
using (var writer = new StreamWriter(stream))
{
writer.Write("new_text");
}
}
// Assert
Assert.That(fileSystem.File.ReadAllText(testFileName), Is.EqualTo("new_text"));
}
[Test]
public void MockFile_Create_TruncateShouldClearFileContentsOnOpen()
{
// Arrange
string testFileName = XFS.Path(@"c:\someFile.txt");
var fileSystem = new MockFileSystem();
using (var stream = fileSystem.FileStream.Create(testFileName, FileMode.Create, FileAccess.Write))
{
using (var writer = new StreamWriter(stream))
{
writer.Write("original_text");
}
}
// Act
using (var stream = fileSystem.FileStream.Create(testFileName, FileMode.Truncate, FileAccess.Write))
{
// Opening the stream is enough to reset the contents
}
// Assert
Assert.That(fileSystem.File.ReadAllText(testFileName), Is.EqualTo(string.Empty));
}
[Test]
public void MockFile_Create_DeleteOnCloseOption_FileExistsWhileStreamIsOpen()
{
var root = XFS.Path(@"C:\");
var filePath = XFS.Path(@"C:\test.txt");
var fileSystem = new MockFileSystem();
fileSystem.Directory.CreateDirectory(root);
using (fileSystem.File.Create(filePath, 4096, FileOptions.DeleteOnClose))
{
Assert.IsTrue(fileSystem.File.Exists(filePath));
}
}
[Test]
public void MockFile_Create_DeleteOnCloseOption_FileDeletedWhenStreamIsClosed()
{
var root = XFS.Path(@"C:\");
var filePath = XFS.Path(@"C:\test.txt");
var fileSystem = new MockFileSystem();
fileSystem.Directory.CreateDirectory(root);
using (fileSystem.File.Create(filePath, 4096, FileOptions.DeleteOnClose))
{
}
Assert.IsFalse(fileSystem.File.Exists(filePath));
}
[Test]
public void MockFile_Create_EncryptedOption_FileNotYetEncryptedsWhenStreamIsOpen()
{
var root = XFS.Path(@"C:\");
var filePath = XFS.Path(@"C:\test.txt");
var fileSystem = new MockFileSystem();
fileSystem.Directory.CreateDirectory(root);
using (var stream = fileSystem.File.Create(filePath, 4096, FileOptions.Encrypted))
{
var fileInfo = fileSystem.FileInfo.FromFileName(filePath);
Assert.IsFalse(fileInfo.Attributes.HasFlag(FileAttributes.Encrypted));
}
}
[Test]
public void MockFile_Create_EncryptedOption_EncryptsFileWhenStreamIsClose()
{
var root = XFS.Path(@"C:\");
var filePath = XFS.Path(@"C:\test.txt");
var fileSystem = new MockFileSystem();
fileSystem.Directory.CreateDirectory(root);
using (var stream = fileSystem.File.Create(filePath, 4096, FileOptions.Encrypted))
{
}
var fileInfo = fileSystem.FileInfo.FromFileName(filePath);
Assert.IsTrue(fileInfo.Attributes.HasFlag(FileAttributes.Encrypted));
}
[Test]
public void MockFile_Create_ShouldWorkWithRelativePath()
{
var relativeFile = "file.txt";
var fileSystem = new MockFileSystem();
fileSystem.File.Create(relativeFile).Close();
Assert.That(fileSystem.File.Exists(relativeFile));
}
[Test]
public void MockFile_Create_CanReadFromNewStream()
{
string fullPath = XFS.Path(@"c:\something\demo.txt");
var fileSystem = new MockFileSystem();
fileSystem.AddDirectory(XFS.Path(@"c:\something"));
using (var stream = fileSystem.File.Create(fullPath))
{
Assert.That(stream.CanRead, Is.True);
}
}
}
}