def test_edit(self, mock_session, mock_fields, mock_content): mock_session.return_value = FakeSession() ticket = bugzilla.BugzillaTicket(URL, PROJECT, ticket_id=TICKET_ID) t = ticket.edit() self.assertEqual(t, mock_content.return_value)
def test_edit_error(self, mock_session, mock_fields): mock_session.return_value = FakeSession(status_code=401) ticket = bugzilla.BugzillaTicket(URL, PROJECT, ticket_id=TICKET_ID) t = ticket.edit() self.assertEqual(t, RETURN_RESULT('Failure', 'There is some error.', TICKET_URL, None))
def test_edit_unexpected_response(self, mock_session, mock_id, mock_project, mock_fields): mock_session.return_value = FakeSession(status_code=400) ticket = bugzilla.BugzillaTicket(URL, PROJECT, ticket_id=TICKET_ID) t = ticket.edit() self.assertEqual(t, RETURN_RESULT('Failure', '', TICKET_URL, None))
def test_edit_bugs(self, mock_session, mock_fields): mock_session.return_value = FakeSession(status_code=402) ticket = bugzilla.BugzillaTicket(URL, PROJECT, ticket_id=TICKET_ID) t = ticket.edit() self.assertEqual(t, SUCCESS_RESULT._replace(url=TICKET_URL))
def test_edit_no_id(self, mock_session): mock_session.return_value = FakeSession() ticket = bugzilla.BugzillaTicket(URL, PROJECT) t = ticket.edit() self.assertEqual(t, FAILURE_RESULT._replace(error_message=ERROR_MESSAGE))