@@ -49,11 +49,11 @@ public enum SecretsRepositoryType
4949 }
5050
5151 [ Theory ]
52+ // KeyVaultSecretRespository tests are no longer supported in host V3
5253 [ InlineData ( SecretsRepositoryType . BlobStorage , "Dedicated" ) ]
5354 [ InlineData ( SecretsRepositoryType . BlobStorage , "Dynamic" ) ]
5455 [ InlineData ( SecretsRepositoryType . BlobStorageSas , "Dedicated" ) ]
5556 [ InlineData ( SecretsRepositoryType . FileSystem , "Dedicated" ) ]
56- [ InlineData ( SecretsRepositoryType . KeyVault , "Dedicated" ) ]
5757 public async Task Constructor_CreatesSecretPathIfNotExists ( SecretsRepositoryType repositoryType , string sku )
5858 {
5959 string path = Path . Combine ( Path . GetTempPath ( ) , Path . GetRandomFileName ( ) ) ;
@@ -84,14 +84,13 @@ public async Task Constructor_CreatesSecretPathIfNotExists(SecretsRepositoryType
8484 }
8585
8686 [ Theory ]
87+ // KeyVaultSecretRespository tests are no longer supported in host V3
8788 [ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Host ) ]
8889 [ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Function ) ]
8990 [ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Host ) ]
9091 [ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Function ) ]
9192 [ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Host ) ]
9293 [ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Function ) ]
93- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Host ) ]
94- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Function ) ]
9594 public async Task ReadAsync_ReadsExpectedFile ( SecretsRepositoryType repositoryType , ScriptSecretsType secretsType )
9695 {
9796 using ( var directory = new TempDirectory ( ) )
@@ -140,9 +139,7 @@ public async Task ReadAsync_ReadsExpectedFile(SecretsRepositoryType repositoryTy
140139 }
141140 }
142141
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
146143 public async Task ReadAsync_ReadsExpectedKeyVaultPages ( SecretsRepositoryType repositoryType , ScriptSecretsType secretsType )
147144 {
148145 using ( var directory = new TempDirectory ( ) )
@@ -213,14 +210,13 @@ public async Task ReadAsync_ReadsExpectedKeyVaultPages(SecretsRepositoryType rep
213210
214211
215212 [ Theory ]
213+ // KeyVaultSecretRespository tests are no longer supported in host V3
216214 [ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Host ) ]
217215 [ InlineData ( SecretsRepositoryType . BlobStorage , ScriptSecretsType . Function ) ]
218216 [ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Host ) ]
219217 [ InlineData ( SecretsRepositoryType . BlobStorageSas , ScriptSecretsType . Function ) ]
220218 [ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Host ) ]
221219 [ InlineData ( SecretsRepositoryType . FileSystem , ScriptSecretsType . Function ) ]
222- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Host ) ]
223- [ InlineData ( SecretsRepositoryType . KeyVault , ScriptSecretsType . Function ) ]
224220 public async Task WriteAsync_CreatesExpectedFile ( SecretsRepositoryType repositoryType , ScriptSecretsType secretsType )
225221 {
226222 using ( var directory = new TempDirectory ( ) )
0 commit comments