Skip to content

Commit 17ca006

Browse files
author
dragonfly91
committed
Resolved merge conflicts
2 parents 7f5e9fc + 9a969bf commit 17ca006

File tree

54 files changed

+37346
-6861
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

54 files changed

+37346
-6861
lines changed

setup/azurecmdfiles.wxi

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -823,6 +823,11 @@
823823
<Component Id="cmp8BCA174B740D6FE9FE610DDF340C002E" Guid="*">
824824
<File Id="fil5F3D2DE1162DE2DB606A10FC49FD35D3" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Compute\System.Spatial.dll" />
825825
</Component>
826+
<Directory Id="dirA59EF05935407C6E2436C80080A7C107" Name="Generated">
827+
<Component Id="cmp7E161D88C2C114CB3885FA17B24DF61C" Guid="*">
828+
<File Id="filDB35D90F36AFF3DF49E3C45376E82EBE" KeyPath="yes" Source="$(var.sourceDir)\ResourceManager\AzureResourceManager\AzureRM.Compute\Generated\Microsoft.Azure.Commands.Compute.Automation.format.generated.ps1xml" />
829+
</Component>
830+
</Directory>
826831
</Directory>
827832
<Directory Id="dir92B779C59BDF2780C6B4FC5F744D2EF5" Name="AzureRM.DataFactories">
828833
<Component Id="cmp75C3D72B9C46E1B9D3F51CE3D29F6F00" Guid="*">
@@ -5119,6 +5124,7 @@
51195124
<ComponentRef Id="cmpD971A9A271757FD9B35B0AA9E0C18E24" />
51205125
<ComponentRef Id="cmp22C16EA85B773C14B7E6439621F10355" />
51215126
<ComponentRef Id="cmp8BCA174B740D6FE9FE610DDF340C002E" />
5127+
<ComponentRef Id="cmp7E161D88C2C114CB3885FA17B24DF61C" />
51225128
<ComponentRef Id="cmp75C3D72B9C46E1B9D3F51CE3D29F6F00" />
51235129
<ComponentRef Id="cmpEEBCE6D5D00306CCD759CE5B7793B164" />
51245130
<ComponentRef Id="cmpEA6F740D378DB99E31F7433B8C57865A" />

src/ResourceManager/Compute/Commands.Compute.Test/Commands.Compute.Test.csproj

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -168,6 +168,7 @@
168168
<Compile Include="ScenarioTests\DiagnosticsExtensionTests.cs" />
169169
<Compile Include="ScenarioTests\DscExtensionTests.cs" />
170170
<Compile Include="ScenarioTests\VirtualMachineBootDiagnosticsTests.cs" />
171+
<Compile Include="ScenarioTests\VirtualMachineScaleSetTests.cs" />
171172
<Compile Include="ScenarioTests\VMDynamicTests.cs" />
172173
<Compile Include="ScenarioTests\VirtualMachineProfileTests.cs" />
173174
<Compile Include="ScenarioTests\AvailabilitySetTests.cs" />
@@ -243,6 +244,9 @@
243244
<None Include="ScenarioTests\DiagnosticsExtensionTests.ps1">
244245
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
245246
</None>
247+
<None Include="ScenarioTests\VirtualMachineScaleSetTests.ps1">
248+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
249+
</None>
246250
<None Include="ScenarioTests\VMDynamicTests.ps1">
247251
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
248252
</None>
@@ -335,6 +339,9 @@
335339
<None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineProfileTests\TestVirtualMachineProfileWithoutAUC.json">
336340
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
337341
</None>
342+
<None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineScaleSetTests\TestVirtualMachineScaleSet.json">
343+
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
344+
</None>
338345
<None Include="SessionRecords\Microsoft.Azure.Commands.Compute.Test.ScenarioTests.VirtualMachineTests\TestGetVMSizeFromAllLocations.json">
339346
<CopyToOutputDirectory>Always</CopyToOutputDirectory>
340347
</None>
Lines changed: 36 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,36 @@
1+
// ----------------------------------------------------------------------------------
2+
//
3+
// Copyright Microsoft Corporation
4+
// Licensed under the Apache License, Version 2.0 (the "License");
5+
// you may not use this file except in compliance with the License.
6+
// You may obtain a copy of the License at
7+
// http://www.apache.org/licenses/LICENSE-2.0
8+
// Unless required by applicable law or agreed to in writing, software
9+
// distributed under the License is distributed on an "AS IS" BASIS,
10+
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
11+
// See the License for the specific language governing permissions and
12+
// limitations under the License.
13+
// ----------------------------------------------------------------------------------
14+
15+
using Microsoft.WindowsAzure.Commands.ScenarioTest;
16+
using Xunit;
17+
18+
namespace Microsoft.Azure.Commands.Compute.Test.ScenarioTests
19+
{
20+
public partial class VirtualMachineScaleSetTests
21+
{
22+
[Fact]
23+
[Trait(Category.AcceptanceType, Category.CheckIn)]
24+
public void TestVirtualMachineScaleSet()
25+
{
26+
ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineScaleSet");
27+
}
28+
29+
[Fact(Skip="TODO: Record")]
30+
[Trait(Category.AcceptanceType, Category.CheckIn)]
31+
public void TestVirtualMachineScaleSetReimageUpdate()
32+
{
33+
ComputeTestController.NewInstance.RunPsTest("Test-VirtualMachineScaleSetReimageUpdate");
34+
}
35+
}
36+
}

0 commit comments

Comments
 (0)