Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Add support for swimlanes (#162) #164

Merged
merged 2 commits into from
Dec 28, 2023
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions changes/162.feature
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
Adds SwimLane/SwimLanes models and support to add/list in Project.
8 changes: 8 additions & 0 deletions docs/usage.rst
Original file line number Diff line number Diff line change
Expand Up @@ -144,6 +144,14 @@ To add a task to your user story just run
new_project.task_statuses[0].id
)

******************************************************
Create a swimlane
******************************************************

.. code:: python

newlane = new_project.add_swimlane('New Swimlane')

******************************************************
Create an issue
******************************************************
Expand Down
2 changes: 2 additions & 0 deletions taiga/client.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
Projects,
Roles,
Severities,
SwimLanes,
TaskAttachments,
TaskAttributes,
Tasks,
Expand Down Expand Up @@ -78,6 +79,7 @@ def _init_resources(self):
self.user_stories = UserStories(self.raw_request)
self.user_story_attachments = UserStoryAttachments(self.raw_request)
self.users = Users(self.raw_request)
self.swimlanes = SwimLanes(self.raw_request)
self.issues = Issues(self.raw_request)
self.issue_attachments = IssueAttachments(self.raw_request)
self.tasks = Tasks(self.raw_request)
Expand Down
4 changes: 4 additions & 0 deletions taiga/models/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -30,6 +30,8 @@
Roles,
Severities,
Severity,
SwimLane,
SwimLanes,
Task,
TaskAttachment,
TaskAttachments,
Expand Down Expand Up @@ -87,6 +89,8 @@
"UserStoryStatuses",
"Severity",
"Severities",
"SwimLane",
"SwimLanes",
"Priority",
"Priorities",
"IssueStatus",
Expand Down
52 changes: 52 additions & 0 deletions taiga/models/models.py
Original file line number Diff line number Diff line change
Expand Up @@ -547,6 +547,42 @@ def create(self, project, name, **attrs):
return self._new_resource(payload=attrs)


class SwimLane(MoveOnDestroyMixinObject, InstanceResource):
"""
Taiga Swimlane model

:param name: The name of :class:`SwimLane`
:param order: the order of :class:`SwimLane`
:param project: the project of :class:`SwimLane`
:param statuses: the statuses of :class:`SwimLane`
"""

repr_attribute = "name"

endpoint = "swimlanes"

allowed_params = ["name", "order", "project", "statuses"]

parser = {
"statuses": UserStoryStatuses,
}


class SwimLanes(MoveOnDestroyMixinList, ListResource):
instance = SwimLane

def create(self, project, name, **attrs):
"""
Create a new :class:`SwimLane`.

:param project: :class:`Project` id
:param name: name of :class:`SwimLane`
:param attrs: optional attributes of :class:`SwimLane`
"""
attrs.update({"project": project, "name": name})
return self._new_resource(payload=attrs)


class Point(MoveOnDestroyMixinObject, InstanceResource):
"""
Taiga Point model
Expand Down Expand Up @@ -1179,6 +1215,7 @@ class Project(InstanceResource):
"points": Points,
"us_statuses": UserStoryStatuses,
"milestones": Milestones,
"swimlanes": SwimLanes,
}

def get_item_by_ref(self, ref):
Expand Down Expand Up @@ -1347,6 +1384,21 @@ def list_user_stories(self, **queryparams):
"""
return UserStories(self.requester).list(project=self.id, **queryparams)

def add_swimlane(self, name, **attrs):
"""
Adds a :class:`SwimLane` and returns a :class:`SwimLane` resource.

:param name: name of :class:`SwimLane`
:param attrs: other :class:`SwimLane` attributes
"""
return SwimLanes(self.requester).create(self.id, name, **attrs)

def list_swimlanes(self, **queryparams):
"""
Returns the :class:`SwimLane` list of the project.
"""
return SwimLanes(self.requester).list(project=self.id, **queryparams)

