Slide 52
Slide 52 text
Feature: Instance Login with Single Sign-On
In order to access a secured resource on an instance (some web application)
As a user of the instance
I need to be able to log in using my central user account on the SSO server
Background:
Given I am not authenticated on the server or the instance
Scenario: Protected resource on instance redirects to server login
Given I am on the instance homepage
When I click on the link "Go to secure action"
Then I should be redirected to the server
And I should see a login form
Scenario: Login on server with correct credentials redirects to original URI
Given I am on the instance homepage
And I click on the link "Go to secure action"
When I fill in "Username" with "admin"
And I fill in "Password" with "password"
And I press "Login"
Then I should be redirected to the instance
And the URI should not contain SSO parameters
Scenario: Login forwards account information to instance
Given I am on the instance homepage