-
Notifications
You must be signed in to change notification settings - Fork 0
feat: TT-353 Create V2 Activities DAO #320
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
Merged
Merged
Changes from 1 commit
Commits
Show all changes
10 commits
Select commit
Hold shift + click to select a range
1065bde
feat: TT-353 Create V2 Activities DAO
3bb39b0
refactor: TT-353 Solving code smells from SonarCloud
b15c301
refactor: TT-353 Solving duplicated literal
7a2565c
refactor: TT-353 Add type of argument and return type to functions
8bdbdfe
refactor: TT-353 Solving comments from PR
bc998fe
refactor: TT-353 Solving Sonarcloud code smell
9d0e21e
refactor: TT-353 Changing variable names and tests
1f92569
refactor: TT-353 Solving requested changes on PR
04344ef
refactor: TT-353 Solving typo errors on names
48d6945
refactor: TT-353 Solving requested changes on PR
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
refactor: TT-353 Solving requested changes on PR
- Loading branch information
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,13 @@ | ||
| from V2.source.dtos.activity import Activity | ||
| import abc | ||
| import typing | ||
|
|
||
|
|
||
| class ActivitiesDao(abc.ABC): | ||
| @abc.abstractmethod | ||
| def get_by_id(self, id: str) -> Activity: | ||
| pass | ||
|
|
||
| @abc.abstractmethod | ||
| def get_all(self) -> typing.List[Activity]: | ||
| pass |
This file was deleted.
Oops, something went wrong.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -2,7 +2,7 @@ | |
|
|
||
|
|
||
| @dataclass(frozen=True) | ||
| class ActivityDto: | ||
| class Activity: | ||
| id: str | ||
| name: str | ||
| description: str | ||
|
|
||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,15 +1,14 @@ | ||
| from V2.source.daos.activities_dao_interface import ActivitiesDaoInterface | ||
| from V2.source.dtos.activity import ActivityDto | ||
| from V2.source.daos.activities_dao import ActivitiesDao | ||
| from V2.source.dtos.activity import Activity | ||
| import typing | ||
|
|
||
|
|
||
| class ActivityService: | ||
| def __init__(self, activities_dao: ActivitiesDaoInterface): | ||
| def __init__(self, activities_dao: ActivitiesDao): | ||
| self.activities_dao = activities_dao | ||
|
|
||
| def get_by_id(self, id: str) -> ActivityDto: | ||
| activity_dto = self.activities_dao.get_by_id(id) | ||
| return activity_dto | ||
| def get_by_id(self, activity_id: str) -> Activity: | ||
| return self.activities_dao.get_by_id(activity_id) | ||
|
|
||
| def get_all(self) -> list: | ||
| list_activities = self.activities_dao.get_all() | ||
| return list_activities | ||
| def get_all(self) -> typing.List[Activity]: | ||
| return self.activities_dao.get_all() |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,78 +1,85 @@ | ||
| from V2.source.daos.activities_json_dao import ActivitiesJsonDao | ||
| from V2.source.dtos.activity import ActivityDto | ||
| from http import HTTPStatus | ||
| from V2.source.dtos.activity import Activity | ||
| from faker import Faker | ||
| import json | ||
| import pytest | ||
| import typing | ||
|
|
||
|
|
||
| OPEN_FILE = 'builtins.open' | ||
| @pytest.fixture(name='create_fake_activities') | ||
| def _create_fake_activities(mocker) -> typing.List[Activity]: | ||
| def _creator(activities): | ||
| read_data = json.dumps(activities) | ||
| mocker.patch('builtins.open', mocker.mock_open(read_data=read_data)) | ||
| return [Activity(**activity) for activity in activities] | ||
|
|
||
| return _creator | ||
|
|
||
| def test_get_by_id__return_activity_dto__when_find_activity_that_matches_its_id( | ||
| mocker, | ||
|
|
||
| def test_get_by_id__returns_an_activity_dto__when_found_one_activity_that_matches_its_id( | ||
| create_fake_activities, | ||
| ): | ||
| activities_json_dao = ActivitiesJsonDao('non-important-path') | ||
| activities = [ | ||
| { | ||
| "name": "test_name", | ||
| "description": "test_description", | ||
| "tenant_id": "test_tenant_id", | ||
| "id": "test_id", | ||
| "deleted": "test_deleted", | ||
| "status": "test_status", | ||
| } | ||
| ] | ||
| read_data = json.dumps(activities) | ||
| activity_dto = ActivityDto(**activities.pop()) | ||
|
|
||
| mocker.patch(OPEN_FILE, mocker.mock_open(read_data=read_data)) | ||
| activities_json_dao = ActivitiesJsonDao(Faker().file_path()) | ||
| activities = create_fake_activities( | ||
| [ | ||
| { | ||
| "name": "test_name", | ||
| "description": "test_description", | ||
| "tenant_id": "test_tenant_id", | ||
| "id": "test_id", | ||
| "deleted": "test_deleted", | ||
| "status": "test_status", | ||
| } | ||
| ] | ||
| ) | ||
| activity_dto = activities.pop() | ||
|
|
||
| result = activities_json_dao.get_by_id(activity_dto.id) | ||
|
|
||
| assert result == activity_dto | ||
|
|
||
EdansRocks marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| def test__get_by_id__return_httpstatus_not_found__when_no_activity_matches_its_id( | ||
| mocker, | ||
| def test__get_by_id__returns_none__when_no_activity_matches_its_id( | ||
| create_fake_activities, | ||
| ): | ||
| activities_json_dao = ActivitiesJsonDao('non-important-path') | ||
| activities = [] | ||
| read_data = json.dumps(activities) | ||
| activities_json_dao = ActivitiesJsonDao(Faker().file_path()) | ||
| create_fake_activities([]) | ||
|
|
||
| mocker.patch(OPEN_FILE, mocker.mock_open(read_data=read_data)) | ||
| result = activities_json_dao.get_by_id('non-important-id') | ||
| result = activities_json_dao.get_by_id(Faker().uuid4()) | ||
|
|
||
| assert result == HTTPStatus.NOT_FOUND | ||
| assert result == None | ||
|
|
||
|
|
||
| def test_get_all__return_list_of_activity_dto__when_find_one_or_more_activities( | ||
| mocker, | ||
| def test__get_all__returns_a_list_of_activity_dto_objects__when_one_or_more_activities_are_found( | ||
| create_fake_activities, | ||
| ): | ||
| activities_json_dao = ActivitiesJsonDao('non-important-path') | ||
| activity = { | ||
| "name": "test_name", | ||
| "description": "test_description", | ||
| "tenant_id": "test_tenant_id", | ||
| "id": "test_id", | ||
| "deleted": "test_deleted", | ||
| "status": "test_status", | ||
| } | ||
| activities_json_dao = ActivitiesJsonDao(Faker().file_path()) | ||
| number_of_activities = 3 | ||
| activity_dto = ActivityDto(**activity) | ||
| list_activities_dto = [activity_dto] * number_of_activities | ||
| activities = [activity] * number_of_activities | ||
| read_data = json.dumps(activities) | ||
| activities = create_fake_activities( | ||
| [ | ||
| { | ||
| "name": "test_name", | ||
| "description": "test_description", | ||
| "tenant_id": "test_tenant_id", | ||
| "id": "test_id", | ||
| "deleted": "test_deleted", | ||
| "status": "test_status", | ||
| } | ||
| ] | ||
| * number_of_activities | ||
| ) | ||
|
|
||
| mocker.patch(OPEN_FILE, mocker.mock_open(read_data=read_data)) | ||
| result = activities_json_dao.get_all() | ||
|
|
||
| assert result == list_activities_dto | ||
| assert result == activities | ||
|
|
||
|
|
||
| def test_get_all__return_empty_list__when_doesnt_found_any_activities(mocker): | ||
| activities_json_dao = ActivitiesJsonDao('non-important-path') | ||
| activities = [] | ||
| read_data = json.dumps(activities) | ||
| def test_get_all__returns_an_empty_list__when_doesnt_found_any_activities( | ||
| create_fake_activities, | ||
| ): | ||
| activities_json_dao = ActivitiesJsonDao(Faker().file_path()) | ||
| activities = create_fake_activities([]) | ||
|
|
||
| mocker.patch(OPEN_FILE, mocker.mock_open(read_data=read_data)) | ||
| result = activities_json_dao.get_all() | ||
|
|
||
| assert result == activities | ||
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,82 +1,28 @@ | ||
| from V2.source.services.activity_service import ActivityService | ||
| from V2.source.daos.activities_dao_interface import ActivitiesDaoInterface | ||
| from V2.source.dtos.activity import ActivityDto | ||
| from http import HTTPStatus | ||
| from faker import Faker | ||
|
|
||
EdansRocks marked this conversation as resolved.
Show resolved
Hide resolved
|
||
|
|
||
| def test__get_by_id__return_activity_dto__when_find_activity_that_matches_its_id( | ||
| mocker, | ||
| ): | ||
| activity_service = ActivityService(ActivitiesDaoInterface) | ||
| activity = { | ||
| "name": "test_name", | ||
| "description": "test_description", | ||
| "tenant_id": "test_tenant_id", | ||
| "id": "test_id", | ||
| "deleted": "test_deleted", | ||
| "status": "test_status", | ||
| } | ||
| activity_dto = ActivityDto(**activity) | ||
|
|
||
| activities_dao_mock = mocker.patch.object( | ||
| ActivitiesDaoInterface, 'get_by_id' | ||
| def test__get_all__uses_the_activity_dao__to_retrieve_activities(mocker): | ||
| expected_activities = mocker.Mock() | ||
| activity_dao = mocker.Mock( | ||
| get_all=mocker.Mock(return_value=expected_activities) | ||
| ) | ||
| activities_dao_mock.return_value = activity_dto | ||
| result = activity_service.get_by_id(activity.get('id')) | ||
| activity_service = ActivityService(activity_dao) | ||
|
|
||
| assert result == activity_dto | ||
| actual_activities = activity_service.get_all() | ||
|
|
||
| assert activity_dao.get_all.called | ||
| assert expected_activities == actual_activities | ||
|
|
||
| def test__get_by_id__return_httpstatus_not_found__when_no_activity_matches_its_id( | ||
| mocker, | ||
| ): | ||
| activity_service = ActivityService(ActivitiesDaoInterface) | ||
|
|
||
| activities_dao_mock = mocker.patch.object( | ||
| ActivitiesDaoInterface, 'get_by_id' | ||
| def test__get_by_id__uses_the_activity_dao__to_retrieve_one_ativity(mocker): | ||
| expected_activity = mocker.Mock() | ||
| activity_dao = mocker.Mock( | ||
| get_by_id=mocker.Mock(return_value=expected_activity) | ||
| ) | ||
| activities_dao_mock.return_value = HTTPStatus.NOT_FOUND | ||
|
|
||
| result = activity_service.get_by_id('non-important-id') | ||
|
|
||
| assert result == HTTPStatus.NOT_FOUND | ||
| activity_service = ActivityService(activity_dao) | ||
|
|
||
| actual_activity = activity_service.get_by_id(Faker().uuid4()) | ||
|
|
||
| def test__get_all__return_list_of_activity_dto__when_find_one_or_more_activities( | ||
| mocker, | ||
| ): | ||
| activity_service = ActivityService(ActivitiesDaoInterface) | ||
| activity = { | ||
| "name": "test_name", | ||
| "description": "test_description", | ||
| "tenant_id": "test_tenant_id", | ||
| "id": "test_id", | ||
| "deleted": "test_deleted", | ||
| "status": "test_status", | ||
| } | ||
| number_of_activities = 3 | ||
| activity_dto = ActivityDto(**activity) | ||
| list_activities_dto = [activity_dto] * number_of_activities | ||
|
|
||
| activities_dao_mock = mocker.patch.object( | ||
| ActivitiesDaoInterface, 'get_all' | ||
| ) | ||
| activities_dao_mock.return_value = list_activities_dto | ||
| result = activity_service.get_all() | ||
|
|
||
| assert result == list_activities_dto | ||
|
|
||
|
|
||
| def test__get_all__return_empty_list__when_doesnt_found_any_activities( | ||
| mocker, | ||
| ): | ||
| activity_service = ActivityService(ActivitiesDaoInterface) | ||
| activities = [] | ||
|
|
||
| activities_dao_mock = mocker.patch.object( | ||
| ActivitiesDaoInterface, 'get_all' | ||
| ) | ||
| activities_dao_mock.return_value = activities | ||
| result = activity_service.get_all() | ||
|
|
||
| assert result == activities | ||
| assert activity_dao.get_by_id.called | ||
| assert expected_activity == actual_activity | ||
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Uh oh!
There was an error while loading. Please reload this page.