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
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
|
#
# 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/>.
import os
from email.MIMEMultipart import MIMEMultipart
from email.mime.application import MIMEApplication
from email.mime.text import MIMEText
from uuid import uuid4
from behave import given, then, when
from crochet import wait_for
from common import (
fill_by_css_selector,
find_element_by_css_selector,
find_elements_by_css_selector,
page_has_css)
@given(u'I have a mail with an attachment in my inbox')
def add_mail_with_attachment_impl(context):
subject = 'Hi! This the subject %s' % uuid4()
mail = build_mail_with_attachment(subject)
load_mail_into_soledad(context, mail)
context.last_subject = subject
def build_mail_with_attachment(subject):
mail = MIMEMultipart()
mail['Subject'] = subject
mail.attach(MIMEText(u'a utf8 message', _charset='utf-8'))
attachment = MIMEApplication('pretend to be binary attachment data')
attachment.add_header('Content-Disposition', 'attachment', filename='filename.txt')
mail.attach(attachment)
return mail
@wait_for(timeout=10.0)
def load_mail_into_soledad(context, mail):
return context.single_user_client.mail_store.add_mail('INBOX', mail.as_string())
@then(u'I see the mail has an attachment')
def step_impl(context):
attachments_list = find_elements_by_css_selector(context, '.mail-read-view__attachments-item')
assert len(attachments_list) == 1
@when(u'I find an attachment icon')
def find_icon(context):
assert find_element_by_css_selector(context, '#attachment-button .fa.fa-paperclip')
@when(u'I try to upload a file bigger than 5MB')
def upload_big_file(context):
base_dir = "test/functional/features/files/"
fname = "over_5mb.data"
path = os.path.abspath(os.path.join(base_dir, fname))
context.browser.execute_script("$('#fileupload').removeAttr('hidden');")
fill_by_css_selector(context, '#fileupload', path)
find_element_by_css_selector(context, '#upload-error-message')
@then(u'I see an upload error message')
def show_upload_error_message(context):
upload_error_message = find_elements_by_css_selector(context, '#upload-error-message')
error_messages = [e.text for e in upload_error_message]
assert "Upload failed. This file exceeds the 1MB limit." in error_messages
@when(u'I dismiss the error message')
def dismiss_error_message(context):
dismiss_button = find_elements_by_css_selector(context, '#dismiss-button')
assert len(dismiss_button) > 0
for button in dismiss_button:
button.click()
@then(u'It should not show the error message anymore')
def should_not_show_upload_error_message(context):
upload_error_message_is_present = page_has_css(context, '#upload-error-message')
assert not upload_error_message_is_present
@when(u'I upload a valid file')
def upload_attachment(context):
base_dir = "test/functional/features/files/"
fname = "5mb.data"
path = os.path.abspath(os.path.join(base_dir, fname))
fill_by_css_selector(context, '#fileupload', path)
attachment_list_item = find_element_by_css_selector(context, '#attachment-list-item li a')
assert attachment_list_item.text == "%s (5.00 Mb)" % fname
@when(u'remove the file')
def click_remove_icon(context):
remove_icon = find_element_by_css_selector(context, '#attachment-list-item i.remove-icon')
remove_icon.click()
@then(u'I should not see it attached')
def assert_attachment_removed(context):
attachments_list_li = context.browser.find_elements_by_css_selector('#attachment-list-item li a')
assert len(attachments_list_li) == 0
|