mirror of
https://github.com/0rangebananaspy/authelia.git
synced 2024-09-14 22:47:21 +07:00
1cf4e57bb1
Example 1: The user has validated first factor when accessing a service protected by basic auth. When he tries to access another service protected by second factor, he is redirected to second factor step to complete authentication. Example 2: The user has already validated second factor. When he access auth service, he is redirected either to /loggedin page that displays an "already logged in" page or to the URL provided in the "redirect" query parameter.
32 lines
2.1 KiB
Gherkin
32 lines
2.1 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://basicauth.test.local:8080/secret.html"
|
|
And I'm redirected to "https://auth.test.local:8080/?redirect=https%3A%2F%2Fbasicauth.test.local%3A8080%2Fsecret.html"
|
|
And I login with user "john" and password "password"
|
|
And I'm redirected to "https://basicauth.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"
|
|
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 "TOTP"
|
|
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"
|
|
|
|
@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 "TOTP"
|
|
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" |