-
Notifications
You must be signed in to change notification settings - Fork 82
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
Fixing id:72514,id:68939,id:63139,id:63152 and updating proxy image #865
base: main
Are you sure you want to change the base?
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -703,17 +703,12 @@ var _ = Describe("Identity Providers", ci.Day2, ci.FeatureIDP, func() { | |
By("Create github idp with hostname myhost.com/aa") | ||
args = getDefaultGitHubArgs(idpName) | ||
args.HostedDomain = helper.StringPointer("myhost.com/aa") | ||
validateIDPArgAgainstNoError(idpServices.github, args) | ||
validateIDPArgAgainstErrorSubstrings(idpServices.github, args, "hostname must be a valid DNS subdomain or IP address") | ||
|
||
By("Create github idp with hostname example.com") | ||
args = getDefaultGitHubArgs(idpName) | ||
args.HostedDomain = helper.StringPointer("example.com") | ||
validateIDPArgAgainstNoError(idpServices.github, args) | ||
|
||
By("Create github idp with empty hostname") | ||
args = getDefaultGitHubArgs(idpName) | ||
args.HostedDomain = helper.EmptyStringPointer | ||
validateIDPArgAgainstErrorSubstrings(idpServices.github, args, "Attribute 'hostname' is mandatory") | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Is there any reason to remove this above step By("Create github idp with empty hostname")? There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. As far as I can tell creating an IDP without the hostname set is how you're supposed to create one that uses github.com, so it seems like it's not a mandatory argument anymore |
||
}) | ||
|
||
It("htpasswd with empty user-password list will fail - [id:66409]", ci.Medium, func() { | ||
|
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.
May I know why common above checkpoint of missing upgrade_acknowledge?
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.
There's currently a bug that causes the upgrade to occur even without acknowledging it. I left it commented out so that once that bug gets fixed, we can just re-enable the test. It's also already disabled for the HCP upgrade:
terraform-provider-rhcs/tests/e2e/cluster_upgrade_test.go
Line 249 in 5b15468