fixed tests and defaults
[mediagoblin.git] / mediagoblin / tests / test_api.py
CommitLineData
57c6473a
JW
1# GNU MediaGoblin -- federated, autonomous media hosting
2# Copyright (C) 2011, 2012 MediaGoblin contributors. See AUTHORS.
3#
4# This program is free software: you can redistribute it and/or modify
5# it under the terms of the GNU Affero General Public License as published by
6# the Free Software Foundation, either version 3 of the License, or
7# (at your option) any later version.
8#
9# This program is distributed in the hope that it will be useful,
10# but WITHOUT ANY WARRANTY; without even the implied warranty of
11# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
12# GNU Affero General Public License for more details.
13#
14# You should have received a copy of the GNU Affero General Public License
15# along with this program. If not, see <http://www.gnu.org/licenses/>.
16
17
18import logging
19import base64
20
5c2ece74
CAW
21import pytest
22
57c6473a
JW
23from mediagoblin import mg_globals
24from mediagoblin.tools import template, pluginapi
5c2ece74 25from mediagoblin.tests.tools import fixture_add_user
b698c94d
E
26from .resources import GOOD_JPG, GOOD_PNG, EVIL_FILE, EVIL_JPG, EVIL_PNG, \
27 BIG_BLUE
57c6473a
JW
28
29
30_log = logging.getLogger(__name__)
31
57c6473a
JW
32
33class TestAPI(object):
958080be 34 def setup(self):
57c6473a
JW
35 self.db = mg_globals.database
36
37 self.user_password = u'4cc355_70k3N'
38 self.user = fixture_add_user(u'joapi', self.user_password)
39
5c2ece74
CAW
40 def login(self, test_app):
41 test_app.post(
57c6473a
JW
42 '/auth/login/', {
43 'username': self.user.username,
44 'password': self.user_password})
45
46 def get_context(self, template_name):
47 return template.TEMPLATE_TEST_CONTEXT[template_name]
48
49 def http_auth_headers(self):
50 return {'Authorization': 'Basic {0}'.format(
51 base64.b64encode(':'.join([
52 self.user.username,
53 self.user_password])))}
54
5c2ece74 55 def do_post(self, data, test_app, **kwargs):
57c6473a
JW
56 url = kwargs.pop('url', '/api/submit')
57 do_follow = kwargs.pop('do_follow', False)
58
59 if not 'headers' in kwargs.keys():
60 kwargs['headers'] = self.http_auth_headers()
61
5c2ece74 62 response = test_app.post(url, data, **kwargs)
57c6473a
JW
63
64 if do_follow:
65 response.follow()
66
67 return response
68
69 def upload_data(self, filename):
70 return {'upload_files': [('file', filename)]}
71
5c2ece74
CAW
72 def test_1_test_test_view(self, test_app):
73 self.login(test_app)
57c6473a 74
5c2ece74 75 response = test_app.get(
57c6473a
JW
76 '/api/test',
77 headers=self.http_auth_headers())
78
79 assert response.body == \
80 '{"username": "joapi", "email": "joapi@example.com"}'
81
5c2ece74
CAW
82 def test_2_test_submission(self, test_app):
83 self.login(test_app)
57c6473a
JW
84
85 response = self.do_post(
86 {'title': 'Great JPG!'},
5c2ece74 87 test_app,
57c6473a
JW
88 **self.upload_data(GOOD_JPG))
89
90 assert response.status_int == 200
91
1eac751b 92 assert self.db.MediaEntry.query.filter_by(title=u'Great JPG!').first()