Spaces:
Sleeping
Sleeping
from fastapi.testclient import TestClient | |
import pytest | |
from app import app | |
def client(): | |
yield TestClient(app) | |
def test_fix_commas_fails_on_no_parameter(client): | |
response = client.post('/baseline/fix-commas/') | |
assert response.status_code == 422 | |
def test_fix_commas_fails_on_wrong_parameters(client): | |
response = client.post('/baseline/fix-commas/', json={'text': "Some text."}) | |
assert response.status_code == 400 | |
def test_fix_commas_correct_string_unchanged(client, test_input: str): | |
response = client.post('/baseline/fix-commas/', json={'s': test_input}) | |
assert response.status_code == 200 | |
assert response.json().get('s') == test_input | |
def test_fix_commas_fixes_wrong_commas(client, test_input: str, expected: str): | |
response = client.post('/baseline/fix-commas/', json={'s': test_input}) | |
assert response.status_code == 200 | |
assert response.json().get('s') == expected | |
def test_with_a_very_long_string(client): | |
s = "Just a long string. " * 1000 | |
response = client.post('/baseline/fix-commas/', json={'s': s}) | |
assert response.status_code == 200 | |
assert response.json().get('s') == s | |