l.c.m.t.t.TestMergeProposalMailing(TestCaseWithFactory) : class documentation

Part of lp.code.mail.tests.test_branchmergeproposal View In Hierarchy

Test that reasonable mailings are generated
Method setUp Undocumented
Method makeProposalWithSubscriber Undocumented
Method test_generateCreationEmail Ensure that the contents of the mail are as expected
Method test_forCreation_without_commit_message If there is no commit message, email should say 'None Specified.'
Method test_forCreation_with_bugs If there are related bugs, include 'Related bugs'.
Method test_forCreation_without_bugs If there are no related bugs, omit 'Related bugs'.
Method test_forCreation_with_review_request Correctly format list of reviewers.
Method test_forCreation_with_review_request_and_bug Correctly format list of reviewers and bug info.
Method test_forCreation_with_review_request_and_private_bug Correctly format list of reviewers and bug info.
Method test_forCreation_with_prerequisite_branch Correctly format list of reviewers.
Method test_to_addrs_includes_reviewers The addresses for the to header include requested reviewers
Method test_to_addrs_excludes_team_reviewers Addresses for the to header exclude requested team reviewers.
Method test_to_addrs_excludes_people_with_hidden_addresses The to header excludes those with hidden addresses.
Method test_RecordMessageId Ensure that the contents of the mail are as expected
Method test_inReplyTo Ensure that messages are in reply to the root
Method test_generateEmail_attaches_diff A diff should be attached, with the correct metadata.
Method test_generateEmail_no_diff_for_status_only If the subscription is for status only, don't attach diffs.
Method test_generateEmail_attaches_diff_oversize_truncated An oversized diff will be truncated, and the receiver informed.
Method getProposalUpdatedEmailJob Return the merge proposal updated email job.
Method test_no_job_created_if_no_delta Ensure None is returned if no change has been made.
Method test_no_job_created_if_only_preview_diff_changed Ensure None is returned if only the preview diff has changed.
Method test_no_job_created_if_work_in_progress Ensure None is returned if no change has been made.
Method test_job_created_if_work_in_progress_merged Undocumented
Method makeProposalUpdatedEmailJob Fixture method providing a mailer for a modified merge proposal
Method test_forModificationHasMsgId Ensure the right delta is filled out if there is a change.
Method test_forModificationWithModificationTextDelta Ensure the right delta is filled out if there is a change.
Method test_merge_proposal_modified Should send emails when invoked with correct parameters.
Method assertRecipientsMatches Assert that mailer will send to the people in recipients.
Method makeReviewRequest Undocumented
Method test_forReviewRequest Test creating a mailer for a review request.
Method test_to_addrs_for_review_request Undocumented
Method test_forReviewRequestMessageId Test creating a mailer for a review request.

Inherited from TestCaseWithFactory:

Method getUserBrowser Return a Browser logged in as a fresh user, maybe opened at url.
Method getNonRedirectingBrowser Undocumented
Method createBranchAtURL Create a branch at the supplied URL.
Method create_branch_and_tree Create a database branch, bzr branch and bzr checkout.
Method createBzrBranch Create a bzr branch for a database branch.
Static Method getBranchPath Return the path of the branch in the mirrored area.
Method useTempBzrHome Undocumented
Method useBzrBranches Prepare for using bzr branches.

Inherited from TestCase (via TestCaseWithFactory):

