X-Git-Url: https://plomlompom.com/repos/berlin_corona.txt?a=blobdiff_plain;f=tests%2Ftodos.py;h=1a9eab61c0f77932c11b24ebae15cfc9a982287b;hb=3b15110c22c17d938d182a3d1a37b81b875c397f;hp=ecf2089a4b0544866004fdbb97521dbbc0b03fcf;hpb=20ee4c41027582f761a63d947ed4c46e5b02bdab;p=plomtask diff --git a/tests/todos.py b/tests/todos.py index ecf2089..1a9eab6 100644 --- a/tests/todos.py +++ b/tests/todos.py @@ -1,7 +1,7 @@ """Test Todos module.""" from tests.utils import TestCaseWithDB, TestCaseWithServer from plomtask.todos import Todo, TodoNode -from plomtask.processes import Process +from plomtask.processes import Process, ProcessStep from plomtask.conditions import Condition from plomtask.exceptions import (NotFoundException, BadFormatException, HandledException) @@ -167,11 +167,13 @@ class TestsWithDB(TestCaseWithDB): proc4.save(self.db_conn) assert isinstance(proc4.id_, int) # make proc4 step of proc3 - proc3.set_steps(self.db_conn, [(None, proc4.id_, None)]) + step = ProcessStep(None, proc3.id_, proc4.id_, None) + proc3.set_steps(self.db_conn, [step]) # give proc2 three steps; 2× proc1, 1× proc3 - proc2.set_steps(self.db_conn, [(None, self.proc.id_, None), - (None, self.proc.id_, None), - (None, proc3.id_, None)]) + step1 = ProcessStep(None, proc2.id_, self.proc.id_, None) + step2 = ProcessStep(None, proc2.id_, self.proc.id_, None) + step3 = ProcessStep(None, proc2.id_, proc3.id_, None) + proc2.set_steps(self.db_conn, [step1, step2, step3]) # test mere creation does nothing todo_ignore = Todo(None, proc2, False, self.date1) todo_ignore.save(self.db_conn) @@ -241,11 +243,11 @@ class TestsWithServer(TestCaseWithServer): self.post_process(2) proc = Process.by_id(self.db_conn, 1) proc2 = Process.by_id(self.db_conn, 2) - form_data = {'day_comment': ''} - self.check_post(form_data, '/day?date=2024-01-01', 302) + form_data = {'day_comment': '', 'make_type': 'full'} + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) self.assertEqual(Todo.by_date(self.db_conn, '2024-01-01'), []) form_data['new_todo'] = str(proc.id_) - self.check_post(form_data, '/day?date=2024-01-01', 302) + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) todos = Todo.by_date(self.db_conn, '2024-01-01') self.assertEqual(1, len(todos)) todo1 = todos[0] @@ -253,7 +255,7 @@ class TestsWithServer(TestCaseWithServer): self.assertEqual(todo1.process.id_, proc.id_) self.assertEqual(todo1.is_done, False) form_data['new_todo'] = str(proc2.id_) - self.check_post(form_data, '/day?date=2024-01-01', 302) + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) todos = Todo.by_date(self.db_conn, '2024-01-01') todo1 = todos[1] self.assertEqual(todo1.id_, 2) @@ -268,8 +270,9 @@ class TestsWithServer(TestCaseWithServer): return Todo.by_date(self.db_conn, '2024-01-01')[0] # test minimum self.post_process() - self.check_post({'day_comment': '', 'new_todo': 1}, - '/day?date=2024-01-01', 302) + self.check_post({'day_comment': '', 'new_todo': 1, + 'make_type': 'full'}, + '/day?date=2024-01-01&make_type=full', 302) # test posting to bad URLs self.check_post({}, '/todo=', 404) self.check_post({}, '/todo?id=', 400) @@ -291,8 +294,9 @@ class TestsWithServer(TestCaseWithServer): self.check_post({'adopt': 1}, '/todo?id=1', 400) self.check_post({'adopt': 2}, '/todo?id=1', 404) # test posting second todo of same process - self.check_post({'day_comment': '', 'new_todo': 1}, - '/day?date=2024-01-01', 302) + self.check_post({'day_comment': '', 'new_todo': 1, + 'make_type': 'full'}, + '/day?date=2024-01-01&make_type=full', 302) # test todo 1 adopting todo 2 todo1 = post_and_reload({'adopt': 2}) todo2 = Todo.by_date(self.db_conn, '2024-01-01')[1] @@ -317,10 +321,10 @@ class TestsWithServer(TestCaseWithServer): """Test Todos posted to Day view may adopt existing Todos.""" form_data = self.post_process() form_data = self.post_process(2, form_data | {'new_top_step': 1}) - form_data = {'day_comment': '', 'new_todo': 1} - self.check_post(form_data, '/day?date=2024-01-01', 302) + form_data = {'day_comment': '', 'new_todo': 1, 'make_type': 'full'} + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) form_data['new_todo'] = 2 - self.check_post(form_data, '/day?date=2024-01-01', 302) + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) todo1 = Todo.by_date(self.db_conn, '2024-01-01')[0] todo2 = Todo.by_date(self.db_conn, '2024-01-01')[1] self.assertEqual(todo1.children, []) @@ -332,8 +336,9 @@ class TestsWithServer(TestCaseWithServer): """Test multiple Todos can be posted to Day view.""" form_data = self.post_process() form_data = self.post_process(2) - form_data = {'day_comment': '', 'new_todo': [1, 2]} - self.check_post(form_data, '/day?date=2024-01-01', 302) + form_data = {'day_comment': '', 'new_todo': [1, 2], + 'make_type': 'full'} + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) todo1 = Todo.by_date(self.db_conn, '2024-01-01')[0] todo2 = Todo.by_date(self.db_conn, '2024-01-01')[1] self.assertEqual(todo1.process.id_, 1) @@ -347,8 +352,9 @@ class TestsWithServer(TestCaseWithServer): return t.process.id_ def check_adoption(date: str, new_todos: list[int]) -> None: - form_data = {'day_comment': '', 'new_todo': new_todos} - self.check_post(form_data, f'/day?date={date}', 302) + form_data = {'day_comment': '', 'new_todo': new_todos, + 'make_type': 'full'} + self.check_post(form_data, f'/day?date={date}&make_type=full', 302) day_todos = Todo.by_date(self.db_conn, date) day_todos.sort(key=key_order_func) todo1 = day_todos[0] @@ -360,12 +366,15 @@ class TestsWithServer(TestCaseWithServer): def check_nesting_adoption(process_id: int, date: str, new_top_steps: list[int]) -> None: - form_data = self.post_process() - form_data = self.post_process(process_id, - form_data | - {'new_top_step': new_top_steps}) - form_data = {'day_comment': '', 'new_todo': [process_id]} - self.check_post(form_data, f'/day?date={date}', 302) + form_data = {'title': '', 'description': '', 'effort': 1, + 'step_of': [2]} + form_data = self.post_process(1, form_data) + form_data['new_top_step'] = new_top_steps + form_data['step_of'] = [] + form_data = self.post_process(process_id, form_data) + form_data = {'day_comment': '', 'new_todo': [process_id], + 'make_type': 'full'} + self.check_post(form_data, f'/day?date={date}&make_type=full', 302) day_todos = Todo.by_date(self.db_conn, date) day_todos.sort(key=key_order_func, reverse=True) self.assertEqual(len(day_todos), 3) @@ -389,21 +398,22 @@ class TestsWithServer(TestCaseWithServer): def test_do_POST_day_todo_doneness(self) -> None: """Test Todo doneness can be posted to Day view.""" form_data = self.post_process() - form_data = {'day_comment': '', 'new_todo': [1]} - self.check_post(form_data, '/day?date=2024-01-01', 302) + form_data = {'day_comment': '', 'new_todo': [1], 'make_type': 'full'} + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) todo = Todo.by_date(self.db_conn, '2024-01-01')[0] - form_data = {'day_comment': '', 'todo_id': [1]} - self.check_post(form_data, '/day?date=2024-01-01', 302) + form_data = {'day_comment': '', 'todo_id': [1], 'make_type': 'full'} + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) self.assertEqual(todo.is_done, False) - form_data = {'day_comment': '', 'todo_id': [1], 'done': [1]} - self.check_post(form_data, '/day?date=2024-01-01', 302) + form_data = {'day_comment': '', 'todo_id': [1], 'done': [1], + 'make_type': 'full'} + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) self.assertEqual(todo.is_done, True) def test_do_GET_todo(self) -> None: """Test GET /todo response codes.""" self.post_process() - form_data = {'day_comment': '', 'new_todo': 1} - self.check_post(form_data, '/day?date=2024-01-01', 302) + form_data = {'day_comment': '', 'new_todo': 1, 'make_type': 'full'} + self.check_post(form_data, '/day?date=2024-01-01&make_type=full', 302) self.check_get('/todo', 400) self.check_get('/todo?id=', 400) self.check_get('/todo?id=foo', 400)