-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockFileSystem.cs
More file actions
233 lines (189 loc) · 7.93 KB
/
Copy pathMockFileSystem.cs
File metadata and controls
233 lines (189 loc) · 7.93 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
using System;
using System.Collections.Generic;
using System.Text;
using System.Threading;
using System.Threading.Tasks;
using Lokad.Awk;
namespace Lokad.Awk.Tests;
public sealed class MockFileSystem : IAwkHost
{
private readonly MockFileTree _files = new();
private readonly MockFileDescriptorTable _descriptors = new();
public List<AwkCommandInvocation> AwkCommandInvocations { get; } = [];
public Action? AfterAppend { get; set; }
public Action? AfterReadLines { get; set; }
public int OpenFileCount => _descriptors.OpenFileCount;
public void AddDirectory(
string path,
DateTimeOffset? modifiedAt = null,
AwkFileTreePermission permission = AwkFileTreePermission.ReadWrite) =>
_files.AddDirectory(path, modifiedAt, permission);
public void AddFile(
string path,
string content,
DateTimeOffset? modifiedAt = null,
AwkFileTreePermission permission = AwkFileTreePermission.ReadWrite) =>
_files.AddFile(path, content, modifiedAt, permission);
public void AddFile(
string path,
byte[] content,
DateTimeOffset? modifiedAt = null,
AwkFileTreePermission permission = AwkFileTreePermission.ReadWrite) =>
_files.AddFile(path, content, modifiedAt, permission);
public void AddReadOpenError(string path, string message) =>
_files.AddReadOpenError(path, message);
public bool FileExists(string path) =>
_files.FileExists(path);
public byte[] GetOutputBytes(AwkFileDescriptor descriptor) =>
_descriptors.GetOutputBytes(descriptor);
public byte[] ReadFileBytes(string path) =>
_files.ReadFileBytes(path);
public void SetStandardInput(string content) =>
SetStandardInputBytes(Encoding.UTF8.GetBytes(content));
public void SetStandardInputBytes(byte[] content) =>
_descriptors.SetStandardInput(content);
public string GetOutput(AwkFileDescriptor descriptor) =>
_descriptors.GetOutput(descriptor);
public string ReadFile(string path) =>
_files.ReadFile(path);
public Task<IReadOnlyList<int>> RunCommandsAsync(
IReadOnlyList<AwkCommandInvocation> commands,
CancellationToken cancellationToken)
{
ArgumentNullException.ThrowIfNull(commands);
cancellationToken.ThrowIfCancellationRequested();
AwkCommandInvocations.AddRange(commands);
return Task.FromResult<IReadOnlyList<int>>([0]);
}
public Task<int> AppendAsync(
AwkFileDescriptor fileDescriptor,
ReadOnlyMemory<byte> content,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (fileDescriptor.IsDevNull)
{
AfterAppend?.Invoke();
return Task.FromResult(0);
}
var result = _descriptors.Append(fileDescriptor, content);
AfterAppend?.Invoke();
return Task.FromResult(result);
}
public Task<AwkOpenedFile> OpenFileAsync(
AwkPath path,
AwkFileOpenMode mode,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (path.Equals(AwkFileDescriptor.DevNullPath))
return Task.FromResult(AwkOpenedFile.Opened(AwkFileDescriptor.DevNull));
if (mode == AwkFileOpenMode.Read)
return Task.FromResult(OpenForRead(path));
if (mode is AwkFileOpenMode.WriteTruncate or AwkFileOpenMode.WriteAppend)
return Task.FromResult(OpenForWrite(path, mode));
return Task.FromResult(AwkOpenedFile.MissingFile());
}
public Task<AwkDuplicateDescriptorResult> DuplicateDescriptorAsync(
AwkFileDescriptor sourceDescriptor,
AwkFileDescriptor targetDescriptor,
CancellationToken cancellationToken)
{
if (sourceDescriptor.IsDevNull)
return Task.FromResult(AwkDuplicateDescriptorResult.Duplicated(AwkFileDescriptor.DevNull));
throw new NotSupportedException("MockFileSystem does not duplicate descriptors.");
}
public Task<bool> CloseDescriptorAsync(AwkFileDescriptor descriptor, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (descriptor.IsDevNull)
return Task.FromResult(true);
return Task.FromResult(_descriptors.Close(descriptor));
}
public Task<IReadOnlyList<AwkDirectoryEntry>> ListDirectoryAsync(
AwkPath path,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
return Task.FromResult(_files.ListDirectory(path));
}
public Task<AwkReadResult> ReadLinesAsync(
AwkFileDescriptor fileDescriptor,
int maxLineCount,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (maxLineCount <= 0)
throw new ArgumentOutOfRangeException(nameof(maxLineCount));
var result = _descriptors.ReadLines(fileDescriptor, maxLineCount);
if (result.NotifyAfterRead)
AfterReadLines?.Invoke();
return Task.FromResult(result.Result);
}
public Task<IReadOnlyList<bool>> FileTestsAsync(
IReadOnlyList<AwkFileTestRequest> tests,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
ArgumentNullException.ThrowIfNull(tests);
var results = new bool[tests.Count];
for (var index = 0; index < tests.Count; index++)
{
results[index] = _files.EvaluateTest(tests[index]);
}
return Task.FromResult<IReadOnlyList<bool>>(results);
}
public Task<AwkPipeDescriptors> CreatePipeAsync(AwkPipeMode mode, CancellationToken cancellationToken)
{
throw new NotSupportedException("MockFileSystem does not create pipes.");
}
public Task<AwkFileMetadata> GetFileMetadataAsync(AwkPath path, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
return Task.FromResult(_files.GetMetadata(path));
}
public Task<AwkOperationResult> CreateDirectoryAsync(AwkPath path, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
return Task.FromResult(_files.CreateDirectory(path));
}
public Task<AwkOperationResult> DeleteDirectoryAsync(AwkPath path, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
return Task.FromResult(_files.DeleteDirectory(path));
}
public Task<AwkOperationResult> DeleteFileAsync(AwkPath path, CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
return Task.FromResult(_files.DeleteFile(path));
}
public Task<AwkOperationResult> CopyFileAsync(
AwkPath sourcePath,
AwkPath destinationPath,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
return Task.FromResult(_files.CopyFile(sourcePath, destinationPath));
}
private AwkOpenedFile OpenForRead(AwkPath path)
{
return _files.OpenForRead(path) switch
{
MockReadOpenResult.Opened opened =>
AwkOpenedFile.Opened(_descriptors.OpenRead(opened.Content)),
MockReadOpenResult.Failure failure => AwkOpenedFile.Failure(failure.Error),
MockReadOpenResult.MissingFile => AwkOpenedFile.MissingFile(),
_ => AwkOpenedFile.MissingFile()
};
}
private AwkOpenedFile OpenForWrite(AwkPath path, AwkFileOpenMode mode)
{
return _files.OpenForWrite(path, mode) switch
{
MockWriteOpenResult.Opened opened =>
AwkOpenedFile.Opened(_descriptors.OpenWrite(opened.InitialContent, opened.Commit)),
MockWriteOpenResult.Failure failure => AwkOpenedFile.Failure(failure.Error),
_ => AwkOpenedFile.MissingFile()
};
}
}