authelia/test/features/single-factor-domain.feature

16 lines
988 B
Gherkin
Raw Normal View History

Feature: User can access certain subdomains with single factor
Scenario: User is redirected to service after first factor if allowed
2018-04-25 07:30:21 +00:00
When I visit "https://login.example.com:8080/?rd=https://single_factor.example.com:8080/secret.html"
And I login with user "john" and password "password"
Then I'm redirected to "https://single_factor.example.com:8080/secret.html"
Scenario: Redirection after first factor fails if single_factor not allowed. It redirects user to first factor.
2018-04-25 07:30:21 +00:00
When I visit "https://login.example.com:8080/?rd=https://admin.example.com:8080/secret.html"
And I login with user "john" and password "password"
2018-04-25 07:30:21 +00:00
Then I'm redirected to "https://login.example.com:8080/?rd=https://admin.example.com:8080/secret.html"
Scenario: User can login using basic authentication
When I request "https://single_factor.example.com:8080/secret.html" with username "john" and password "password" using basic authentication
2018-04-25 07:30:21 +00:00
Then I receive the secret page