| Left: | ||
| Right: |
| LEFT | RIGHT |
|---|---|
| 1 # This file is part of the Adblock Plus web scripts, | 1 # This file is part of the Adblock Plus web scripts, |
| 2 # Copyright (C) 2006-2016 Eyeo GmbH | 2 # Copyright (C) 2006-2017 eyeo GmbH |
| 3 # | 3 # |
| 4 # Adblock Plus is free software: you can redistribute it and/or modify | 4 # Adblock Plus is free software: you can redistribute it and/or modify |
| 5 # it under the terms of the GNU General Public License version 3 as | 5 # it under the terms of the GNU General Public License version 3 as |
| 6 # published by the Free Software Foundation. | 6 # published by the Free Software Foundation. |
| 7 # | 7 # |
| 8 # Adblock Plus is distributed in the hope that it will be useful, | 8 # Adblock Plus is distributed in the hope that it will be useful, |
| 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of | 9 # but WITHOUT ANY WARRANTY; without even the implied warranty of |
| 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the | 10 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
| 11 # GNU General Public License for more details. | 11 # GNU General Public License for more details. |
| 12 # | 12 # |
| 13 # You should have received a copy of the GNU General Public License | 13 # You should have received a copy of the GNU General Public License |
| 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. | 14 # along with Adblock Plus. If not, see <http://www.gnu.org/licenses/>. |
| 15 | 15 |
| 16 import datetime | |
| 17 from csv import DictReader | |
| 18 from urllib import urlencode | 16 from urllib import urlencode |
| 19 from urllib2 import urlopen, HTTPError | 17 from urllib2 import urlopen, HTTPError |
| 18 from csv import DictReader | |
| 20 | 19 |
| 21 import pytest | 20 import pytest |
| 22 from wsgi_intercept import (urllib_intercept, add_wsgi_intercept, | 21 from wsgi_intercept import (urllib_intercept, add_wsgi_intercept, |
| 23 remove_wsgi_intercept) | 22 remove_wsgi_intercept) |
| 24 | 23 |
| 25 from sitescripts.formmail.web import formmail2 | 24 from sitescripts.formmail.web import formmail2 |
| 26 | 25 |
| 26 HOST = 'test.local' | |
| 27 LOG_PORT = 80 | |
| 28 NO_LOG_PORT = 81 | |
| 29 | |
| 27 | 30 |
| 28 @pytest.fixture | 31 @pytest.fixture |
| 29 def form_config(): | 32 def log_path(tmpdir): |
| 33 return str(tmpdir.join('test.csv_log')) | |
| 34 | |
| 35 | |
| 36 @pytest.fixture | |
| 37 def log_form_config(): | |
| 30 return formmail2.conf_parse(formmail2.get_config_items())['test'] | 38 return formmail2.conf_parse(formmail2.get_config_items())['test'] |
| 31 | 39 |
| 32 | 40 |
| 33 @pytest.fixture | 41 @pytest.fixture |
| 34 def form_handler(form_config, log_path): | 42 def form_config(): |
| 35 # override configured path to log file with tmpdir path | 43 config = formmail2.conf_parse(formmail2.get_config_items())['test'] |
| 36 form_config['csv_log'].value = log_path | 44 del config['csv_log'] |
| 37 return formmail2.make_handler('test', form_config)[1] | 45 return config |
| 38 | 46 |
| 39 | 47 |
| 40 @pytest.fixture | 48 @pytest.fixture |
| 41 def log_path(form_config, tmpdir): | 49 def form_handler(log_path, form_config, log_form_config): |
| 42 return str(tmpdir.join('test.csv_log')) | 50 """ Create two handlers, one that logs and another that doesn't """ |
| 51 log_form_config['csv_log'].value = log_path | |
| 52 return (formmail2.make_handler('test', log_form_config)[1], | |
| 53 formmail2.make_handler('test', form_config)[1]) | |
| 43 | 54 |
| 44 | 55 |
| 45 # We make this a fixture instead of a constant so we can modify it in each | 56 # We make this a fixture instead of a constant so we can modify it in each |
| 46 # test as needed without affecting other tests. | 57 # test as needed without affecting other tests. |
| 47 @pytest.fixture | 58 @pytest.fixture |
| 48 def form_data(): | 59 def form_data(): |
| 49 return { | 60 return { |
| 50 'email': 'john_doe@gmail.com', | 61 'email': 'john_doe@gmail.com', |
| 51 'mandatory': 'john_doe@gmail.com', | 62 'mandatory': 'john_doe@gmail.com', |
| 52 'non_mandatory_message': 'Once upon a time\nthere lived a king.', | 63 'non_mandatory_message': 'Once upon a time\nthere lived a king.', |
| 53 'non_mandatory_email': 'test@test.com', | 64 'non_mandatory_email': 'test@test.com', |
| 54 } | 65 } |
| 55 | 66 |
| 56 | 67 |
| 57 @pytest.fixture | 68 @pytest.fixture |
| 58 def utf8_form_data(): | 69 def response_for(form_handler): |
| 59 return { | 70 """ Registers two intercepts, returns responses for them based on bool """ |
| 60 'email': 'john_doe@gmail.com', | 71 urllib_intercept.install_opener() |
| 61 'mandatory': 'john_doe@gmail.com', | 72 add_wsgi_intercept(HOST, LOG_PORT, lambda: form_handler[0]) |
| 62 'non_mandatory_message': '\xc3\xb6', | 73 add_wsgi_intercept(HOST, NO_LOG_PORT, lambda: form_handler[1]) |
|
Vasily Kuznetsov
2017/02/28 18:38:49
Perhaps we could make this by just taking `form_da
Jon Sonesen
2017/03/07 12:11:23
Yes, I agree
| |
| 63 'non_mandatory_email': 'test@test.com', | |
| 64 } | |
| 65 | 74 |
| 66 | 75 def response_for(data, log=False): |
| 67 @pytest.fixture | 76 if log: |
| 68 def response_for(form_handler, log_path): | 77 url = 'http://{}:{}'.format(HOST, LOG_PORT) |
| 69 host, port = 'test.local', 80 | 78 else: |
| 70 urllib_intercept.install_opener() | 79 url = 'http://{}:{}'.format(HOST, NO_LOG_PORT) |
| 71 add_wsgi_intercept(host, port, lambda: form_handler) | |
| 72 url = 'http://{}:{}'.format(host, port) | |
| 73 | |
| 74 def response_for(data): | |
| 75 if data is None: | 80 if data is None: |
| 76 response = urlopen(url) | 81 response = urlopen(url) |
| 77 else: | 82 else: |
| 78 response = urlopen(url, urlencode(data)) | 83 response = urlopen(url, urlencode(data)) |
| 79 return response.code, response.read() | 84 return response.code, response.read() |
| 80 | 85 |
| 81 yield response_for | 86 yield response_for |
| 82 remove_wsgi_intercept() | 87 remove_wsgi_intercept() |
| 83 | 88 |
| 84 | 89 |
| 90 @pytest.fixture | |
| 91 def sm_mock(mocker): | |
| 92 return mocker.patch('sitescripts.formmail.web.formmail2.sendMail') | |
| 93 | |
| 94 | |
| 95 @pytest.mark.parametrize('key,message', [ | |
| 96 ('url', 'No URL configured for form handler: test'), | |
| 97 ('fields', 'No fields configured for form handler: test'), | |
| 98 ('template', 'No template configured for form handler: test'), | |
| 99 ]) | |
| 100 def test_config_errors(key, message, form_config): | |
| 101 del form_config[key] | |
| 102 with pytest.raises(Exception) as error: | |
| 103 formmail2.make_handler('test', form_config)[1] | |
| 104 assert error.value.message == message | |
| 105 | |
| 106 | |
| 107 @pytest.mark.parametrize('field,message', [ | |
| 108 (('new_field', 'foo'), 'Unexpected field/fields: new_field'), | |
| 109 (('mandatory', ''), 'No mandatory entered'), | |
| 110 (('non_mandatory_email', 'asfaf'), 'Invalid email'), | |
| 111 (('email', 'asfaf'), 'You failed the email validation'), | |
| 112 (('email', ''), 'You failed the email test'), | |
| 113 ]) | |
| 114 def test_http_errs(field, message, response_for, form_data, sm_mock): | |
| 115 key, value = field | |
| 116 form_data[key] = value | |
| 117 with pytest.raises(HTTPError) as error: | |
| 118 response_for(form_data) | |
| 119 assert error.value.read() == message | |
| 120 | |
| 121 | |
| 122 @pytest.mark.parametrize('field,expected', [ | |
| 123 (('non_mandatory_message', '\xc3\xb6'), (200, '')), | |
| 124 (('non_mandatory_message', ''), (200, '')), | |
| 125 ]) | |
| 126 def test_success(field, expected, log_path, response_for, form_data, sm_mock): | |
| 127 key, value = field | |
| 128 form_data[key] = value | |
| 129 assert response_for(form_data, log=False) == expected | |
| 130 assert sm_mock.call_count == 1 | |
| 131 | |
| 132 params = sm_mock.call_args[0][1]['fields'] | |
| 133 assert set(params.keys()) == set(form_data.keys()) | |
| 134 for key, value in form_data.items(): | |
| 135 assert params[key] == value.decode('utf8') | |
| 136 | |
| 137 assert response_for(form_data, log=True) == expected | |
| 138 assert sm_mock.call_count == 2 | |
| 139 | |
| 140 assert response_for(form_data, log=True) == expected | |
| 141 assert sm_mock.call_count == 3 | |
| 142 | |
| 143 with open(log_path) as log_file: | |
| 144 reader = DictReader(log_file) | |
| 145 row = reader.next() | |
| 146 # rows should not be equal because the time field | |
| 147 # is added by the logging function. | |
| 148 assert row != reader.next() | |
| 149 | |
| 150 | |
| 151 def test_config_field_errors(form_config): | |
| 152 form_config['fields'] = {} | |
| 153 with pytest.raises(Exception) as error: | |
| 154 formmail2.make_handler('test', form_config)[1] | |
| 155 assert error.value.message == 'No fields configured for form handler: test' | |
| 156 | |
| 157 | |
| 158 def test_config_template_errors(form_config): | |
| 159 form_config['template'].value = 'no' | |
| 160 with pytest.raises(Exception) as error: | |
| 161 formmail2.make_handler('test', form_config)[1] | |
| 162 assert error.value.message == 'Template not found at: no' | |
| 163 | |
| 164 | |
| 85 def test_config_parse(form_config): | 165 def test_config_parse(form_config): |
| 86 assert form_config['url'].value == 'test/apply/submit' | 166 assert form_config['url'].value == 'test/apply/submit' |
| 87 assert form_config['fields']['email'].value == 'mandatory, email' | 167 assert form_config['fields']['email'].value == 'mandatory, email' |
| 88 | 168 |
| 89 | 169 |
| 90 def test_success(response_for, form_data, mocker): | 170 def test_sendmail_fail(log_path, response_for, form_data, sm_mock): |
| 91 sm_mock = mocker.patch('sitescripts.formmail.web.formmail2.sendMail') | 171 sm_mock.side_effect = Exception('Sendmail Fail') |
| 92 assert response_for(form_data) == (200, '') | 172 with pytest.raises(HTTPError): |
| 93 assert sm_mock.call_count == 1 | 173 response_for(form_data, log=True) |
| 94 params = sm_mock.call_args[0][1]['fields'] | |
| 95 assert set(params.keys()) == set(form_data.keys()) | |
| 96 for key, value in form_data.items(): | |
| 97 assert params[key] == value | |
| 98 | 174 |
| 99 | 175 with open(log_path) as log_file: |
| 100 def test_utf8_success(response_for, utf8_form_data, mocker): | 176 row = DictReader(log_file).next() |
| 101 sm_mock = mocker.patch('sitescripts.formmail.web.formmail2.sendMail') | 177 assert row != form_data |
| 102 assert response_for(utf8_form_data) == (200, '') | |
| 103 assert sm_mock.call_count == 1 | |
| 104 params = sm_mock.call_args[0][1]['fields'] | |
| 105 assert set(params.keys()) == set(utf8_form_data.keys()) | |
| 106 for key, value in utf8_form_data.items(): | |
| 107 assert params[key] == value | |
| 108 | |
| 109 | |
| 110 def test_non_mandatory_no_msg(response_for, form_data, mocker): | |
| 111 mocker.patch('sitescripts.formmail.web.formmail2.sendMail') | |
| 112 form_data['non_mandatory'] = '' | |
| 113 assert response_for(form_data) == (200, '') | |
| 114 | |
| 115 | |
| 116 def test_invalid_email_cstm_msg(response_for, form_data, mocker, form_config): | |
| 117 mocker.patch('sitescripts.formmail.web.formmail2.sendMail') | |
| 118 form_data['email'] = 'bademail' | |
| 119 with pytest.raises(HTTPError) as error: | |
| 120 response_for(form_data) | |
| 121 assert error.value.read() == 'You failed the email validation' | |
| 122 | |
| 123 | |
| 124 def test_valid_nan_mandatory_email(response_for, form_data, mocker): | |
| 125 mocker.patch('sitescripts.formmail.web.formmail2.sendMail') | |
| 126 form_data['non_mandatory_email'] = 'asfaf' | |
| 127 with pytest.raises(HTTPError) as error: | |
| 128 response_for(form_data) | |
| 129 assert error.value.read() == 'Invalid email' | |
| 130 | |
| 131 del form_data['non_mandatory_email'] | |
| 132 assert response_for(form_data) == (200, '') | |
| 133 | |
| 134 | |
| 135 def test_mandatory_fail_dflt_msg(response_for, form_data, mocker): | |
| 136 mocker.patch('sitescripts.formmail.web.formmail2.sendMail') | |
| 137 del form_data['mandatory'] | |
| 138 with pytest.raises(HTTPError) as error: | |
| 139 response_for(form_data) | |
| 140 assert error.value.read() == 'No mandatory entered' | |
| 141 | |
| 142 | |
| 143 def test_collect_with_tmpl(log_path, form_data): | |
| 144 form_data['time'] = 'test' | |
| 145 formmail2.collect_formdata(form_data, log_path) | |
| 146 with open(log_path) as csvfile: | |
| 147 assert DictReader(csvfile).next() == form_data | |
| 148 | |
| 149 | |
| 150 def test_collect_no_tmpl(log_path, form_data, form_config): | |
| 151 del(form_config['template']) | |
| 152 form_data['time'] = 'test' | |
| 153 formmail2.collect_formdata(form_data, log_path) | |
| 154 with open(log_path) as csvfile: | |
| 155 assert DictReader(csvfile).next() == form_data | |
| 156 | |
| 157 | |
| 158 def test_fieldnames(log_path, form_data): | |
| 159 form_data['time'] = str(datetime.datetime.now()) | |
| 160 formmail2.collect_formdata(form_data, log_path) | |
| 161 with open(log_path) as csvfile: | |
| 162 for field in DictReader(csvfile).fieldnames: | |
| 163 assert field in tuple(form_data.keys()) | |
| 164 | |
| 165 | |
| 166 def test_field_err(form_config, form_data, log_path): | |
| 167 """ | |
| 168 Submits a form that does not have the dame fields as previous submissions | |
| 169 that have the same form name, asserts that proper message is returned and | |
| 170 the row was properly written | |
| 171 """ | |
| 172 formmail2.collect_formdata(form_data, log_path) | |
| 173 del(form_config['fields']['email']) | |
| 174 del(form_data['email']) | |
| 175 try: | |
| 176 formmail2.collect_formdata(form_data, log_path) | |
| 177 except Exception as e: | |
| 178 assert e.message == ('Field names have changed, error log ' | |
| 179 'written to {}_error').format(log_path) | |
| 180 | |
| 181 with open(log_path+'_error') as error_log: | |
| 182 assert DictReader(error_log).next() == form_data | |
| 183 | 178 |
| 184 | 179 |
| 185 def test_append_field_err(form_config, form_data, log_path): | 180 def test_append_field_err(form_config, form_data, log_path): |
| 181 """ Checks that error logs are correctly written and appended | |
| 182 | |
| 183 Submits three forms, the second two have different fields to the first | |
| 184 and should be added to the same log file as each other, and be identical | |
| 186 """ | 185 """ |
| 187 Submits two identical forms that do not match the previous fields | 186 formmail2.log_formdata(form_data, log_path) |
| 188 found in the log file, triggering two rows to be added to the error | 187 del form_data['email'] |
| 189 log and asserting the proper message is returned and that the rows | |
| 190 were written as expected | |
| 191 """ | |
| 192 formmail2.collect_formdata(form_data, log_path) | |
| 193 del(form_config['fields']['email']) | |
| 194 del(form_data['email']) | |
| 195 try: | |
| 196 formmail2.collect_formdata(form_data, log_path) | |
| 197 except Exception: | |
| 198 pass | |
| 199 try: | |
| 200 formmail2.collect_formdata(form_data, log_path) | |
| 201 except Exception as e: | |
| 202 assert e.message == ('Field names have changed, error log' | |
| 203 ' appended to {}_error').format(log_path) | |
| 204 | 188 |
| 205 with open(log_path+'_error') as error_log: | 189 # submit two forms with fields that dont match the config |
| 190 # this should append the second form to the error log file | |
| 191 with pytest.raises(Exception): | |
| 192 formmail2.log_formdata(form_data, log_path) | |
| 193 with pytest.raises(Exception): | |
| 194 formmail2.log_formdata(form_data, log_path) | |
| 195 | |
| 196 with open(log_path + '_error') as error_log: | |
| 206 reader = DictReader(error_log) | 197 reader = DictReader(error_log) |
| 207 # two identical rows should be in the error log | |
| 208 assert reader.next() == form_data | 198 assert reader.next() == form_data |
| 209 assert reader.next() == form_data | 199 assert reader.next() == form_data |
| 210 | |
| 211 | |
| 212 def test_append_log(form_data, log_path): | |
| 213 """ | |
| 214 collect data twice, altering a field in the second call | |
| 215 assert that the 2nd row is equal to the resulting form data | |
| 216 """ | |
| 217 form_data['time'] = str(datetime.datetime.now()) | |
| 218 formmail2.collect_formdata(form_data, log_path) | |
| 219 form_data['email'] = 'test@foo.com' | |
| 220 formmail2.collect_formdata(form_data, log_path) | |
| 221 with open(log_path) as csvfile: | |
| 222 reader = DictReader(csvfile, fieldnames=form_data.keys()) | |
| 223 # header | |
| 224 reader.next() | |
| 225 row1 = reader.next() | |
| 226 row2 = reader.next() | |
| 227 | |
| 228 assert row2['email'] == form_data['email'] | |
| 229 assert row2['email'] != row1['email'] | |
| LEFT | RIGHT |