summaryrefslogtreecommitdiff
path: root/service/test/functional/features/steps/compose.py
diff options
context:
space:
mode:
authorDuda Dornelles <ddornell@thoughtworks.com>2014-10-09 12:20:18 +0200
committerDuda Dornelles <ddornell@thoughtworks.com>2014-10-09 12:25:29 +0200
commitf28906c1c417800f5823dc937a7671a04d14193c (patch)
tree6704c2ae664e4b6b481427f1f5770a1f15ba0ba9 /service/test/functional/features/steps/compose.py
parent0bad14f4b0e6dd5128660d94a436463cbe7dc720 (diff)
moving fake-service features to service, getting rid of setup.py test requires and getting them into test_requirements.txt
Diffstat (limited to 'service/test/functional/features/steps/compose.py')
-rw-r--r--service/test/functional/features/steps/compose.py69
1 files changed, 69 insertions, 0 deletions
diff --git a/service/test/functional/features/steps/compose.py b/service/test/functional/features/steps/compose.py
new file mode 100644
index 00000000..5a61a8e5
--- /dev/null
+++ b/service/test/functional/features/steps/compose.py
@@ -0,0 +1,69 @@
+#
+# Copyright (c) 2014 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
+from selenium.webdriver.common.by import By
+from selenium.webdriver.support import expected_conditions as EC
+from selenium.webdriver.support.wait import WebDriverWait
+from time import sleep
+from common import *
+from hamcrest import *
+
+
+@given('I compose a message with')
+def impl(context):
+ take_screenshot(context, '/tmp/screenshot.jpeg')
+ toggle = context.browser.find_element_by_id('compose-mails-trigger')
+ toggle.click()
+
+ for row in context.table:
+ fill_by_xpath(context, '//*[@id="subject"]', row['subject'])
+ fill_by_xpath(context, '//*[@id="text-box"]', row['body'])
+
+
+@given("for the '{recipients_field}' field I type '{to_type}' and chose the first contact that shows")
+def choose_impl(context, recipients_field, to_type):
+ browser = context.browser
+ browser.find_element_by_css_selector('#recipients-to-area span input.tt-input').click()
+ recipients_field = recipients_field.lower()
+ css_selector = '#recipients-%s-area' % recipients_field
+ recipients_element = browser.find_element_by_css_selector(css_selector)
+ recipients_element.find_element_by_css_selector('.tt-input').send_keys(to_type)
+ wait_until_element_is_visible_by_locator(context, (By.CSS_SELECTOR, '.tt-dropdown-menu div div'))
+ browser.find_element_by_css_selector('.tt-dropdown-menu div div').click()
+
+
+@then("for the '{recipients_field}' field I type '{to_type}' and chose the first contact that shows")
+def choose_impl(context, recipients_field, to_type):
+ recipients_field = recipients_field.lower()
+ browser = context.browser
+ field = browser.find_element_by_css_selector('#recipients-%s-area .tt-input' % recipients_field)
+ field.send_keys(to_type)
+ sleep(1)
+ find_element_by_css_selector(context, '.tt-dropdown-menu div div').click()
+
+
+@given('I save the draft')
+def save_impl(context):
+ context.browser.find_element_by_id('draft-button').click()
+
+
+@when('I open the saved draft and send it')
+def send_impl(context):
+ context.execute_steps(u"when I select the tag 'drafts'")
+ context.execute_steps(u"when I open the first mail in the mail list")
+ assert_that(is_not(page_has_css(context, '#send-button[disabled]')))
+ click_button(context, 'Send')
+ element_should_have_content(context, '#user-alerts', 'Your message was sent!')