-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathReadTests.cs
140 lines (98 loc) · 5.57 KB
/
ReadTests.cs
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
namespace GeekLearning.Storage.Integration.Test
{
using Microsoft.Extensions.DependencyInjection;
using Storage;
using System.IO;
using System.Threading.Tasks;
using Xunit;
[Collection(nameof(IntegrationCollection))]
[Trait("Operation", "Read"), Trait("Kind", "Integration")]
public class ReadTests
{
private StoresFixture storeFixture;
public ReadTests(StoresFixture fixture)
{
this.storeFixture = fixture;
}
[Theory(DisplayName = nameof(ReadAllTextFromRootFile)), InlineData("Store1"), InlineData("Store2"), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task ReadAllTextFromRootFile(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var store = storageFactory.GetStore(storeName);
var expectedText = "42";
var actualText = await store.ReadAllTextAsync("TextFile.txt");
Assert.Equal(expectedText, actualText);
}
[Theory(DisplayName = nameof(ReadAllTextFromRootFile)), InlineData("Store1"), InlineData("Store2"), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task ReadAllTextFromSubdirectoryFile(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var store = storageFactory.GetStore(storeName);
var expectedText = ">42";
var actualText = await store.ReadAllTextAsync("SubDirectory/TextFile2.txt");
Assert.Equal(expectedText, actualText);
}
[Theory(DisplayName = nameof(ReadAllBytesFromSubdirectoryFile)), InlineData("Store1"), InlineData("Store2"), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task ReadAllBytesFromSubdirectoryFile(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var store = storageFactory.GetStore(storeName);
var expectedText = ">42";
using (var reader = new StreamReader(new MemoryStream(await store.ReadAllBytesAsync("SubDirectory/TextFile2.txt"))))
{
var actualText = reader.ReadToEnd();
Assert.Equal(expectedText, actualText);
}
}
[Theory(DisplayName = nameof(ReadAllBytesFromSubdirectoryFileUsingFileReference)), InlineData("Store1"), InlineData("Store2"), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task ReadAllBytesFromSubdirectoryFileUsingFileReference(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var store = storageFactory.GetStore(storeName);
var expectedText = ">42";
var file = await store.GetAsync("SubDirectory/TextFile2.txt");
using (var reader = new StreamReader(new MemoryStream(await file.ReadAllBytesAsync())))
{
var actualText = reader.ReadToEnd();
Assert.Equal(expectedText, actualText);
}
}
[Theory(DisplayName = nameof(ReadFileFromSubdirectoryFile)), InlineData("Store1"), InlineData("Store2"), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task ReadFileFromSubdirectoryFile(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var store = storageFactory.GetStore(storeName);
var expectedText = ">42";
var file = await store.GetAsync("SubDirectory/TextFile2.txt");
string actualText = null;
using (var reader = new StreamReader(await file.ReadAsync()))
{
actualText = await reader.ReadToEndAsync();
}
Assert.Equal(expectedText, actualText);
}
[Theory(DisplayName = nameof(ReadAllTextFromSubdirectoryFileUsingFileReference)), InlineData("Store1"), InlineData("Store2"), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task ReadAllTextFromSubdirectoryFileUsingFileReference(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var store = storageFactory.GetStore(storeName);
var expectedText = ">42";
var file = await store.GetAsync("SubDirectory/TextFile2.txt");
string actualText = await file.ReadAllTextAsync();
Assert.Equal(expectedText, actualText);
}
[Theory(DisplayName = nameof(ListThenReadAllTextFromSubdirectoryFile)), InlineData("Store1"), InlineData("Store2"), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task ListThenReadAllTextFromSubdirectoryFile(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var store = storageFactory.GetStore(storeName);
var expectedText = ">42";
var files = await store.ListAsync("SubDirectory");
foreach (var file in files)
{
string actualText = await store.ReadAllTextAsync(file);
Assert.Equal(expectedText, actualText);
}
}
}
}