Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

test(resourcemanager): mock test for cae support #47138

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
@@ -0,0 +1,52 @@
using Azure.Core.TestFramework;
using NUnit.Framework;

namespace Azure.ResourceManager.Tests.Unit
{
[Parallelizable]
public class HttpPipelineTests
{
[Test]
public void CaeSupport()
{
int callCount = 0;
var option = new ArmClientOptions()
{
// we mock a CAE challenge before the actual response is returned
Transport = new MockTransport((r) =>
{
callCount++;

if (callCount == 1)
{
return new MockResponse(401).WithHeader("WWW-Authenticate", CaeChallenge);
}
var response = new MockResponse(200);
response.SetContent(SubscriptionData);
return response;
})
};
var client = new ArmClient(new MockCredential(), "83aa47df-e3e9-49ff-877b-94304bf3d3ad", option);
var subscription = client.GetDefaultSubscription();
Assert.AreEqual(2, callCount);
Assert.AreEqual("83aa47df-e3e9-49ff-877b-94304bf3d3ad", subscription.Data.Id.SubscriptionId);
Assert.AreEqual("Subscription2", subscription.Data.DisplayName);
Assert.IsEmpty(subscription.Data.Tags);
}

private const string CaeChallenge = """PoP realm="", authorization_uri="https://login.microsoftonline.com/common/oauth2/authorize", client_id="00000003-0000-0000-c000-000000000000", nonce="ey==", Bearer realm="", authorization_uri="https://login.microsoftonline.com/common/oauth2/authorize", client_id="00000003-0000-0000-c000-000000000000", error_description="Continuous access evaluation resulted in challenge with result: InteractionRequired and code: TokenIssuedBeforeRevocationTimestamp", error="insufficient_claims", claims="eyJhY2Nlc3NfdG9rZW4iOnsibmJmIjp7ImVzc2VudGlhbCI6dHJ1ZSwgInZhbHVlIjoiMTcyNjI1ODEyMiJ9fX0=" """;
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

This can be simplified to only keep the needed values.
And I think we might need a failure test case for this.


private const string SubscriptionData = @"{
""id"": ""/subscriptions/83aa47df-e3e9-49ff-877b-94304bf3d3ad"",
""authorizationSource"": ""Legacy"",
""subscriptionId"": ""83aa47df-e3e9-49ff-877b-94304bf3d3ad"",
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

can we create a new Guid every time and use it to replace the actual data?

Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

It's a mock test. So I just use the value from MS Doc.

""displayName"": ""Subscription2"",
""state"": ""Enabled"",
""subscriptionPolicies"": {
""locationPlacementId"": ""Internal_2014-09-01"",
""quotaId"": ""Internal_2014-09-01"",
""spendingLimit"": ""Off""
}
}";
}
}