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 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199
|
from __future__ import annotations
from tests.data.test_defaults import (
DEFAULT_ATTACHMENT_RESPONSE,
DEFAULT_COLLABORATOR_RESPONSE,
DEFAULT_COMMENT_RESPONSE,
DEFAULT_DUE_RESPONSE,
DEFAULT_DURATION_RESPONSE,
DEFAULT_LABEL_RESPONSE,
DEFAULT_PROJECT_RESPONSE,
DEFAULT_PROJECT_RESPONSE_2,
DEFAULT_SECTION_RESPONSE,
DEFAULT_TASK_RESPONSE,
)
from todoist_api_python._core.utils import parse_date, parse_datetime
from todoist_api_python.models import (
Attachment,
AuthResult,
Collaborator,
Comment,
Due,
Duration,
Label,
Project,
Section,
Task,
)
unexpected_data = {"unexpected_key": "some value"}
def test_due_from_dict() -> None:
sample_data = dict(DEFAULT_DUE_RESPONSE)
sample_data.update(unexpected_data)
due = Due.from_dict(sample_data)
assert due.date == parse_date(str(sample_data["date"]))
assert due.timezone == sample_data["timezone"]
assert due.string == sample_data["string"]
assert due.lang == sample_data["lang"]
assert due.is_recurring == sample_data["is_recurring"]
def test_duration_from_dict() -> None:
sample_data = dict(DEFAULT_DURATION_RESPONSE)
sample_data.update(unexpected_data)
duration = Duration.from_dict(sample_data)
assert duration.amount == sample_data["amount"]
assert duration.unit == sample_data["unit"]
def test_project_from_dict() -> None:
sample_data = dict(DEFAULT_PROJECT_RESPONSE)
sample_data.update(unexpected_data)
project = Project.from_dict(sample_data)
assert project.id == sample_data["id"]
assert project.name == sample_data["name"]
assert project.description == sample_data["description"]
assert project.parent_id == sample_data["parent_id"]
assert project.folder_id == sample_data["folder_id"]
assert project.workspace_id == sample_data["workspace_id"]
assert project.order == sample_data["child_order"]
assert project.color == sample_data["color"]
assert project.is_collapsed == sample_data["collapsed"]
assert project.is_shared == sample_data["shared"]
assert project.is_favorite == sample_data["is_favorite"]
assert project.is_inbox_project == sample_data["is_inbox_project"]
assert project.can_assign_tasks == sample_data["can_assign_tasks"]
assert project.view_style == sample_data["view_style"]
assert project.created_at == parse_datetime(str(sample_data["created_at"]))
assert project.updated_at == parse_datetime(str(sample_data["updated_at"]))
def test_project_url() -> None:
inbox = Project.from_dict(dict(DEFAULT_PROJECT_RESPONSE))
assert inbox.url == "https://app.todoist.com/app/inbox"
project = Project.from_dict(dict(DEFAULT_PROJECT_RESPONSE_2))
assert project.url == "https://app.todoist.com/app/project/inbox-6X7rfFVPjhvv84XG"
def test_task_from_dict() -> None:
sample_data = dict(DEFAULT_TASK_RESPONSE)
sample_data.update(unexpected_data)
task = Task.from_dict(sample_data)
assert task.id == sample_data["id"]
assert task.content == sample_data["content"]
assert task.description == sample_data["description"]
assert task.project_id == sample_data["project_id"]
assert task.section_id == sample_data["section_id"]
assert task.parent_id == sample_data["parent_id"]
assert task.labels == sample_data["labels"]
assert task.priority == sample_data["priority"]
assert task.due == Due.from_dict(sample_data["due"])
assert task.duration == Duration.from_dict(sample_data["duration"])
assert task.is_collapsed == sample_data["collapsed"]
assert task.order == sample_data["child_order"]
assert task.assignee_id == sample_data["responsible_uid"]
assert task.assigner_id == sample_data["assigned_by_uid"]
assert task.completed_at == sample_data["completed_at"]
assert task.creator_id == sample_data["added_by_uid"]
assert task.created_at == parse_datetime(sample_data["added_at"])
assert task.updated_at == parse_datetime(sample_data["updated_at"])
def test_task_url() -> None:
task = Task.from_dict(dict(DEFAULT_TASK_RESPONSE))
assert (
task.url
== "https://app.todoist.com/app/task/some-task-content-6X7rM8997g3RQmvh"
)
def test_section_from_dict() -> None:
sample_data = dict(DEFAULT_SECTION_RESPONSE)
sample_data.update(unexpected_data)
section = Section.from_dict(sample_data)
assert section.id == sample_data["id"]
assert section.project_id == sample_data["project_id"]
assert section.name == sample_data["name"]
assert section.order == sample_data["order"]
def test_collaborator_from_dict() -> None:
sample_data = dict(DEFAULT_COLLABORATOR_RESPONSE)
sample_data.update(unexpected_data)
collaborator = Collaborator.from_dict(sample_data)
assert collaborator.id == sample_data["id"]
assert collaborator.email == sample_data["email"]
assert collaborator.name == sample_data["name"]
def test_attachment_from_dict() -> None:
sample_data = dict(DEFAULT_ATTACHMENT_RESPONSE)
sample_data.update(unexpected_data)
attachment = Attachment.from_dict(sample_data)
assert attachment.resource_type == sample_data["resource_type"]
assert attachment.file_name == sample_data["file_name"]
assert attachment.file_size == sample_data["file_size"]
assert attachment.file_type == sample_data["file_type"]
assert attachment.file_url == sample_data["file_url"]
assert attachment.upload_state == sample_data["upload_state"]
assert attachment.image == sample_data["image"]
assert attachment.image_width == sample_data["image_width"]
assert attachment.image_height == sample_data["image_height"]
assert attachment.url == sample_data["url"]
assert attachment.title == sample_data["title"]
def test_comment_from_dict() -> None:
sample_data = dict(DEFAULT_COMMENT_RESPONSE)
sample_data.update(unexpected_data)
comment = Comment.from_dict(sample_data)
assert comment.id == sample_data["id"]
assert comment.content == sample_data["content"]
assert comment.poster_id == sample_data["posted_uid"]
assert comment.posted_at == parse_datetime(sample_data["posted_at"])
assert comment.task_id == sample_data["task_id"]
assert comment.project_id == sample_data["project_id"]
assert comment.attachment == Attachment.from_dict(sample_data["attachment"])
def test_label_from_dict() -> None:
sample_data = dict(DEFAULT_LABEL_RESPONSE)
sample_data.update(unexpected_data)
label = Label.from_dict(sample_data)
assert label.id == sample_data["id"]
assert label.name == sample_data["name"]
assert label.color == sample_data["color"]
assert label.order == sample_data["order"]
assert label.is_favorite == sample_data["is_favorite"]
def test_auth_result_from_dict() -> None:
token = "123"
state = "456"
sample_data = {"access_token": token, "state": state}
sample_data.update(unexpected_data)
auth_result = AuthResult.from_dict(sample_data)
assert auth_result.access_token == token
assert auth_result.state == state
|