Method becomeDbUser Commit, then log into the database as dbuser.
Method __str__ The string representation of a test is its id.
Method useContext Use the supplied context in this test.
Method makeTemporaryDirectory Create a temporary directory, and return its path.
Method installKarmaRecorder Set up and return a KarmaRecorder.
Method assertProvides Assert 'obj' correctly provides 'interface'.
Method assertNotifies Assert that a callable performs a given notification.
Method assertNoNotification Assert that no notifications are generated by the callable.
Method assertSqlAttributeEqualsDate Fail unless the value of the attribute is equal to the date.
Method assertTextMatchesExpressionIgnoreWhitespace Undocumented
Method assertIsInstance Assert that an instance is an instance of assert_class.
Method assertIsNot Assert that expected is not the same object as observed.
Method assertContentEqual Assert that 'iter1' has the same content as 'iter2'.
Method assertRaisesWithContent Check if the given exception is raised with given content.
Method assertBetween Assert that 'variable' is strictly between two boundaries.
Method assertVectorEqual Apply assertEqual to all given pairs in one go.
Method expectedLog Expect a log to be written that matches the regex.
Method pushConfig Push some key-value pairs into a section of the config.
Method attachOopses Undocumented
Method attachLibrarianLog Include the logChunks from fixture in the test details.
Method assertStatementCount Assert that the expected number of SQL statements occurred.
Method useTempDir Use a temporary directory for this test.
Method assertEmailHeadersEqual Assert that two email headers are equal.
Method assertStartsWith Undocumented
Method assertEndsWith Asserts that s ends with suffix.
Method checkPermissions Check if the used_permissions match expected_permissions.
Method assertEmailQueueLength Pop the email queue, assert its length, and return it.
Method _unfoldEmailHeader Unfold a multiline email header.
def setUp(self):
Undocumented
def makeProposalWithSubscriber(self, diff_text=None, initial_comment=None, prerequisite=False, needs_review=True, reviewer=None):
Undocumented
def test_generateCreationEmail(self):
Ensure that the contents of the mail are as expected
def test_forCreation_without_commit_message(self):
If there is no commit message, email should say 'None Specified.'
def test_forCreation_with_bugs(self):
If there are related bugs, include 'Related bugs'.
def test_forCreation_without_bugs(self):
If there are no related bugs, omit 'Related bugs'.
def test_forCreation_with_review_request(self):
Correctly format list of reviewers.
def test_forCreation_with_review_request_and_bug(self):
Correctly format list of reviewers and bug info.
def test_forCreation_with_review_request_and_private_bug(self):
Correctly format list of reviewers and bug info.

Private bugs should not be listed in the email unless authorised.

def test_forCreation_with_prerequisite_branch(self):
Correctly format list of reviewers.
def test_to_addrs_includes_reviewers(self):
The addresses for the to header include requested reviewers
def test_to_addrs_excludes_team_reviewers(self):
Addresses for the to header exclude requested team reviewers.
def test_to_addrs_excludes_people_with_hidden_addresses(self):
The to header excludes those with hidden addresses.
def test_RecordMessageId(self):
Ensure that the contents of the mail are as expected
def test_inReplyTo(self):
Ensure that messages are in reply to the root
def test_generateEmail_attaches_diff(self):
A diff should be attached, with the correct metadata.

The attached diff should be inline, should have a filename, and should be of type text/x-diff (or text/x-patch), with no declared encoding. (The only encoding in a diff is the encoding of the input files, which may be inconsistent.)

def test_generateEmail_no_diff_for_status_only(self):
If the subscription is for status only, don't attach diffs.
def test_generateEmail_attaches_diff_oversize_truncated(self):
An oversized diff will be truncated, and the receiver informed.
def getProposalUpdatedEmailJob(self, merge_proposal):
Return the merge proposal updated email job.
def test_no_job_created_if_no_delta(self):
Ensure None is returned if no change has been made.
def test_no_job_created_if_only_preview_diff_changed(self):
Ensure None is returned if only the preview diff has changed.
def test_no_job_created_if_work_in_progress(self):
Ensure None is returned if no change has been made.
def test_job_created_if_work_in_progress_merged(self):
Undocumented
def makeProposalUpdatedEmailJob(self):
Fixture method providing a mailer for a modified merge proposal
def test_forModificationHasMsgId(self):
Ensure the right delta is filled out if there is a change.
def test_forModificationWithModificationTextDelta(self):
Ensure the right delta is filled out if there is a change.
def test_merge_proposal_modified(self):
Should send emails when invoked with correct parameters.
def assertRecipientsMatches(self, recipients, mailer):
Assert that mailer will send to the people in recipients.
def makeReviewRequest(self):
Undocumented
def test_forReviewRequest(self):
Test creating a mailer for a review request.
def test_to_addrs_for_review_request(self):
Undocumented
def test_forReviewRequestMessageId(self):
Test creating a mailer for a review request.
API Documentation for Launchpad, generated by pydoctor at 2022-06-16 00:00:12.