@@ -8,45 +8,49 @@ namespace SixLabors.ImageSharp.Drawing.Tests;
8
8
/// </summary>
9
9
public class TestFileSystem : IO . IFileSystem
10
10
{
11
- private readonly Dictionary < string , Stream > fileSystem = new ( StringComparer . OrdinalIgnoreCase ) ;
11
+ private readonly Dictionary < string , Func < Stream > > fileSystem = new ( StringComparer . OrdinalIgnoreCase ) ;
12
12
13
- public void AddFile ( string path , Stream data )
13
+ public void AddFile ( string path , Func < Stream > data )
14
14
{
15
15
lock ( this . fileSystem )
16
16
{
17
17
this . fileSystem . Add ( path , data ) ;
18
18
}
19
19
}
20
20
21
- public Stream Create ( string path )
21
+ public Stream Create ( string path ) => this . GetStream ( path ) ?? File . Create ( path ) ;
22
+
23
+ public Stream CreateAsynchronous ( string path ) => this . GetStream ( path ) ?? File . Open ( path , new FileStreamOptions
22
24
{
23
- // if we have injected a fake file use it instead
24
- lock ( this . fileSystem )
25
- {
26
- if ( this . fileSystem . ContainsKey ( path ) )
27
- {
28
- Stream stream = this . fileSystem [ path ] ;
29
- stream . Position = 0 ;
30
- return stream ;
31
- }
32
- }
25
+ Mode = FileMode . Create ,
26
+ Access = FileAccess . ReadWrite ,
27
+ Share = FileShare . None ,
28
+ Options = FileOptions . Asynchronous ,
29
+ } ) ;
33
30
34
- return File . Create ( path ) ;
35
- }
31
+ public Stream OpenRead ( string path ) => this . GetStream ( path ) ?? File . OpenRead ( path ) ;
32
+
33
+ public Stream OpenReadAsynchronous ( string path ) => this . GetStream ( path ) ?? File . Open ( path , new FileStreamOptions
34
+ {
35
+ Mode = FileMode . Open ,
36
+ Access = FileAccess . Read ,
37
+ Share = FileShare . Read ,
38
+ Options = FileOptions . Asynchronous ,
39
+ } ) ;
36
40
37
- public Stream OpenRead ( string path )
41
+ private Stream ? GetStream ( string path )
38
42
{
39
43
// if we have injected a fake file use it instead
40
44
lock ( this . fileSystem )
41
45
{
42
- if ( this . fileSystem . ContainsKey ( path ) )
46
+ if ( this . fileSystem . TryGetValue ( path , out Func < Stream > ? streamFactory ) )
43
47
{
44
- Stream stream = this . fileSystem [ path ] ;
48
+ Stream stream = streamFactory ( ) ;
45
49
stream . Position = 0 ;
46
50
return stream ;
47
51
}
48
52
}
49
53
50
- return File . OpenRead ( path ) ;
54
+ return null ;
51
55
}
52
56
}
0 commit comments