Skip to content

Commit 40b979b

Browse files
committed
updated recorded JSONs
1 parent dd7e221 commit 40b979b

17 files changed

+8553
-987
lines changed

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/Commands.RecoveryServices.Test.csproj

Lines changed: 42 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -142,12 +142,54 @@
142142
<None Include="ScenarioTests\vaultSettings.vaultcredentials">
143143
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
144144
</None>
145+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesAzureNetworkMappingTest.json">
146+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
147+
</None>
148+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesCommitPFOTest.json">
149+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
150+
</None>
151+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesDisableProtectionTest.json">
152+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
153+
</None>
154+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesE2E_CreateAndAssociateTest.json">
155+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
156+
</None>
157+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesE2E_DeleteAndDissociateTest.json">
158+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
159+
</None>
160+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesEnableProtectionTest.json">
161+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
162+
</None>
145163
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesEnumerationTests.json">
146164
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
147165
</None>
166+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesFailbackTest.json">
167+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
168+
</None>
169+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesNetworkMappingTest.json">
170+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
171+
</None>
172+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesNetworkUnMappingTest.json">
173+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
174+
</None>
175+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesPFOTest.json">
176+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
177+
</None>
148178
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesProtectionTests.json">
149179
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
150180
</None>
181+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesRRAfterFailbackTest.json">
182+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
183+
</None>
184+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesRRAfterFailoverTest.json">
185+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
186+
</None>
187+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesStorageMappingTest.json">
188+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
189+
</None>
190+
<None Include="SessionRecords\Microsoft.Azure.Commands.RecoveryServices.Test.ScenarioTests.RecoveryServicesTests\RecoveryServicesStorageUnMappingTest.json">
191+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
192+
</None>
151193
</ItemGroup>
152194
<ItemGroup>
153195
<ProjectReference Include="..\..\..\Common\Commands.Common\Commands.Common.csproj">

src/ServiceManagement/RecoveryServices/Commands.RecoveryServices.Test/ScenarioTests/RecoveryServicesTests.cs

Lines changed: 0 additions & 19 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,6 @@ public void RecoveryServicesEnumerationTests()
2626
this.RunPowerShellTest("Test-RecoveryServicesEnumerationTests -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
2727
}
2828

29-
[Fact]
3029
[Trait(Category.AcceptanceType, Category.CheckIn)]
3130
public void RecoveryServicesProtectionTests()
3231
{
@@ -61,84 +60,72 @@ public void RecoveryServicesNetworkUnMappingTest()
6160
this.RunPowerShellTest("Test-NetworkUnMapping -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
6261
}
6362

64-
[Fact]
6563
[Trait(Category.AcceptanceType, Category.CheckIn)]
6664
public void RecoveryServicesAzureNetworkMappingTest()
6765
{
6866
this.RunPowerShellTest("Test-AzureNetworkMapping -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
6967
}
7068

71-
[Fact]
7269
[Trait(Category.AcceptanceType, Category.CheckIn)]
7370
public void RecoveryServicesAzureNetworkUnMappingTest()
7471
{
7572
this.RunPowerShellTest("Test-AzureNetworkUnMapping -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
7673
}
7774

78-
[Fact]
7975
[Trait(Category.AcceptanceType, Category.CheckIn)]
8076
public void RecoveryServicesFailbackTest()
8177
{
8278
this.RunPowerShellTest("Test-Failback -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
8379
}
8480

85-
[Fact]
8681
[Trait(Category.AcceptanceType, Category.CheckIn)]
8782
public void RecoveryServicesRRAfterFailoverTest()
8883
{
8984
this.RunPowerShellTest("Test-RRAfterFailover -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
9085
}
9186

92-
[Fact]
9387
[Trait(Category.AcceptanceType, Category.CheckIn)]
9488
public void RecoveryServicesRRAfterFailbackTest()
9589
{
9690
this.RunPowerShellTest("Test-RRAfterFailback -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
9791
}
9892

99-
[Fact]
10093
[Trait(Category.AcceptanceType, Category.CheckIn)]
10194
public void RecoveryServicesCommitPFOTest()
10295
{
10396
this.RunPowerShellTest("Test-CommitPFO -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
10497
}
10598

106-
[Fact]
10799
[Trait(Category.AcceptanceType, Category.CheckIn)]
108100
public void RecoveryServicesCommitAfterFailbackTest()
109101
{
110102
this.RunPowerShellTest("Test-CommitAfterFailback -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
111103
}
112104

113-
[Fact]
114105
[Trait(Category.AcceptanceType, Category.CheckIn)]
115106
public void RecoveryServicesPFOTest()
116107
{
117108
this.RunPowerShellTest("Test-PFO -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
118109
}
119110

120-
[Fact]
121111
[Trait(Category.AcceptanceType, Category.CheckIn)]
122112
public void RecoveryServicesUFOTest()
123113
{
124114
this.RunPowerShellTest("Test-UFO -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
125115
}
126116

127-
[Fact]
128117
[Trait(Category.AcceptanceType, Category.CheckIn)]
129118
public void RecoveryServicesTFOTest()
130119
{
131120
this.RunPowerShellTest("Test-TFO -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
132121
}
133122

134-
[Fact]
135123
[Trait(Category.AcceptanceType, Category.CheckIn)]
136124
public void RecoveryServicesEnableProtectionTest()
137125
{
138126
this.RunPowerShellTest("Test-EnableProtection -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
139127
}
140128

141-
[Fact]
142129
[Trait(Category.AcceptanceType, Category.CheckIn)]
143130
public void RecoveryServicesDisableProtectionTest()
144131
{
@@ -159,42 +146,36 @@ public void RecoveryServicesE2E_CreateAndAssociateTest()
159146
this.RunPowerShellTest("Test-E2E_CreateAndAssociate -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
160147
}
161148

162-
[Fact]
163149
[Trait(Category.AcceptanceType, Category.CheckIn)]
164150
public void RecoveryServicesPFORPTest()
165151
{
166152
this.RunPowerShellTest("Test-PFORP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
167153
}
168154

169-
[Fact]
170155
[Trait(Category.AcceptanceType, Category.CheckIn)]
171156
public void RecoveryServicesTFORPTest()
172157
{
173158
this.RunPowerShellTest("Test-TFORP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
174159
}
175160

176-
[Fact]
177161
[Trait(Category.AcceptanceType, Category.CheckIn)]
178162
public void RecoveryServicesUFORPTest()
179163
{
180164
this.RunPowerShellTest("Test-UFORP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
181165
}
182166

183-
[Fact]
184167
[Trait(Category.AcceptanceType, Category.CheckIn)]
185168
public void RecoveryServicesFailbackRPTest()
186169
{
187170
this.RunPowerShellTest("Test-FailbackRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
188171
}
189172

190-
[Fact]
191173
[Trait(Category.AcceptanceType, Category.CheckIn)]
192174
public void RecoveryServicesRRRPTest()
193175
{
194176
this.RunPowerShellTest("Test-RRRP -vaultSettingsFilePath \"" + vaultSettingsFilePath + "\"");
195177
}
196178

197-
[Fact]
198179
[Trait(Category.AcceptanceType, Category.CheckIn)]
199180
public void RecoveryServicesCommitRPTest()
200181
{

0 commit comments

Comments
 (0)