@@ -49,11 +49,11 @@ public enum SecretsRepositoryType
49
49
}
50
50
51
51
[ Theory ]
52
+ // KeyVaultSecretRespository tests are no longer supported in host V3
52
53
[ InlineData ( SecretsRepositoryType . BlobStorage , "Dedicated" ) ]
53
54
[ InlineData ( SecretsRepositoryType . BlobStorage , "Dynamic" ) ]
54
55
[ InlineData ( SecretsRepositoryType . BlobStorageSas , "Dedicated" ) ]
55
56
[ InlineData ( SecretsRepositoryType . FileSystem , "Dedicated" ) ]
56
- [ InlineData ( SecretsRepositoryType . KeyVault , "Dedicated" ) ]
57
57
public async Task Constructor_CreatesSecretPathIfNotExists ( SecretsRepositoryType repositoryType , string sku )
58
58
{
59
59
string path = Path . Combine ( Path . GetTempPath ( ) , Path . GetRandomFileName ( ) ) ;
@@ -84,14 +84,13 @@ public async Task Constructor_CreatesSecretPathIfNotExists(SecretsRepositoryType
84
84
}
85
85
86
86
[ Theory ]
87
+ // KeyVaultSecretRespository tests are no longer supported in host V3
87
88
[ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Host ) ]
88
89
[ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Function ) ]
89
90
[ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Host ) ]
90
91
[ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Function ) ]
91
92
[ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Host ) ]
92
93
[ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Function ) ]
93
- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Host ) ]
94
- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Function ) ]
95
94
public async Task ReadAsync_ReadsExpectedFile ( SecretsRepositoryType repositoryType , ScriptSecretsType secretsType )
96
95
{
97
96
using ( var directory = new TempDirectory ( ) )
@@ -140,9 +139,7 @@ public async Task ReadAsync_ReadsExpectedFile(SecretsRepositoryType repositoryTy
140
139
}
141
140
}
142
141
143
- [ Theory ] // Only for Key Vault to test paging over large number of secrets
144
- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Host ) ]
145
- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Function ) ]
142
+ // KeyVaultSecretRespository tests are no longer supported in host V3
146
143
public async Task ReadAsync_ReadsExpectedKeyVaultPages ( SecretsRepositoryType repositoryType , ScriptSecretsType secretsType )
147
144
{
148
145
using ( var directory = new TempDirectory ( ) )
@@ -213,14 +210,13 @@ public async Task ReadAsync_ReadsExpectedKeyVaultPages(SecretsRepositoryType rep
213
210
214
211
215
212
[ Theory ]
213
+ // KeyVaultSecretRespository tests are no longer supported in host V3
216
214
[ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Host ) ]
217
215
[ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Function ) ]
218
216
[ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Host ) ]
219
217
[ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Function ) ]
220
218
[ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Host ) ]
221
219
[ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Function ) ]
222
- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Host ) ]
223
- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Function ) ]
224
220
public async Task WriteAsync_CreatesExpectedFile ( SecretsRepositoryType repositoryType , ScriptSecretsType secretsType )
225
221
{
226
222
using ( var directory = new TempDirectory ( ) )
0 commit comments