##// END OF EJS Templates
ini: added new key
ini: added new key

File last commit:

r112:998f0d14
r129:489ce37b
Show More
test_integration.py
110 lines | 4.3 KiB | text/x-python | PythonLexer
# -*- coding: utf-8 -*-
# Copyright 2010 - 2017 RhodeCode GmbH and the AppEnlight project authors
#
# Licensed under the Apache License, Version 2.0 (the "License");
# you may not use this file except in compliance with the License.
# You may obtain a copy of the License at
#
# http://www.apache.org/licenses/LICENSE-2.0
#
# Unless required by applicable law or agreed to in writing, software
# distributed under the License is distributed on an "AS IS" BASIS,
# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
# See the License for the specific language governing permissions and
# limitations under the License.
import pytest
import json
from webtest import TestApp
@pytest.mark.usefixtures('base_app', 'with_migrations', 'clean_tables',
'default_application')
class TestAPIReportsView(object):
def test_no_json_payload(self, base_app):
app = TestApp(base_app)
url_path = '/api/reports'
headers = {'x-appenlight-api-key': 'xxxx'}
res = app.post(url_path, {}, status=400,
headers=headers)
def test_wrong_json_payload(self, base_app):
app = TestApp(base_app)
url_path = '/api/reports'
headers = {'x-appenlight-api-key': 'xxxx'}
res = app.post(url_path, {}, status=400, headers=headers)
def test_correct_json_payload(self, base_app):
import appenlight.tests.payload_examples as payload_examples
app = TestApp(base_app)
url_path = '/api/reports'
headers = {'x-appenlight-api-key': 'xxxx'}
res = app.post_json(url_path, [payload_examples.PYTHON_PAYLOAD_0_5],
headers=headers)
def test_json_payload_wrong_key(self, base_app):
import appenlight.tests.payload_examples as payload_examples
app = TestApp(base_app)
url_path = '/api/reports'
res = app.post(url_path,
json.dumps([payload_examples.PYTHON_PAYLOAD_0_5]),
status=403)
@pytest.mark.usefixtures('base_app', 'with_migrations', 'clean_tables',
'default_data', 'default_application')
class TestRegistrationView(object):
def test_register_empty(self, base_app):
url_path = '/register'
app = TestApp(base_app)
resp = app.get('/')
cookies = resp.headers.getall('Set-Cookie')
cookie = None
for name, value in [c.split('=', 1) for c in cookies]:
if name == 'XSRF-TOKEN':
cookie = value.split(';')[0]
headers = {'X-XSRF-TOKEN': cookie}
res = app.post(url_path,
params={'user_name': '',
'user_password': '',
'email': ''},
headers=headers)
assert 'This field is required.' in res
def test_register_proper(self, base_app):
url_path = '/register'
app = TestApp(base_app)
resp = app.get('/')
cookies = resp.headers.getall('Set-Cookie')
cookie = None
for name, value in [c.split('=', 1) for c in cookies]:
if name == 'XSRF-TOKEN':
cookie = value.split(';')[0]
headers = {'X-XSRF-TOKEN': cookie}
res = app.post(url_path,
params={'user_name': 'user_foo',
'user_password': 'passbar',
'email': 'foobar@blablabla.com'},
headers=headers,
status=302)
@pytest.mark.usefixtures('base_app', 'with_migrations', 'clean_tables',
'default_data', 'default_application')
class TestRegistrationAuthTokenView(object):
def test_create_application_bad(self, base_app):
url_path = '/applications'
app = TestApp(base_app)
headers = {'x-appenlight-auth-token': ''}
app.post_json(url_path,
params={'resource_name': 'user_foo'},
headers=headers, status=403)
def test_create_application_proper(self, base_app):
url_path = '/applications'
app = TestApp(base_app)
headers = {'x-appenlight-auth-token': '1234'}
app.post_json(url_path,
params={'resource_name': 'user_foo'},
headers=headers, status=200)