2009-01-28 23:37:10 -05:00
|
|
|
Feature: Basic Authentication
|
|
|
|
|
|
|
|
As a developer
|
|
|
|
I want to be able to use a service that requires Basic Authentication
|
|
|
|
Because that is not an uncommon requirement
|
|
|
|
|
|
|
|
Scenario: Passing no credentials to a page requiring Basic Authentication
|
2010-07-07 08:54:22 -04:00
|
|
|
Given a restricted page at '/basic_auth.html'
|
|
|
|
When I call HTTParty#get with '/basic_auth.html'
|
2009-01-28 23:37:10 -05:00
|
|
|
Then it should return a response with a 401 response code
|
|
|
|
|
|
|
|
Scenario: Passing proper credentials to a page requiring Basic Authentication
|
|
|
|
Given a remote service that returns 'Authenticated Page'
|
2010-07-07 08:54:22 -04:00
|
|
|
And that service is accessed at the path '/basic_auth.html'
|
2009-01-28 23:37:10 -05:00
|
|
|
And that service is protected by Basic Authentication
|
|
|
|
And that service requires the username 'jcash' with the password 'maninblack'
|
2010-07-07 08:54:22 -04:00
|
|
|
When I call HTTParty#get with '/basic_auth.html' and a basic_auth hash:
|
2009-01-28 23:37:10 -05:00
|
|
|
| username | password |
|
|
|
|
| jcash | maninblack |
|
|
|
|
Then the return value should match 'Authenticated Page'
|