From 715419e88dcbc4d5f0b8286d917b26b8d425d85b Mon Sep 17 00:00:00 2001 From: Anike Arni Date: Mon, 20 Mar 2017 15:45:41 -0300 Subject: [#927] Creates functional tests for backup account flow with @tayanefernandes --- .../functional/features/account_recovery.feature | 25 ++++++++++++++++++++++ .../functional/features/steps/backup_account.py | 17 ++++++++++++++- 2 files changed, 41 insertions(+), 1 deletion(-) create mode 100644 service/test/functional/features/account_recovery.feature (limited to 'service') diff --git a/service/test/functional/features/account_recovery.feature b/service/test/functional/features/account_recovery.feature new file mode 100644 index 00000000..ec38399f --- /dev/null +++ b/service/test/functional/features/account_recovery.feature @@ -0,0 +1,25 @@ +# +# Copyright (c) 2017 ThoughtWorks, Inc. +# +# Pixelated is free software: you can redistribute it and/or modify +# it under the terms of the GNU Affero General Public License as published by +# the Free Software Foundation, either version 3 of the License, or +# (at your option) any later version. +# +# Pixelated is distributed in the hope that it will be useful, +# but WITHOUT ANY WARRANTY; without even the implied warranty of +# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the +# GNU Affero General Public License for more details. +# +# You should have received a copy of the GNU Affero General Public License +# along with Pixelated. If not, see . + +Feature: Account Recovery + As a user of Pixelated + I want to recover my account + So that I can see my emails if I lose my password + + Scenario: User sets up a backup account + Given I am on the backup account page + When I submit my email + Then I see the confirmation page diff --git a/service/test/functional/features/steps/backup_account.py b/service/test/functional/features/steps/backup_account.py index 914309f2..916198f6 100644 --- a/service/test/functional/features/steps/backup_account.py +++ b/service/test/functional/features/steps/backup_account.py @@ -14,9 +14,24 @@ # You should have received a copy of the GNU Affero General Public License # along with Pixelated. If not, see . -from behave import given +from behave import given, when, then + +from common import ( + fill_by_css_selector, + find_element_by_css_selector) @given(u'I am on the backup account page') def backup_account_page(context): context.browser.get(context.backup_account_url) + + +@when(u'I submit my email') +def submit_backup_email(context): + fill_by_css_selector(context, 'input[name="email"]', 'test@test.com') + find_element_by_css_selector(context, 'button[type="submit"]').click() + + +@then(u'I see the confirmation page') +def confirmation_page(context): + find_element_by_css_selector(context, '.confirmation-container') -- cgit v1.2.3