Skip to content
Snippets Groups Projects
Verified Commit 68becaa9 authored by Mark's avatar Mark
Browse files

Refactor open url step implementation

parent 7b81f601
No related branches found
No related tags found
1 merge request!5Service Integration
Pipeline #405 passed with stages
in 6 minutes and 12 seconds
...@@ -38,8 +38,8 @@ def before_tag(context, tag): ...@@ -38,8 +38,8 @@ def before_tag(context, tag):
values = dict() values = dict()
userdata = context.config.userdata userdata = context.config.userdata
values['url'] = userdata.get('url') values['url'] = userdata.get('url')
values['logout_url'] = userdata.get('logout_url') values['logout'] = userdata.get('logout_url')
values['userinfo_url'] = userdata.get('userinfo_url') values['userinfo'] = userdata.get('userinfo_url')
values['username'] = userdata.get('username') values['username'] = userdata.get('username')
values['username2'] = userdata.get('username2') values['username2'] = userdata.get('username2')
values['password'] = userdata.get('password') values['password'] = userdata.get('password')
......
...@@ -4,7 +4,7 @@ Feature: Test login-provder function ...@@ -4,7 +4,7 @@ Feature: Test login-provder function
I want to be able to login to an OAS App I want to be able to login to an OAS App
Scenario: Open the oAuth application Scenario: Open the oAuth application
When I open the URL When I open the URL "url"
Then I wait on element "input#username" for 1000ms to be visible Then I wait on element "input#username" for 1000ms to be visible
Scenario: Login with a valid user with access to application Scenario: Login with a valid user with access to application
...@@ -21,20 +21,20 @@ Scenario: Login with a valid user with access to application ...@@ -21,20 +21,20 @@ Scenario: Login with a valid user with access to application
And I expect that element "body" contains the text "access_token" And I expect that element "body" contains the text "access_token"
Scenario: Get OpenID Connect userdata for testuser Scenario: Get OpenID Connect userdata for testuser
Given I open the userinfo URL Given I open the url "userinfo"
Then I expect that the "preferred_username" in the json output is "username" Then I expect that the "preferred_username" in the json output is "username"
And I expect that the "email" in the json output is "email" And I expect that the "email" in the json output is "email"
And I expect that the "openappstack_roles" in the json output contains "role" And I expect that the "openappstack_roles" in the json output contains "role"
And I expect that the "name" in the json output is "username" And I expect that the "name" in the json output is "username"
Scenario: Logout Scenario: Logout
Given I open the logout URL Given I open the URL "logout"
Then I wait on element "input#username" for 1000ms to be visible Then I wait on element "input#username" for 1000ms to be visible
And I expect that element "input#password" is visible And I expect that element "input#password" is visible
And I expect that element "input#submit" is visible And I expect that element "input#submit" is visible
Scenario: Login with a valid user without access to an application Scenario: Login with a valid user without access to an application
Given I open the URL Given I open the URL "url"
Then I wait on element "input#username" for 1000ms to be visible Then I wait on element "input#username" for 1000ms to be visible
And I expect that element "input#password" is visible And I expect that element "input#password" is visible
And I expect that element "input#submit" is visible And I expect that element "input#submit" is visible
......
...@@ -10,24 +10,13 @@ from behave_webdriver.steps import * ...@@ -10,24 +10,13 @@ from behave_webdriver.steps import *
def before_all(context): def before_all(context):
pass # login and save cookies here pass # login and save cookies here
@when(u'I open the URL') @when(u'I open the URL "{url}"')
@given(u'I open the URL') @given(u'I open the URL "{url}"')
def step_impl(context): def step_impl(context, url):
"""Open oauth client URL.""" """Open URL."""
context.behave_driver.get(context.oauth['url']) if url in context.oauth:
url = context.oauth[url]
context.behave_driver.get(url)
@when(u'I open the logout URL')
@given(u'I open the logout URL')
def step_impl(context):
"""Logout by visitng the logout url"""
context.behave_driver.get(context.oauth['logout_url'])
@when(u'I open the userinfo URL')
@given(u'I open the userinfo URL')
def step_impl(context):
"""Logout by visitng the logout url"""
context.behave_driver.get(context.oauth['userinfo_url'])
@when(u'I enter the "{attribute}" in the inputfield "{element}"') @when(u'I enter the "{attribute}" in the inputfield "{element}"')
def step_impl(context, attribute, element): def step_impl(context, attribute, element):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment