summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/login.py
blob: 0ac27c4673c589fce0f8bbe0dccc9e87ba4af05b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
#
# Copyright (c) 2016 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 <http://www.gnu.org/licenses/>.

from behave import given, when, then

from common import (
    fill_by_css_selector,
    find_element_by_css_selector)


@given('I am logged in Pixelated')
def login_user(context):
    login_page(context)
    enter_credentials(context)
    click_login(context)
    see_interstitial(context)
    _see_inbox(context)


@given(u'a user is accessing the login page')
@when(u'I open the login page')
def login_page(context):
    context.browser.get(context.login_url)


def _see_inbox(context):
    find_element_by_css_selector(context, '#compose', timeout=40)


@when(u'I enter username and password as credentials')
def enter_credentials(context):
    fill_by_css_selector(context, 'input[name="username"]', context.username)
    fill_by_css_selector(context, 'input[name="password"]', 'password')


@when(u'I click on the login button')
def click_login(context):
    find_element_by_css_selector(context, 'button[type="submit"]').click()


@then(u'I should see the fancy interstitial')
def see_interstitial(context):
    find_element_by_css_selector(context, 'section#hive-section')


@then(u'I should see the inbox')
def see_inbox(context):
    _see_inbox(context)


@then(u'I logout')
@when(u'I logout')
def click_logout(context):
    context.browser.refresh()
    find_element_by_css_selector(context, '#logout-form div').click()


@then(u'I logout from the header')  # noqa
@when(u'I logout from the header')
def click_logout(context):
    find_element_by_css_selector(context, 'button[name="logout"]').click()


@when(u'I should see the login page')
@then(u'I should see the login page')
def see_login_page(context):
    find_element_by_css_selector(context, 'form#login_form')