123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860 |
- # -*- coding: utf-8 -*-
- """
- Tests for /api/v2/users subpath endpoints.
- """
- from time import sleep
-
- import pytest
- import transaction
-
- from tracim import models
- from tracim.lib.core.content import ContentApi
- from tracim.lib.core.user import UserApi
- from tracim.lib.core.workspace import WorkspaceApi
- from tracim.models import get_tm_session
- from tracim.models.contents import ContentTypeLegacy as ContentType
- from tracim.models.revision_protection import new_revision
- from tracim.tests import FunctionalTest
- from tracim.fixtures.content import Content as ContentFixtures
- from tracim.fixtures.users_and_groups import Base as BaseFixture
-
-
- class TestUserRecentlyActiveContentEndpoint(FunctionalTest):
- """
- Tests for /api/v2/users/{user_id}/workspaces/{workspace_id}/contents/recently_active # nopep8
- """
- fixtures = [BaseFixture]
-
- def test_api__get_recently_active_content__ok__200__nominal_case(self):
-
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- workspace2 = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace2',
- save_now=True
- )
-
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder_workspace2 = api.create(ContentType.Folder, workspace2, None, 'Hepla', '', True) # nopep8
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- secondly_created = api.create(ContentType.Page, workspace, main_folder, 'another creation_order_test', '', True) # nopep8
- # update order test
- firstly_created_but_recently_updated = api.create(ContentType.Page, workspace, main_folder, 'update_order_test', '', True) # nopep8
- secondly_created_but_not_updated = api.create(ContentType.Page, workspace, main_folder, 'another update_order_test', '', True) # nopep8
- with new_revision(
- session=dbsession,
- tm=transaction.manager,
- content=firstly_created_but_recently_updated,
- ):
- firstly_created_but_recently_updated.description = 'Just an update'
- api.save(firstly_created_but_recently_updated)
- # comment change order
- firstly_created_but_recently_commented = api.create(ContentType.Page, workspace, main_folder, 'this is randomized label content', '', True) # nopep8
- secondly_created_but_not_commented = api.create(ContentType.Page, workspace, main_folder, 'this is another randomized label content', '', True) # nopep8
- comments = api.create_comment(workspace, firstly_created_but_recently_commented, 'juste a super comment', True) # nopep8
- content_workspace_2 = api.create(ContentType.Page, workspace2,main_folder_workspace2, 'content_workspace_2', '',True) # nopep8
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/recently_active'.format(workspace.workspace_id), status=200) # nopep8
- res = res.json_body
- assert len(res) == 7
- for elem in res:
- assert isinstance(elem['content_id'], int)
- assert isinstance(elem['content_type'], str)
- assert elem['content_type'] != 'comments'
- assert isinstance(elem['is_archived'], bool)
- assert isinstance(elem['is_deleted'], bool)
- assert isinstance(elem['label'], str)
- assert isinstance(elem['parent_id'], int) or elem['parent_id'] is None
- assert isinstance(elem['show_in_ui'], bool)
- assert isinstance(elem['slug'], str)
- assert isinstance(elem['status'], str)
- assert isinstance(elem['sub_content_types'], list)
- for sub_content_type in elem['sub_content_types']:
- assert isinstance(sub_content_type, str)
- assert isinstance(elem['workspace_id'], int)
- # comment is newest than page2
- assert res[0]['content_id'] == firstly_created_but_recently_commented.content_id
- assert res[1]['content_id'] == secondly_created_but_not_commented.content_id
- # last updated content is newer than other one despite creation
- # of the other is more recent
- assert res[2]['content_id'] == firstly_created_but_recently_updated.content_id
- assert res[3]['content_id'] == secondly_created_but_not_updated.content_id
- # creation order is inverted here as last created is last active
- assert res[4]['content_id'] == secondly_created.content_id
- assert res[5]['content_id'] == firstly_created.content_id
- # folder subcontent modification does not change folder order
- assert res[6]['content_id'] == main_folder.content_id
-
- def test_api__get_recently_active_content__ok__200__limit_2_multiple(self):
- # TODO - G.M - 2018-07-20 - Better fix for this test, do not use sleep()
- # anymore to fix datetime lack of precision.
-
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- workspace2 = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace2',
- save_now=True
- )
-
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder_workspace2 = api.create(ContentType.Folder, workspace2, None, 'Hepla', '', True) # nopep8
- sleep(1)
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- sleep(1)
- secondly_created = api.create(ContentType.Page, workspace, main_folder, 'another creation_order_test', '', True) # nopep8
- # update order test
- firstly_created_but_recently_updated = api.create(ContentType.Page, workspace, main_folder, 'update_order_test', '', True) # nopep8
- sleep(1)
- secondly_created_but_not_updated = api.create(ContentType.Page, workspace, main_folder, 'another update_order_test', '', True) # nopep8
- sleep(1)
- with new_revision(
- session=dbsession,
- tm=transaction.manager,
- content=firstly_created_but_recently_updated,
- ):
- firstly_created_but_recently_updated.description = 'Just an update'
- api.save(firstly_created_but_recently_updated)
- # comment change order
- firstly_created_but_recently_commented = api.create(ContentType.Page, workspace, main_folder, 'this is randomized label content', '', True) # nopep8
- sleep(1)
- secondly_created_but_not_commented = api.create(ContentType.Page, workspace, main_folder, 'this is another randomized label content', '', True) # nopep8
- sleep(1)
- comments = api.create_comment(workspace, firstly_created_but_recently_commented, 'juste a super comment', True) # nopep8
- sleep(1)
- content_workspace_2 = api.create(ContentType.Page, workspace2,main_folder_workspace2, 'content_workspace_2', '',True) # nopep8
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- params = {
- 'limit': 2,
- }
- res = self.testapp.get(
- '/api/v2/users/1/workspaces/{}/contents/recently_active'.format(workspace.workspace_id), # nopep8
- status=200,
- params=params
- ) # nopep8
- res = res.json_body
- assert len(res) == 2
- for elem in res:
- assert isinstance(elem['content_id'], int)
- assert isinstance(elem['content_type'], str)
- assert elem['content_type'] != 'comments'
- assert isinstance(elem['is_archived'], bool)
- assert isinstance(elem['is_deleted'], bool)
- assert isinstance(elem['label'], str)
- assert isinstance(elem['parent_id'], int) or elem['parent_id'] is None
- assert isinstance(elem['show_in_ui'], bool)
- assert isinstance(elem['slug'], str)
- assert isinstance(elem['status'], str)
- assert isinstance(elem['sub_content_types'], list)
- for sub_content_type in elem['sub_content_types']:
- assert isinstance(sub_content_type, str)
- assert isinstance(elem['workspace_id'], int)
- # comment is newest than page2
- assert res[0]['content_id'] == firstly_created_but_recently_commented.content_id
- assert res[1]['content_id'] == secondly_created_but_not_commented.content_id
-
- params = {
- 'limit': 2,
- 'before_datetime': secondly_created_but_not_commented.get_last_activity_date().strftime('%Y-%m-%dT%H:%M:%SZ'), # nopep8
- }
- res = self.testapp.get(
- '/api/v2/users/1/workspaces/{}/contents/recently_active'.format(workspace.workspace_id), # nopep8
- status=200,
- params=params
- )
- res = res.json_body
- assert len(res) == 2
- # last updated content is newer than other one despite creation
- # of the other is more recent
- assert res[0]['content_id'] == firstly_created_but_recently_updated.content_id
- assert res[1]['content_id'] == secondly_created_but_not_updated.content_id
-
-
- class TestUserReadStatusEndpoint(FunctionalTest):
- """
- Tests for /api/v2/users/{user_id}/workspaces/{workspace_id}/contents/read_status # nopep8
- """
- def test_api__get_read_status__ok__200__all(self):
-
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- workspace2 = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace2',
- save_now=True
- )
-
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder_workspace2 = api.create(ContentType.Folder, workspace2, None, 'Hepla', '', True) # nopep8
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- secondly_created = api.create(ContentType.Page, workspace, main_folder, 'another creation_order_test', '', True) # nopep8
- # update order test
- firstly_created_but_recently_updated = api.create(ContentType.Page, workspace, main_folder, 'update_order_test', '', True) # nopep8
- secondly_created_but_not_updated = api.create(ContentType.Page, workspace, main_folder, 'another update_order_test', '', True) # nopep8
- with new_revision(
- session=dbsession,
- tm=transaction.manager,
- content=firstly_created_but_recently_updated,
- ):
- firstly_created_but_recently_updated.description = 'Just an update'
- api.save(firstly_created_but_recently_updated)
- # comment change order
- firstly_created_but_recently_commented = api.create(ContentType.Page, workspace, main_folder, 'this is randomized label content', '', True) # nopep8
- secondly_created_but_not_commented = api.create(ContentType.Page, workspace, main_folder, 'this is another randomized label content', '', True) # nopep8
- comments = api.create_comment(workspace, firstly_created_but_recently_commented, 'juste a super comment', True) # nopep8
- content_workspace_2 = api.create(ContentType.Page, workspace2,main_folder_workspace2, 'content_workspace_2', '',True) # nopep8
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- res = res.json_body
- assert len(res) == 7
- for elem in res:
- assert isinstance(elem['content_id'], int)
- assert isinstance(elem['read_by_user'], bool)
- # comment is newest than page2
- assert res[0]['content_id'] == firstly_created_but_recently_commented.content_id
- assert res[1]['content_id'] == secondly_created_but_not_commented.content_id
- # last updated content is newer than other one despite creation
- # of the other is more recent
- assert res[2]['content_id'] == firstly_created_but_recently_updated.content_id
- assert res[3]['content_id'] == secondly_created_but_not_updated.content_id
- # creation order is inverted here as last created is last active
- assert res[4]['content_id'] == secondly_created.content_id
- assert res[5]['content_id'] == firstly_created.content_id
- # folder subcontent modification does not change folder order
- assert res[6]['content_id'] == main_folder.content_id
-
- @pytest.mark.xfail(reason='List of item in path bug need to be fixed')
- def test_api__get_read_status__ok__200__nominal_case(self):
-
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- workspace2 = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace2',
- save_now=True
- )
-
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder_workspace2 = api.create(ContentType.Folder, workspace2, None, 'Hepla', '', True) # nopep8
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- secondly_created = api.create(ContentType.Page, workspace, main_folder, 'another creation_order_test', '', True) # nopep8
- # update order test
- firstly_created_but_recently_updated = api.create(ContentType.Page, workspace, main_folder, 'update_order_test', '', True) # nopep8
- secondly_created_but_not_updated = api.create(ContentType.Page, workspace, main_folder, 'another update_order_test', '', True) # nopep8
- with new_revision(
- session=dbsession,
- tm=transaction.manager,
- content=firstly_created_but_recently_updated,
- ):
- firstly_created_but_recently_updated.description = 'Just an update'
- api.save(firstly_created_but_recently_updated)
- # comment change order
- firstly_created_but_recently_commented = api.create(ContentType.Page, workspace, main_folder, 'this is randomized label content', '', True) # nopep8
- secondly_created_but_not_commented = api.create(ContentType.Page, workspace, main_folder, 'this is another randomized label content', '', True) # nopep8
- comments = api.create_comment(workspace, firstly_created_but_recently_commented, 'juste a super comment', True) # nopep8
- content_workspace_2 = api.create(ContentType.Page, workspace2,main_folder_workspace2, 'content_workspace_2', '',True) # nopep8
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- selected_contents_id = [
- firstly_created_but_recently_commented.content_id,
- firstly_created_but_recently_updated.content_id,
- firstly_created.content_id,
- main_folder.content_id,
- ]
-
- content_id_str = '[{0},{1},{2},{3}]'.format(
- selected_contents_id[0],
- selected_contents_id[1],
- selected_contents_id[2],
- selected_contents_id[3],
- )
- params = {
- 'contents_ids': content_id_str
- }
- res = self.testapp.get(
- '/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), # nopep8
- status=200,
- params=params
- )
- res = res.json_body
- assert len(res) == 4
- for elem in res:
- assert isinstance(elem['content_id'], int)
- assert isinstance(elem['read_by_user'], bool)
- # comment is newest than page2
- assert res[0]['content_id'] == firstly_created_but_recently_commented.content_id
- assert res[1]['content_id'] == secondly_created_but_not_commented.content_id
- # last updated content is newer than other one despite creation
- # of the other is more recent
- assert res[2]['content_id'] == firstly_created_but_recently_updated.content_id
- assert res[3]['content_id'] == secondly_created_but_not_updated.content_id
- # creation order is inverted here as last created is last active
- assert res[4]['content_id'] == secondly_created.content_id
- assert res[5]['content_id'] == firstly_created.content_id
- # folder subcontent modification does not change folder order
- assert res[6]['content_id'] == main_folder.content_id
-
-
- class TestUserSetContentAsRead(FunctionalTest):
- """
- Tests for /api/v2/users/{user_id}/workspaces/{workspace_id}/contents/{content_id}/read # nopep8
- """
- def test_api_set_content_as_read__ok__200__nominal_case(self):
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- api.mark_unread(firstly_created)
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is False
- self.testapp.put(
- '/api/v2/users/{user_id}/workspaces/{workspace_id}/contents/{content_id}/read'.format( # nopep8
- workspace_id=workspace.workspace_id,
- content_id=firstly_created.content_id,
- user_id=admin.user_id,
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is True
-
- def test_api_set_content_as_read__ok__200__with_comments(self):
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- comments = api.create_comment(workspace, firstly_created, 'juste a super comment', True) # nopep8
- api.mark_unread(firstly_created)
- api.mark_unread(comments)
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is False
- self.testapp.put(
- '/api/v2/users/{user_id}/workspaces/{workspace_id}/contents/{content_id}/read'.format( # nopep8
- workspace_id=workspace.workspace_id,
- content_id=firstly_created.content_id,
- user_id=admin.user_id,
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is True
-
- # comment is also set as read
- assert comments.has_new_information_for(admin) is False
-
-
- class TestUserSetContentAsUnread(FunctionalTest):
- """
- Tests for /api/v2/users/{user_id}/workspaces/{workspace_id}/contents/{content_id}/unread # nopep8
- """
- def test_api_set_content_as_unread__ok__200__nominal_case(self):
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- api.mark_read(firstly_created)
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is True
- self.testapp.put(
- '/api/v2/users/{user_id}/workspaces/{workspace_id}/contents/{content_id}/unread'.format( # nopep8
- workspace_id=workspace.workspace_id,
- content_id=firstly_created.content_id,
- user_id=admin.user_id,
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is False
-
- def test_api_set_content_as_unread__ok__200__with_comments(self):
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- comments = api.create_comment(workspace, firstly_created, 'juste a super comment', True) # nopep8
- api.mark_read(firstly_created)
- api.mark_read(comments)
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is True
- self.testapp.put(
- '/api/v2/users/{user_id}/workspaces/{workspace_id}/contents/{content_id}/unread'.format( # nopep8
- workspace_id=workspace.workspace_id,
- content_id=firstly_created.content_id,
- user_id=admin.user_id,
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is False
-
- assert comments.has_new_information_for(admin) is True
-
-
- class TestUserSetWorkspaceAsRead(FunctionalTest):
- """
- Tests for /api/v2/users/{user_id}/workspaces/{workspace_id}/read
- """
- def test_api_set_content_as_read__ok__200__nominal_case(self):
- # init DB
- dbsession = get_tm_session(self.session_factory, transaction.manager)
- admin = dbsession.query(models.User) \
- .filter(models.User.email == 'admin@admin.admin') \
- .one()
- workspace_api = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config
-
- )
- workspace = WorkspaceApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- ).create_workspace(
- 'test workspace',
- save_now=True
- )
- api = ContentApi(
- current_user=admin,
- session=dbsession,
- config=self.app_config,
- )
- main_folder = api.create(ContentType.Folder, workspace, None, 'this is randomized folder', '', True) # nopep8
- # creation order test
- firstly_created = api.create(ContentType.Page, workspace, main_folder, 'creation_order_test', '', True) # nopep8
- api.mark_unread(main_folder)
- api.mark_unread(firstly_created)
- dbsession.flush()
- transaction.commit()
-
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is False
- assert res.json_body[1]['content_id'] == main_folder.content_id
- assert res.json_body[1]['read_by_user'] is False
- self.testapp.put(
- '/api/v2/users/{user_id}/workspaces/{workspace_id}/read'.format( # nopep8
- workspace_id=workspace.workspace_id,
- content_id=firstly_created.content_id,
- user_id=admin.user_id,
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces/{}/contents/read_status'.format(workspace.workspace_id), status=200) # nopep8
- assert res.json_body[0]['content_id'] == firstly_created.content_id
- assert res.json_body[0]['read_by_user'] is True
- assert res.json_body[1]['content_id'] == main_folder.content_id
- assert res.json_body[1]['read_by_user'] is True
-
-
- class TestUserWorkspaceEndpoint(FunctionalTest):
- """
- Tests for /api/v2/users/{user_id}/workspaces
- """
- fixtures = [BaseFixture, ContentFixtures]
-
- def test_api__get_user_workspaces__ok_200__nominal_case(self):
- """
- Check obtain all workspaces reachables for user with user auth.
- """
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces', status=200)
- res = res.json_body
- workspace = res[0]
- assert workspace['workspace_id'] == 1
- assert workspace['label'] == 'Business'
- assert workspace['slug'] == 'business'
- assert len(workspace['sidebar_entries']) == 7
-
- sidebar_entry = workspace['sidebar_entries'][0]
- assert sidebar_entry['slug'] == 'dashboard'
- assert sidebar_entry['label'] == 'Dashboard'
- assert sidebar_entry['route'] == '/#/workspaces/1/dashboard' # nopep8
- assert sidebar_entry['hexcolor'] == "#252525"
- assert sidebar_entry['fa_icon'] == "signal"
-
- sidebar_entry = workspace['sidebar_entries'][1]
- assert sidebar_entry['slug'] == 'contents/all'
- assert sidebar_entry['label'] == 'All Contents'
- assert sidebar_entry['route'] == "/#/workspaces/1/contents" # nopep8
- assert sidebar_entry['hexcolor'] == "#fdfdfd"
- assert sidebar_entry['fa_icon'] == "th"
-
- sidebar_entry = workspace['sidebar_entries'][2]
- assert sidebar_entry['slug'] == 'contents/html-documents'
- assert sidebar_entry['label'] == 'Text Documents'
- assert sidebar_entry['route'] == '/#/workspaces/1/contents?type=html-documents' # nopep8
- assert sidebar_entry['hexcolor'] == "#3f52e3"
- assert sidebar_entry['fa_icon'] == "file-text-o"
-
- sidebar_entry = workspace['sidebar_entries'][3]
- assert sidebar_entry['slug'] == 'contents/markdownpluspage'
- assert sidebar_entry['label'] == 'Markdown Plus Documents'
- assert sidebar_entry['route'] == "/#/workspaces/1/contents?type=markdownpluspage" # nopep8
- assert sidebar_entry['hexcolor'] == "#f12d2d"
- assert sidebar_entry['fa_icon'] == "file-code-o"
-
- sidebar_entry = workspace['sidebar_entries'][4]
- assert sidebar_entry['slug'] == 'contents/files'
- assert sidebar_entry['label'] == 'Files'
- assert sidebar_entry['route'] == "/#/workspaces/1/contents?type=file" # nopep8
- assert sidebar_entry['hexcolor'] == "#FF9900"
- assert sidebar_entry['fa_icon'] == "paperclip"
-
- sidebar_entry = workspace['sidebar_entries'][5]
- assert sidebar_entry['slug'] == 'contents/threads'
- assert sidebar_entry['label'] == 'Threads'
- assert sidebar_entry['route'] == "/#/workspaces/1/contents?type=thread" # nopep8
- assert sidebar_entry['hexcolor'] == "#ad4cf9"
- assert sidebar_entry['fa_icon'] == "comments-o"
-
- sidebar_entry = workspace['sidebar_entries'][6]
- assert sidebar_entry['slug'] == 'calendar'
- assert sidebar_entry['label'] == 'Calendar'
- assert sidebar_entry['route'] == "/#/workspaces/1/calendar" # nopep8
- assert sidebar_entry['hexcolor'] == "#757575"
- assert sidebar_entry['fa_icon'] == "calendar"
-
- def test_api__get_user_workspaces__err_403__unallowed_user(self):
- """
- Check obtain all workspaces reachables for one user
- with another non-admin user auth.
- """
- self.testapp.authorization = (
- 'Basic',
- (
- 'lawrence-not-real-email@fsf.local',
- 'foobarbaz'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces', status=403)
- assert isinstance(res.json, dict)
- assert 'code' in res.json.keys()
- assert 'message' in res.json.keys()
- assert 'details' in res.json.keys()
-
- def test_api__get_user_workspaces__err_401__unregistered_user(self):
- """
- Check obtain all workspaces reachables for one user
- without correct user auth (user unregistered).
- """
- self.testapp.authorization = (
- 'Basic',
- (
- 'john@doe.doe',
- 'lapin'
- )
- )
- res = self.testapp.get('/api/v2/users/1/workspaces', status=401)
- assert isinstance(res.json, dict)
- assert 'code' in res.json.keys()
- assert 'message' in res.json.keys()
- assert 'details' in res.json.keys()
-
- def test_api__get_user_workspaces__err_400__user_does_not_exist(self):
- """
- Check obtain all workspaces reachables for one user who does
- not exist
- with a correct user auth.
- """
- self.testapp.authorization = (
- 'Basic',
- (
- 'admin@admin.admin',
- 'admin@admin.admin'
- )
- )
- res = self.testapp.get('/api/v2/users/5/workspaces', status=400)
- assert isinstance(res.json, dict)
- assert 'code' in res.json.keys()
- assert 'message' in res.json.keys()
- assert 'details' in res.json.keys()
|