forked from cohere-ai/DiskVectorIndex
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathtest_api.py
32 lines (27 loc) · 1.15 KB
/
test_api.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
import unittest
from flask import json
from api import app
class TestAPI(unittest.TestCase):
def setUp(self):
self.app = app.test_client()
def test_ask_question_with_valid_question(self):
question = "What is the capital of France?"
response = self.app.post('/ask', json={'question': question})
data = json.loads(response.data)
self.assertEqual(response.status_code, 200)
self.assertIn('response', data)
self.assertIsInstance(data['response'], str)
def test_ask_question_with_empty_question(self):
response = self.app.post('/ask', json={'question': ''})
data = json.loads(response.data)
self.assertEqual(response.status_code, 400)
self.assertIn('error', data)
self.assertEqual(data['error'], 'No question provided')
def test_ask_question_with_no_question_field(self):
response = self.app.post('/ask', json={})
data = json.loads(response.data)
self.assertEqual(response.status_code, 400)
self.assertIn('error', data)
self.assertEqual(data['error'], 'No question provided')
if __name__ == '__main__':
unittest.main()