コード例 #1
0
def test_should_delete_the_goal_if_all_data_is_OK_and_the_admin_is_logged_in(
        database):
    database.executescript("""
        INSERT INTO admin_users VALUES
        ("admin-1", "user-1");
        
        INSERT INTO goals VALUES
        ("test-goal-id-1", "test-date", "test-title", "test-category", 1, "user-1"),
        ("test-goal-id-2", "test-date", "test-title", "test-category", 1, "user-1"),
        ("test-goal-id-3", "test-date", "test-title", "test-category", 1, "user-1"),
        ("test-goal-id-4", "test-date", "test-title", "test-category", 1, "user-2");
        """)
    user_repository = UserRepository(
        None,
        database,
        get_current_user_id=lambda: "admin-1",
    )
    goal_repository = GoalRepository(None, database)
    goal_interactor = GoalInteractor(None, goal_repository, user_repository)
    data = {
        "id": "test-id",
        "title": "test-title",
        "description": "test-description",
        "hint": "test-hint",
        "goal_id": "test-goal-id-1"
    }
    goal_interactor.save_task(data)
    tasks = goal_interactor.get_all_tasks_by_goal_id("test-goal-id-1")
    assert len(tasks) == 1
    assert tasks[0].id == "test-id"
    goal_interactor.delete_task_by_id("test-id")
    tasks = goal_interactor.get_all_tasks_by_goal_id("test-goal-id-1")
    assert tasks == []
コード例 #2
0
def test_should_get_NotAuthorizedError_if_the_goal_is_not_accessible_by_the_admin(
        database):
    database.executescript("""
        INSERT INTO admin_users VALUES
        ("admin-1", "user-2");
        
        INSERT INTO goals VALUES
        ("test-goal-id-1", "2020-03-15", "test-title", "test-category", 1, "user-1"),
        ("test-goal-id-2", "2020-03-15", "test-title", "test-category", 1, "user-1"),
        ("test-goal-id-3", "2020-03-15", "test-title", "test-category", 1, "user-1"),
        ("test-goal-id-4", "2020-03-16", "test-title", "test-category", 0, "user-1"),
        ("test-goal-id-5", "2020-03-17", "test-title", "test-category", 1, "user-2");
        """)
    user_repository = UserRepository(
        None,
        database,
        get_current_user_id=lambda: "admin-1",
    )
    goal_repository = GoalRepository(None, database)
    goal_interactor = GoalInteractor(None, goal_repository, user_repository)
    data = {
        "id": "test-id",
        "title": "test-title",
        "description": "test-description",
        "hint": "test-hint",
        "goal_id": "test-goal-id-1"
    }
    with pytest.raises(NotAuthorizedError) as exception:
        goal_interactor.save_task(data)
    assert exception.value.data == {"msg": "This operation is not authorized."}
コード例 #3
0
def test_should_get_NotAuthorizedError_if_the_user_doesnt_have_an_admin_role(
        database):
    user_repository = UserRepository(
        None,
        database,
        get_current_user_id=lambda: "user-1",
    )
    goal_repository = GoalRepository(None, database)
    goal_interactor = GoalInteractor(None, goal_repository, user_repository)
    data = {
        "id": "test-id",
        "title": "test-title",
        "description": "test-description",
        "hint": "test-hint",
        "goal_id": "test-goal-id-1"
    }
    with pytest.raises(NotAuthorizedError) as exception:
        goal_interactor.save_task(data)
    assert exception.value.data == {"msg": "This operation is not authorized."}
コード例 #4
0
def test_should_get_NotFoundError_if_the_goal_doesnt_exist(database):
    user_repository = UserRepository(
        None,
        database,
        get_current_user_id=lambda: "admin-1",
    )
    goal_repository = GoalRepository(None, database)
    goal_interactor = GoalInteractor(None, goal_repository, user_repository)
    data = {
        "id": "test-id",
        "title": "test-title",
        "description": "test-description",
        "hint": "test-hint",
        "goal_id": "goal-doesnt-exist"
    }
    with pytest.raises(NotFoundError) as exception:
        goal_interactor.save_task(data)
    assert exception.value.data == {
        "msg": "Goal with id 'goal-doesnt-exist' not found."
    }
コード例 #5
0
def test_should_raise_BadRequestError_if_there_are_not_the_required_fields_in_the_request(
        database):
    user_repository = UserRepository(
        None,
        database,
        get_current_user_id=lambda: "admin-1",
    )
    goal_repository = GoalRepository(None, database)
    goal_interactor = GoalInteractor(None, goal_repository, user_repository)

    all_fields_missing = {}
    with pytest.raises(BadRequestError) as exception:
        goal_interactor.save_task(all_fields_missing)
    assert exception.value.data == {
        "id": "REQUIRED",
        "title": "REQUIRED",
        "description": "REQUIRED",
        "hint": "REQUIRED",
        "goal_id": "REQUIRED",
    }

    id_missing = {
        "title": "test-title",
        "description": "test-description",
        "hint": "test-hint",
        "goal_id": "test-goal-id"
    }
    with pytest.raises(BadRequestError) as exception:
        goal_interactor.save_task(id_missing)
    assert exception.value.data == {
        "id": "REQUIRED",
    }

    title_missing = {
        "id": "test-id",
        "description": "test-description",
        "hint": "test-hint",
        "goal_id": "test-goal-id"
    }
    with pytest.raises(BadRequestError) as exception:
        goal_interactor.save_task(title_missing)
    assert exception.value.data == {
        "title": "REQUIRED",
    }

    description_missing = {
        "id": "test-id",
        "title": "test-title",
        "hint": "test-hint",
        "goal_id": "test-goal-id"
    }
    with pytest.raises(BadRequestError) as exception:
        goal_interactor.save_task(description_missing)
    assert exception.value.data == {
        "description": "REQUIRED",
    }

    hint_missing = {
        "id": "test-id",
        "title": "test-title",
        "description": "test-description",
        "goal_id": "test-goal-id"
    }
    with pytest.raises(BadRequestError) as exception:
        goal_interactor.save_task(hint_missing)
    assert exception.value.data == {
        "hint": "REQUIRED",
    }

    goal_id_missing = {
        "id": "test-id",
        "title": "test-title",
        "description": "test-description",
        "hint": "test-hint",
    }
    with pytest.raises(BadRequestError) as exception:
        goal_interactor.save_task(goal_id_missing)
    assert exception.value.data == {
        "goal_id": "REQUIRED",
    }