This commit is contained in:
parent
2c5444a245
commit
7a565e0511
@ -12,6 +12,6 @@ def client():
|
|||||||
|
|
||||||
|
|
||||||
def test_response_length(client):
|
def test_response_length(client):
|
||||||
r = client.post('/log')
|
r = client.get('/consumers')
|
||||||
|
|
||||||
assert len(r) == 0
|
assert len(r) == 0
|
||||||
|
30
consumer_api/tests/sync_view_test.py
Normal file
30
consumer_api/tests/sync_view_test.py
Normal file
@ -0,0 +1,30 @@
|
|||||||
|
import json
|
||||||
|
import os
|
||||||
|
|
||||||
|
import pytest
|
||||||
|
|
||||||
|
from flask import current_app
|
||||||
|
|
||||||
|
|
||||||
|
@pytest.fixture
|
||||||
|
def client():
|
||||||
|
current_app.config['TESTING'] = True
|
||||||
|
|
||||||
|
with current_app.test_client() as client:
|
||||||
|
yield client
|
||||||
|
|
||||||
|
|
||||||
|
def test_log_code_get(client):
|
||||||
|
r = client.get('/sync')
|
||||||
|
|
||||||
|
assert r.status_code == 405
|
||||||
|
|
||||||
|
|
||||||
|
def test_log_code_post(client):
|
||||||
|
data = {
|
||||||
|
"uuid": os.environ["LOCAL_UUID"],
|
||||||
|
"message": "Hello There!"
|
||||||
|
}
|
||||||
|
r = client.post('/sync', data = json.dumps(data))
|
||||||
|
|
||||||
|
assert r.status_code == 204
|
Reference in New Issue
Block a user