Remove extra partition test

This commit is contained in:
wenincode 2022-10-20 16:23:53 -06:00
parent f89fc309ff
commit 7b0a4f3eb8
3 changed files with 0 additions and 36 deletions

View File

@ -51,7 +51,6 @@
/>
{{#if (can "use SSO")}}
<authForm.Method @matches="sso">
{{log (concat "Partition Parent: " @partition)}}
<OidcSelect
@dc={{@dc.Name}}
@partition={{@partition}}

View File

@ -50,36 +50,3 @@ Feature: login
And a POST request was made to "/v1/acl/oidc/callback?dc=dc-1&ns=@!namespace&partition=partition"
And "[data-notification]" has the "notification-authorize" class
And "[data-notification]" has the "success" class
Scenario: Logging in via SSO with a partition chosen
Given 1 datacenter model with the value "dc-1"
And SSO is enabled
And partitions are enabled
And 1 partition model with the value "_example-partition"
And 1 oidcProvider model from yaml
---
- DisplayName: Okta
Name: okta
Kind: okta
---
When I visit the services page for yaml
---
dc: dc-1
partition: example-partition
---
And the "okta" oidcProvider responds with from yaml
---
state: state-123456789/abcdefghijklmnopqrstuvwxyz
code: code-abcdefghijklmnopqrstuvwxyz/123456789
---
And I click login on the navigation
And I click "[data-test-tab=tab_sso] button"
Then the "[name='partition']" input should have the value "example-partition"
And I type "partition" into "[name=partition]"
And I click ".oidc-select button"
Then a GET request was made to "/v1/internal/ui/oidc-auth-methods?dc=dc-1&ns=@namespace&partition=partition"
And I click ".okta-oidc-provider"
Then a POST request was made to "/v1/acl/oidc/auth-url?dc=dc-1&ns=@!namespace&partition=partition"
And a POST request was made to "/v1/acl/oidc/callback?dc=dc-1&ns=@!namespace&partition=partition"
And "[data-notification]" has the "notification-authorize" class
And "[data-notification]" has the "success" class

View File

@ -66,8 +66,6 @@ export function visitable(path, encoder = encodeURIComponent) {
let path = paths.shift();
if (typeof dynamicSegmentsAndQueryParams.nspace !== 'undefined') {
path = `/:nspace${path}`;
} else if (typeof dynamicSegmentsAndQueryParams.partition !== 'undefined') {
path = `/:partition${path}`;
}
params = assign({}, dynamicSegmentsAndQueryParams);
let fullPath;