-
Notifications
You must be signed in to change notification settings - Fork 13
/
Copy pathSharedAccessTests.cs
68 lines (56 loc) · 2.73 KB
/
SharedAccessTests.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
namespace GeekLearning.Storage.Integration.Test
{
using Storage;
using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.IO;
using System.Text;
using System.Threading.Tasks;
using Xunit;
using Microsoft.WindowsAzure.Storage;
using Microsoft.WindowsAzure.Storage.Auth;
using Microsoft.WindowsAzure.Storage.Blob;
using Microsoft.Extensions.Options;
using GeekLearning.Storage.Azure.Configuration;
using System.Linq;
[Collection(nameof(IntegrationCollection))]
[Trait("Operation", "SharedAccess"), Trait("Kind", "Integration")]
public class SharedAccessTests
{
private readonly StoresFixture storeFixture;
public SharedAccessTests(StoresFixture fixture)
{
this.storeFixture = fixture;
}
[Theory(DisplayName = nameof(StoreSharedAccess)), InlineData("Store3"), InlineData("Store4"), InlineData("Store5"), InlineData("Store6")]
public async Task StoreSharedAccess(string storeName)
{
var storageFactory = this.storeFixture.Services.GetRequiredService<IStorageFactory>();
var options = this.storeFixture.Services.GetRequiredService<IOptions<AzureParsedOptions>>();
var store = storageFactory.GetStore(storeName);
options.Value.ParsedStores.TryGetValue(storeName, out var storeOptions);
var sharedAccessSignature = await store.GetSharedAccessSignatureAsync(new SharedAccessPolicy
{
ExpiryTime = DateTime.UtcNow.AddHours(24),
Permissions = SharedAccessPermissions.List,
});
var account = CloudStorageAccount.Parse(storeOptions.ConnectionString);
var accountSAS = new StorageCredentials(sharedAccessSignature);
var accountWithSAS = new CloudStorageAccount(accountSAS, account.Credentials.AccountName, endpointSuffix: null, useHttps: true);
var blobClientWithSAS = accountWithSAS.CreateCloudBlobClient();
var containerWithSAS = blobClientWithSAS.GetContainerReference(storeOptions.FolderName);
BlobContinuationToken continuationToken = null;
List<IListBlobItem> results = new List<IListBlobItem>();
do
{
var response = await containerWithSAS.ListBlobsSegmentedAsync(continuationToken);
continuationToken = response.ContinuationToken;
results.AddRange(response.Results);
}
while (continuationToken != null);
var filesFromStore = await store.ListAsync(null, false, false);
Assert.Equal(filesFromStore.Length, results.OfType<ICloudBlob>().Count());
}
}
}