-
Notifications
You must be signed in to change notification settings - Fork 4.8k
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
base: main
Are you sure you want to change the base?
Conversation
add a mock test case to verify mgmt SDKs should support CAE resolve Azure#47137
API change check API changes are not detected in this pull request. |
private const string SubscriptionData = @"{ | ||
""id"": ""/subscriptions/83aa47df-e3e9-49ff-877b-94304bf3d3ad"", | ||
""authorizationSource"": ""Legacy"", | ||
""subscriptionId"": ""83aa47df-e3e9-49ff-877b-94304bf3d3ad"", |
There was a problem hiding this comment.
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?
There was a problem hiding this comment.
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.
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=" """; |
There was a problem hiding this comment.
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.
add a mock test case to verify mgmt SDKs should support CAE
resolve #47137