import unittest import pandas as pd from fastapi.testclient import TestClient from app import app TEST_DATA_FILE = "data/master_test_text2int.csv" client = TestClient(app) class TestStringMethods(unittest.TestCase): def setUp(self): """Creates a fastapi test client""" self.client = TestClient(app) def get_response_text2int(self, text): """Makes a post request to the endpoint""" r = None try: r = self.client.post("/text2int", json={"content": text}) \ .json().get("message") except: pass return r def test_endpoint_text2int(self): """Tests if endpoint is working""" response = self.client.post("/text2int", json={"content": "fourteen"} ) self.assertEqual(response.status_code, 200) def test_acc_score_text2int(self): """Calculates accuracy score for endpoint""" df = pd.read_csv(TEST_DATA_FILE) df["text2int"] = df["input"].apply(func=self.get_response_text2int) df["score"] = df[["output", "text2int"]].apply( lambda row: row[0] == row[1], axis=1 ) df.to_csv("data/text2int_results.csv", index=False) acc_score = df["score"].mean().__round__(2) self.assertGreaterEqual(acc_score, 0.8, f"Accuracy score: '{acc_score}'. Value is too low!") if __name__ == '__main__': unittest.main()