def test_push_event_issue_mention(client):
    creation_status = f.IssueStatusFactory()
    role = f.RoleFactory(project=creation_status.project,
                         permissions=["view_issues"])
    f.MembershipFactory(project=creation_status.project,
                        role=role,
                        user=creation_status.project.owner)
    issue = f.IssueFactory.create(status=creation_status,
                                  project=creation_status.project,
                                  owner=creation_status.project.owner)
    take_snapshot(issue, user=creation_status.project.owner)
    payload = {
        "actor": {
            "user": {
                "uuid": "{ce1054cd-3f43-49dc-8aea-d3085ee7ec9b}",
                "username": "******",
                "links": {
                    "html": {
                        "href": "http://bitbucket.com/test-user"
                    }
                }
            }
        },
        "push": {
            "changes": [{
                "commits": [{
                    "message":
                    "test message   test   TG-%s   ok   bye!" % (issue.ref)
                }]
            }]
        }
    }
    mail.outbox = []
    ev_hook = event_hooks.PushEventHook(issue.project, payload)
    ev_hook.process_event()
    issue_history = get_history_queryset_by_model_instance(issue)
    assert issue_history.count() == 1
    assert issue_history[0].comment.startswith(
        "This issue has been mentioned by")
    assert len(mail.outbox) == 1
Example #2
0
def test_push_event_us_bad_processing_non_existing_status(client):
    user_story = f.UserStoryFactory.create()
    payload = {
        "push": {
            "changes": [{
                "commits": [{
                    "message":
                    "test message   test   TG-%s    #non-existing-slug   ok   bye!"
                    % (user_story.ref)
                }]
            }]
        }
    }

    mail.outbox = []

    ev_hook = event_hooks.PushEventHook(user_story.project, payload)
    with pytest.raises(ActionSyntaxException) as excinfo:
        ev_hook.process_event()

    assert str(excinfo.value) == "The status doesn't exist"
    assert len(mail.outbox) == 0
Example #3
0
def test_push_event_processing_case_insensitive(client):
    creation_status = f.TaskStatusFactory()
    role = f.RoleFactory(project=creation_status.project,
                         permissions=["view_tasks"])
    f.MembershipFactory(project=creation_status.project,
                        role=role,
                        user=creation_status.project.owner)
    new_status = f.TaskStatusFactory(project=creation_status.project)
    task = f.TaskFactory.create(status=creation_status,
                                project=creation_status.project,
                                owner=creation_status.project.owner)
    payload = {
        "actor": {
            "user": {
                "uuid": "{ce1054cd-3f43-49dc-8aea-d3085ee7ec9b}",
                "username": "******",
                "links": {
                    "html": {
                        "href": "http://bitbucket.com/test-user"
                    }
                }
            }
        },
        "push": {
            "changes": [{
                "commits": [{
                    "message":
                    "test message   test   TG-%s    #%s   ok   bye!" %
                    (task.ref, new_status.slug)
                }]
            }]
        }
    }
    mail.outbox = []
    ev_hook = event_hooks.PushEventHook(task.project, payload)
    ev_hook.process_event()
    task = Task.objects.get(id=task.id)
    assert task.status.id == new_status.id
    assert len(mail.outbox) == 1
def test_push_event_task_bad_processing_non_existing_ref(client):
    issue_status = f.IssueStatusFactory()
    payload = {
        "push": {
            "changes": [{
                "new": {
                    "target": {
                        "message":
                        "test message   test   TG-6666666    #%s   ok   bye!" %
                        (issue_status.slug)
                    }
                }
            }]
        }
    }
    mail.outbox = []

    ev_hook = event_hooks.PushEventHook(issue_status.project, payload)
    with pytest.raises(ActionSyntaxException) as excinfo:
        ev_hook.process_event()

    assert str(excinfo.value) == "The referenced element doesn't exist"
    assert len(mail.outbox) == 0
def test_push_event_processing_case_insensitive(client):
    creation_status = f.TaskStatusFactory()
    role = f.RoleFactory(project=creation_status.project, permissions=["view_tasks"])
    f.MembershipFactory(project=creation_status.project, role=role, user=creation_status.project.owner)
    new_status = f.TaskStatusFactory(project=creation_status.project)
    task = f.TaskFactory.create(status=creation_status, project=creation_status.project, owner=creation_status.project.owner)
    payload = {
        "push": {
            "changes": [
                {
                    "commits": [
                        { "message": "test message   test   TG-%s    #%s   ok   bye!" % (task.ref, new_status.slug) }
                    ]
                }
            ]
        }
    }
    mail.outbox = []
    ev_hook = event_hooks.PushEventHook(task.project, payload)
    ev_hook.process_event()
    task = Task.objects.get(id=task.id)
    assert task.status.id == new_status.id
    assert len(mail.outbox) == 1
def test_push_event_user_story_processing(client):
    creation_status = f.UserStoryStatusFactory()
    role = f.RoleFactory(project=creation_status.project, permissions=["view_us"])
    f.MembershipFactory(project=creation_status.project, role=role, user=creation_status.project.owner)
    new_status = f.UserStoryStatusFactory(project=creation_status.project)
    user_story = f.UserStoryFactory.create(status=creation_status, project=creation_status.project, owner=creation_status.project.owner)
    payload = {
        "push": {
            "changes": [
                {
                    "commits": [
                        { "message": "test message   test   TG-%s    #%s   ok   bye!" % (user_story.ref, new_status.slug) }
                    ]
                }
            ]
        }
    }
    mail.outbox = []
    ev_hook = event_hooks.PushEventHook(user_story.project, payload)
    ev_hook.process_event()
    user_story = UserStory.objects.get(id=user_story.id)
    assert user_story.status.id == new_status.id
    assert len(mail.outbox) == 1
def test_push_event_multiple_actions(client):
    creation_status = f.IssueStatusFactory()
    role = f.RoleFactory(project=creation_status.project,
                         permissions=["view_issues"])
    f.MembershipFactory(project=creation_status.project,
                        role=role,
                        user=creation_status.project.owner)
    new_status = f.IssueStatusFactory(project=creation_status.project)
    issue1 = f.IssueFactory.create(status=creation_status,
                                   project=creation_status.project,
                                   owner=creation_status.project.owner)
    issue2 = f.IssueFactory.create(status=creation_status,
                                   project=creation_status.project,
                                   owner=creation_status.project.owner)
    payload = {
        "push": {
            "changes": [{
                "new": {
                    "target": {
                        "message":
                        "test message   test   TG-%s    #%s   ok  test   TG-%s    #%s   ok  bye!"
                        % (issue1.ref, new_status.slug, issue2.ref,
                           new_status.slug)
                    }
                }
            }]
        }
    }
    mail.outbox = []
    ev_hook1 = event_hooks.PushEventHook(issue1.project, payload)
    ev_hook1.process_event()
    issue1 = Issue.objects.get(id=issue1.id)
    issue2 = Issue.objects.get(id=issue2.id)
    assert issue1.status.id == new_status.id
    assert issue2.status.id == new_status.id
    assert len(mail.outbox) == 2