summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/mail_view.py
diff options
context:
space:
mode:
authorTiago Ferraz <tiago.ferraz@gmail.com>2015-03-23 10:27:39 -0300
committerTiago Ferraz <tiago.ferraz@gmail.com>2015-03-26 12:12:40 -0300
commitaab5c4e3f721431591f3709cecb2e2e58ab9774e (patch)
treec9d46bb5378bf77c8b20dcb1adc798e0ce7b5b2c /service/test/functional/features/steps/mail_view.py
parent68a0f94cd15b661caa2b4ea87eef55972c8bff25 (diff)
New test that use checkboxes. Removal of hamcrest lib, code refactoring.
A new test was created to use Pixelated checkboxes and the buttons at the top. Also the lib hamcrest was removed and code refactored to be more pythonic. A new method after_step will log information in case of step failures.
Diffstat (limited to 'service/test/functional/features/steps/mail_view.py')
-rw-r--r--service/test/functional/features/steps/mail_view.py20
1 files changed, 10 insertions, 10 deletions
diff --git a/service/test/functional/features/steps/mail_view.py b/service/test/functional/features/steps/mail_view.py
index 98591aa4..5755f555 100644
--- a/service/test/functional/features/steps/mail_view.py
+++ b/service/test/functional/features/steps/mail_view.py
@@ -15,19 +15,18 @@
# along with Pixelated. If not, see <http://www.gnu.org/licenses/>.
from selenium.webdriver.common.keys import Keys
from common import *
-from hamcrest import *
@then('I see that the subject reads \'{subject}\'')
def impl(context, subject):
e = find_element_by_css_selector(context, '#mail-view .subject')
- assert_that(e.text, equal_to(subject))
+ assert e.text == subject
@then('I see that the body reads \'{expected_body}\'')
def impl(context, expected_body):
e = find_element_by_css_selector(context, '#mail-view .bodyArea')
- assert_that(e.text, equal_to(expected_body))
+ assert e.text == expected_body
@then('that email has the \'{tag}\' tag')
@@ -35,7 +34,7 @@ def impl(context, tag):
wait_until_element_is_visible_by_locator(context, (By.CSS, '#mail-view .tagsArea .tag'))
elements = find_elements_by_css_selector(context, '#mail-view .tagsArea .tag')
tags = [e.text for e in elements]
- assert_that(tags, has_item(tag.upper()))
+ assert tag in tags
@when('I add the tag \'{tag}\' to that mail')
@@ -52,15 +51,15 @@ def impl(context, tag):
@when('I reply to it')
def impl(context):
click_button(context, 'Reply')
- click_button(context, 'Send')
context.reply_subject = reply_subject(context)
+ click_button(context, 'Send')
-
+#NOT BEING USED
@then('I see if the mail has html content')
def impl(context):
e = find_element_by_css_selector(context, '#mail-view .bodyArea')
h2 = e.find_element_by_css_selector("h2[style*='color: #3f4944']")
- assert_that(h2.text, contains_string('cborim'))
+ assert 'cborim' in h2.text
@when('I try to delete the first mail')
@@ -70,7 +69,7 @@ def impl(context):
context.browser.execute_script("$('#delete-button-top').click();")
e = find_element_by_css_selector(context, '#user-alerts')
- assert_that(e.text, equal_to('Your message was moved to trash!'))
+ assert 'Your message was moved to trash!' == e.text
@when('I choose to forward this mail')
@@ -90,7 +89,7 @@ def impl(context):
def impl(context):
e = find_element_by_css_selector(context, '.tagsArea')
tags = e.find_elements_by_css_selector('.tag')
- assert_that(len(tags), greater_than(0))
+ assert len(tags) > 0
for tag in tags:
tag.click()
@@ -106,4 +105,5 @@ def impl(context):
cc = find_element_by_css_selector(context, '.msg-header .cc')
bcc = find_element_by_css_selector(context, '.msg-header .bcc')
- assert_that(cc.text, matches_regexp('[a-zA-Z0-9_.+-]+@[a-zA-Z0-9-]+\.[a-zA-Z0-9-.]+'))
+ assert cc is not None
+ assert bcc is not None