def add_issue(self, subject, priority, status, issue_type, severity, **attrs):
"""
Adds a Issue and returns a :class:`Issue` resource.
Expand Down
12 changes: 12 additions & 0 deletions tests/resources/project_details_success.json
Original file line number Diff line number Diff line change
Expand Up @@ -646,6 +646,18 @@
"computable": false
}
],
"swimlanes": [
{
"id": 1,
"name": "SwimLane 1",
"order": 0
},
{
"id": 2,
"name": "SwimLane 2",
"order": 1
}
],
"members": [
{
"id": 10,
Expand Down
17 changes: 16 additions & 1 deletion tests/test_projects.py
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
from unittest.mock import patch

from taiga import TaigaAPI
from taiga.models import Point, Project, Projects, Severity, User, UserStoryStatus
from taiga.models import Point, Project, Projects, Severity, SwimLane, User, UserStoryStatus
from taiga.requestmaker import RequestMaker

from .tools import MockResponse, create_mock_json
Expand All @@ -21,6 +21,7 @@ def test_single_project_parsing(self, mock_requestmaker_get):
self.assertEqual(len(project.members), 11)
self.assertTrue(isinstance(project.members[0], User))
self.assertTrue(isinstance(project.points[0], Point))
self.assertTrue(isinstance(project.swimlanes[0], SwimLane))
self.assertTrue(isinstance(project.us_statuses[0], UserStoryStatus))
self.assertTrue(isinstance(project.severities[0], Severity))

Expand Down Expand Up @@ -287,6 +288,20 @@ def test_list_task_statuses(self, mock_list_task_statuses):
project.list_task_statuses()
mock_list_task_statuses.assert_called_with(project=1)

@patch("taiga.models.SwimLanes.create")
def test_add_swimlane(self, mock_new_swimlane):
rm = RequestMaker("/api/v1", "fakehost", "faketoken")
project = Project(rm, id=1)
project.add_swimlane("SwimLane 1")
mock_new_swimlane.assert_called_with(1, "SwimLane 1")

@patch("taiga.models.SwimLanes.list")
def test_list_swimlanes(self, mock_list_swimlanes):
rm = RequestMaker("/api/v1", "fakehost", "faketoken")
project = Project(rm, id=1)
project.list_swimlanes()
mock_list_swimlanes.assert_called_with(project=1)

@patch("taiga.models.Points.create")
def test_add_point(self, mock_new_point):
rm = RequestMaker("/api/v1", "fakehost", "faketoken")
Expand Down
40 changes: 40 additions & 0 deletions tests/test_swimlanes.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,40 @@
import unittest
from unittest.mock import patch

from taiga.models import SwimLane, SwimLanes
from taiga.requestmaker import RequestMaker

from .tools import MockResponse


class TestSwimLanes(unittest.TestCase):
@patch("taiga.models.base.ListResource._new_resource")
def test_create_swimlane(self, mock_new_resource):
rm = RequestMaker("/api/v1", "fakehost", "faketoken")
mock_new_resource.return_value = SwimLane(rm)
SwimLanes(rm).create(1, "SwimLane 1")
mock_new_resource.assert_called_with(payload={"project": 1, "name": "SwimLane 1"})

@patch("taiga.requestmaker.requests.delete")
def test_delete_swimlanes(self, requests_delete):
rm = RequestMaker(api_path="/api/v1", host="host", token="f4k3")
requests_delete.return_value = MockResponse(204, "")
SwimLanes(rm).delete(1, 2)
requests_delete.assert_called_with(
"host/api/v1/swimlanes/1",
headers={"Content-type": "application/json", "Authorization": "Bearer f4k3", "x-lazy-pagination": "True"},
params={"moveTo": 2},
verify=True,
)

@patch("taiga.requestmaker.requests.delete")
def test_delete_swimlane(self, requests_delete):
rm = RequestMaker(api_path="/api/v1", host="host", token="f4k3")
requests_delete.return_value = MockResponse(204, "")
SwimLane(rm, id=1).delete(2)
requests_delete.assert_called_with(
"host/api/v1/swimlanes/1",
headers={"Content-type": "application/json", "Authorization": "Bearer f4k3", "x-lazy-pagination": "True"},
params={"moveTo": 2},
verify=True,
)
Loading