-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathMockFileSystem.cs
More file actions
187 lines (148 loc) · 6.46 KB
/
Copy pathMockFileSystem.cs
File metadata and controls
187 lines (148 loc) · 6.46 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
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 Action? AfterCloseDescriptor { get; set; }
public Func<AwkFileDescriptor, bool, bool>? CloseDescriptorResultOverride { get; set; }
public Func<AwkFileDescriptor, int, AwkReadResult>? ReadLinesOverride { get; set; }
public int OpenFileCount => _descriptors.OpenFileCount;
public void AddDirectory(string path) =>
AddDirectory(path, AwkFileTreePermission.ReadWrite);
public void AddDirectory(string path, AwkFileTreePermission permission) =>
_files.AddDirectory(path, permission);
public void AddFile(string path, string content) =>
AddFile(path, content, AwkFileTreePermission.ReadWrite);
public void AddFile(
string path,
string content,
AwkFileTreePermission permission) =>
_files.AddFile(path, content, permission);
public void AddFile(string path, byte[] content) =>
AddFile(path, content, AwkFileTreePermission.ReadWrite);
public void AddFile(
string path,
byte[] content,
AwkFileTreePermission permission) =>
_files.AddFile(path, content, 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<AwkExitCode>> RunCommandsAsync(
IReadOnlyList<AwkCommandInvocation> commands,
CancellationToken cancellationToken)
{
ArgumentNullException.ThrowIfNull(commands);
cancellationToken.ThrowIfCancellationRequested();
AwkCommandInvocations.AddRange(commands);
return Task.FromResult<IReadOnlyList<AwkExitCode>>([AwkExitCode.Success]);
}
public Task<AwkExitCode> AppendAsync(
AwkFileDescriptor fileDescriptor,
ReadOnlyMemory<byte> content,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (fileDescriptor.IsDevNull)
{
AfterAppend?.Invoke();
return Task.FromResult(AwkExitCode.Success);
}
var result = _descriptors.Append(fileDescriptor, content);
AfterAppend?.Invoke();
return Task.FromResult(new AwkExitCode(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<AwkOperationStatus> CloseDescriptorAsync(
AwkFileDescriptor descriptor,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (descriptor.IsDevNull)
return Task.FromResult(AwkOperationStatus.Success);
var closed = _descriptors.Close(descriptor);
AfterCloseDescriptor?.Invoke();
var closeDescriptorResultOverride = CloseDescriptorResultOverride;
var succeeded = closeDescriptorResultOverride == null
? closed
: closeDescriptorResultOverride(descriptor, closed);
return Task.FromResult(
succeeded ? AwkOperationStatus.Success : AwkOperationStatus.Failure);
}
public Task<AwkReadResult> ReadLinesAsync(
AwkFileDescriptor fileDescriptor,
int maxLineCount,
CancellationToken cancellationToken)
{
cancellationToken.ThrowIfCancellationRequested();
if (maxLineCount <= 0)
throw new ArgumentOutOfRangeException(nameof(maxLineCount));
var readLinesOverride = ReadLinesOverride;
var result = readLinesOverride == null
? _descriptors.ReadLines(fileDescriptor, maxLineCount)
: new MockDescriptorReadResult(readLinesOverride(fileDescriptor, maxLineCount), true);
if (result.NotifyAfterRead)
AfterReadLines?.Invoke();
return Task.FromResult(result.Result);
}
public Task<AwkPipeDescriptors> CreatePipeAsync(AwkPipeMode mode, CancellationToken cancellationToken)
{
throw new NotSupportedException("MockFileSystem does not create pipes.");
}
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()
};
}
}