2017-09-03 13:02:38 +00:00
|
|
|
Feature: User is correctly redirected
|
2017-07-26 21:45:26 +00:00
|
|
|
|
2017-08-02 22:30:41 +00:00
|
|
|
Scenario: User is redirected to authelia when he is not authenticated
|
2017-09-03 13:22:09 +00:00
|
|
|
When I visit "https://public.test.local:8080"
|
2017-09-24 21:19:03 +00:00
|
|
|
Then I'm redirected to "https://auth.test.local:8080/?redirect=https%3A%2F%2Fpublic.test.local%3A8080%2F"
|
2017-07-26 21:45:26 +00:00
|
|
|
|
2017-09-21 20:07:34 +00:00
|
|
|
@need-registered-user-john
|
2017-08-02 22:30:41 +00:00
|
|
|
Scenario: User is redirected to home page after several authentication tries
|
2017-09-21 20:07:34 +00:00
|
|
|
When I visit "https://public.test.local:8080/secret.html"
|
|
|
|
And I login with user "john" and password "badpassword"
|
2017-10-08 14:28:10 +00:00
|
|
|
And I wait for notification to disappear
|
2017-08-02 22:30:41 +00:00
|
|
|
And I clear field "username"
|
|
|
|
And I login with user "john" and password "password"
|
2017-09-21 20:07:34 +00:00
|
|
|
And I use "REGISTERED" as TOTP token handle
|
2017-08-02 22:30:41 +00:00
|
|
|
And I click on "TOTP"
|
|
|
|
Then I'm redirected to "https://public.test.local:8080/secret.html"
|
|
|
|
|
2017-09-03 13:22:09 +00:00
|
|
|
Scenario: User Harry does not have access to admin domain and thus he must get an error 403
|
2017-08-02 22:30:41 +00:00
|
|
|
When I register TOTP and login with user "harry" and password "password"
|
2017-09-03 13:22:09 +00:00
|
|
|
And I visit "https://admin.test.local:8080/secret.html"
|
2017-09-22 15:53:18 +00:00
|
|
|
Then I get an error 403
|
|
|
|
|
|
|
|
Scenario: Redirection URL is propagated from restricted page to first factor
|
|
|
|
When I visit "https://public.test.local:8080/secret.html"
|
|
|
|
Then I'm redirected to "https://auth.test.local:8080/?redirect=https%3A%2F%2Fpublic.test.local%3A8080%2Fsecret.html"
|
|
|
|
|
|
|
|
Scenario: Redirection URL is propagated from first factor to second factor
|
|
|
|
Given I visit "https://auth.test.local:8080/"
|
|
|
|
And I login with user "john" and password "password"
|
|
|
|
And I register a TOTP secret called "Sec0"
|
|
|
|
When I visit "https://public.test.local:8080/secret.html"
|
|
|
|
And I login with user "john" and password "password"
|
|
|
|
Then I'm redirected to "https://auth.test.local:8080/secondfactor?redirect=https%3A%2F%2Fpublic.test.local%3A8080%2Fsecret.html"
|
|
|
|
|
|
|
|
Scenario: Redirection URL is used to send user from second factor to target page
|
|
|
|
Given I visit "https://auth.test.local:8080/"
|
|
|
|
And I login with user "john" and password "password"
|
|
|
|
And I register a TOTP secret called "Sec0"
|
|
|
|
When I visit "https://public.test.local:8080/secret.html"
|
|
|
|
And I login with user "john" and password "password"
|
|
|
|
And I use "Sec0" as TOTP token handle
|
|
|
|
And I click on "TOTP"
|
2017-09-21 20:07:34 +00:00
|
|
|
Then I'm redirected to "https://public.test.local:8080/secret.html"
|