Skip to content

Commit 9663ebd

Browse files
authored
[Resources] Fix Get-AzResource with -ExpandProperties. (Azure#27368)
1 parent 1221518 commit 9663ebd

File tree

8 files changed

+2182
-826
lines changed

8 files changed

+2182
-826
lines changed

src/Resources/ResourceManager/Implementation/Resource/GetAzureResourceCmdlet.cs

+1-2
Original file line numberDiff line numberDiff line change
@@ -624,8 +624,7 @@ private bool IsSubscriptionLevelQuery()
624624
private bool IsResourceGroupLevelQuery()
625625
{
626626
return this.SubscriptionId.HasValue &&
627-
this.ResourceGroupName != null &&
628-
this.Name != null ||
627+
this.ResourceGroupName != null ||
629628
this.ResourceType != null;
630629
}
631630
}

src/Resources/Resources.Test/ScenarioTests/ResourceTests.cs

+7
Original file line numberDiff line numberDiff line change
@@ -145,6 +145,13 @@ public void TestGetResourceWithExpandProperties()
145145
TestRunner.RunTestScript("Test-GetResourceExpandProperties");
146146
}
147147

148+
[Fact]
149+
[Trait(Category.AcceptanceType, Category.CheckIn)]
150+
public void TestGetResourceWithExpandPropertiesRGLevel()
151+
{
152+
TestRunner.RunTestScript("Test-GetResourceExpandPropertiesRGLevel");
153+
}
154+
148155
[Fact]
149156
[Trait(Category.AcceptanceType, Category.CheckIn)]
150157
public void TestGetResourceByNameAndType()

src/Resources/Resources.Test/ScenarioTests/ResourceTests.ps1

+31
Original file line numberDiff line numberDiff line change
@@ -561,6 +561,37 @@ function Test-GetResourceExpandProperties
561561
}
562562
}
563563

564+
<#
565+
.SYNOPSIS
566+
Tests getting a resource with properties expanded
567+
.DESCRIPTION
568+
SmokeTest
569+
#>
570+
function Test-GetResourceExpandPropertiesRGLevel
571+
{
572+
# Setup
573+
$rgname = Get-ResourceGroupName
574+
$rname = Get-ResourceName
575+
$rglocation = Get-Location "Microsoft.Resources" "resourceGroups" "West US"
576+
$apiversion = "2014-04-01"
577+
$resourceType = "Microsoft.Web/sites"
578+
579+
try
580+
{
581+
# Test
582+
New-AzResourceGroup -Name $rgname -Location $rglocation
583+
$resource = New-AzResource -Name $rname -Location $rglocation -Tags @{testtag = "testval"} -ResourceGroupName $rgname -ResourceType $resourceType -PropertyObject @{"key" = "value"} -SkuObject @{ Name = "A0" } -ApiVersion $apiversion -Force
584+
$resourceGet = Get-AzResource -ResourceGroupName $rgname -ExpandProperties
585+
586+
# Assert
587+
Assert-NotNull $resourceGet
588+
}
589+
finally
590+
{
591+
Clean-ResourceGroup $rgname
592+
}
593+
}
594+
564595
<#
565596
.SYNOPSIS
566597
Tests getting a resource by id, name, type, and its properties ensuring default resource api version is *not* used.

src/Resources/Resources.Test/ScenarioTests/ResourcesTestRunner.cs

+8
Original file line numberDiff line numberDiff line change
@@ -55,6 +55,14 @@ protected ResourcesTestRunner(ITestOutputHelper output)
5555
{ "Microsoft.Azure.Management.ResourceManager.ResourceManagementClient", "2019-10-01" }
5656
},
5757
resourceProviders: new Dictionary<string, string>()
58+
{
59+
{"Microsoft.Resources", null},
60+
{"Microsoft.Features", null},
61+
{"Microsoft.Authorization", null},
62+
{"Providers.Test", null},
63+
{"microsoft.web", null },
64+
{"Microsoft.Web", null }
65+
}
5866
)
5967
.WithManagementClients(context =>
6068
{

src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestGetResourceByComponentsAndProperties.json

+433-328
Large diffs are not rendered by default.

src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestGetResourceWithExpandProperties.json

+540-496
Large diffs are not rendered by default.

src/Resources/Resources.Test/SessionRecords/Microsoft.Azure.Commands.Resources.Test.ScenarioTests.ResourceTests/TestGetResourceWithExpandPropertiesRGLevel.json

+1,161
Large diffs are not rendered by default.

src/Resources/Resources/ChangeLog.md

+1
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@
1919
-->
2020

2121
## Upcoming Release
22+
* Fixed the issue that Get-AzReource not working with `-ExpandProperties`. [#11248]
2223
* Updated Resources SDK to 2024-11-01.
2324

2425
## Version 7.9.0

0 commit comments

Comments
 (0)