Skip to content

Commit

Permalink
Add DnsTestRunner to replace DnsTestsBase (#18121)
Browse files Browse the repository at this point in the history
* Add DnsTestRunner to replace DnsTestsBase

* Add DnsTestRunner to replace DnsTestsBase

Co-authored-by: Ziyue Zheng <[email protected]>
  • Loading branch information
v-yuzhichen and ziyuezh576 authored May 13, 2022
1 parent 9fd5867 commit ad5596f
Show file tree
Hide file tree
Showing 4 changed files with 114 additions and 211 deletions.
57 changes: 57 additions & 0 deletions src/Dns/Dns.Test/ScenarioTests/DnsTestRunner.cs
Original file line number Diff line number Diff line change
@@ -0,0 +1,57 @@
// ----------------------------------------------------------------------------------
//
// Copyright Microsoft Corporation
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
// http://www.apache.org/licenses/LICENSE-2.0
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
// ----------------------------------------------------------------------------------

using System.Collections.Generic;
using Xunit.Abstractions;
using Microsoft.Azure.Commands.TestFx;

namespace Microsoft.Azure.Commands.ScenarioTest.DnsTests
{
public class DnsTestRunner
{
protected readonly ITestRunner TestRunner;

protected DnsTestRunner(ITestOutputHelper output)
{
TestRunner = TestManager.CreateInstance(output)
.WithNewPsScriptFilename($"{GetType().Name}.ps1")
.WithProjectSubfolderForTests("ScenarioTests")
.WithCommonPsScripts(new[]
{
@"Common.ps1",
@"../AzureRM.Resources.ps1"
})
.WithNewRmModules(helper => new[]
{
helper.RMProfileModule,
helper.GetRMModulePath("Az.Dns.psd1"),
helper.GetRMModulePath("Az.Network.psd1")
})
.WithNewRecordMatcherArguments(
userAgentsToIgnore: new Dictionary<string, string>
{
{"Microsoft.Azure.Management.Resources.ResourceManagementClient", "2016-02-01"}
},
resourceProviders: new Dictionary<string, string>
{
{"Microsoft.Resources", null},
{"Microsoft.Features", null},
{"Microsoft.Authorization", null},
{"Microsoft.Network", null}
}
)
.Build();
}
}
}
142 changes: 0 additions & 142 deletions src/Dns/Dns.Test/ScenarioTests/DnsTestsBase.cs

This file was deleted.

Loading

0 comments on commit ad5596f

Please sign in to comment.