mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
3052c883a0
Start the U2F signing request when entering in the second factor page so that the user only has to touch the token without any other clicks.
35 lines
2.2 KiB
Gherkin
35 lines
2.2 KiB
Gherkin
Feature: User is redirected when factors are already validated
|
|
|
|
@need-registered-user-john
|
|
Scenario: User has validated first factor and tries to access service protected by second factor. He is then redirect to second factor step.
|
|
When I visit "https://single_factor.test.local:8080/secret.html"
|
|
And I'm redirected to "https://auth.test.local:8080/?redirect=https%3A%2F%2Fsingle_factor.test.local%3A8080%2Fsecret.html"
|
|
And I login with user "john" and password "password"
|
|
And I'm redirected to "https://single_factor.test.local:8080/secret.html"
|
|
And I visit "https://public.test.local:8080/secret.html"
|
|
Then I'm redirected to "https://auth.test.local:8080/secondfactor?redirect=https%3A%2F%2Fpublic.test.local%3A8080%2Fsecret.html"
|
|
|
|
@need-registered-user-john
|
|
Scenario: User who has validated second factor and access auth portal should be redirected to "Already logged in page" and redirected to default URL declared in configuration
|
|
When I visit "https://public.test.local:8080/secret.html"
|
|
And I'm redirected to "https://auth.test.local:8080/?redirect=https%3A%2F%2Fpublic.test.local%3A8080%2Fsecret.html"
|
|
And I login with user "john" and password "password"
|
|
And I use "REGISTERED" as TOTP token handle
|
|
And I click on "Sign in"
|
|
And I'm redirected to "https://public.test.local:8080/secret.html"
|
|
And I visit "https://auth.test.local:8080"
|
|
Then I'm redirected to "https://auth.test.local:8080/loggedin"
|
|
And I sleep for 5 seconds
|
|
And I'm redirected to "https://home.test.local:8080/"
|
|
|
|
@need-registered-user-john
|
|
Scenario: User who has validated second factor and access auth portal with rediction param should be redirected to that URL
|
|
When I visit "https://public.test.local:8080/secret.html"
|
|
And I'm redirected to "https://auth.test.local:8080/?redirect=https%3A%2F%2Fpublic.test.local%3A8080%2Fsecret.html"
|
|
And I login with user "john" and password "password"
|
|
And I use "REGISTERED" as TOTP token handle
|
|
And I click on "Sign in"
|
|
And I'm redirected to "https://public.test.local:8080/secret.html"
|
|
And I visit "https://auth.test.local:8080?redirect=https://public.test.local:8080/secret.html"
|
|
Then I'm redirected to "https://public.test.local:8080/secret.html"
|