from unittest import TestCase
from threading import Thread
from http.client import HTTPConnection
+from urllib.parse import urlencode
from datetime import datetime
from os import remove as remove_file
from plomtask.http import TaskHandler, TaskServer
self.server_thread.daemon = True
self.server_thread.start()
+ def test_do_POST_day(self):
+ """Test POST /day and its effect on the database."""
+ conn = HTTPConnection(*self.httpd.server_address)
+ form_data = {'comment': 'foo'}
+ encoded_form_data = urlencode(form_data).encode('utf-8')
+ headers = {'Content-Type': 'application/x-www-form-urlencoded',
+ 'Content-Length': str(len(encoded_form_data))}
+ conn.request('POST', '/day?date=FOO',
+ body=encoded_form_data, headers=headers)
+ self.assertEqual(conn.getresponse().status, 400)
+ self.assertEqual(Day.all(self.db_conn), [])
+ conn.request('POST', '/day?date=2024-01-01',
+ body=encoded_form_data, headers=headers)
+ self.assertEqual(conn.getresponse().status, 302)
+ retrieved = Day.by_date(self.db_conn, '2024-01-01')
+ self.assertEqual(retrieved.comment, 'foo')
+ self.assertEqual(Day.all(self.db_conn), [retrieved])
+
def test_do_GET(self):
"""Test /day and /calendar response codes."""
conn = HTTPConnection(*self.httpd.server_address)