launchpad-reviewers team mailing list archive
-
launchpad-reviewers team
-
Mailing list archive
-
Message #24829
[Merge] ~cjwatson/launchpad:buildmaster-refactor-handle-status-tests into launchpad:master
Colin Watson has proposed merging ~cjwatson/launchpad:buildmaster-refactor-handle-status-tests into launchpad:master with ~cjwatson/launchpad:buildmaster-refactor-getFile as a prerequisite.
Commit message:
Refactor TestHandleStatusMixin using AsynchronousDeferredRunTest
Requested reviews:
Launchpad code reviewers (launchpad-reviewers)
For more details, see:
https://code.launchpad.net/~cjwatson/launchpad/+git/launchpad/+merge/385251
This composes better with other test utilities we use, especially fixtures, than the Trial TestCase does.
--
Your team Launchpad code reviewers is requested to review the proposed merge of ~cjwatson/launchpad:buildmaster-refactor-handle-status-tests into launchpad:master.
diff --git a/lib/lp/buildmaster/tests/test_buildfarmjobbehaviour.py b/lib/lp/buildmaster/tests/test_buildfarmjobbehaviour.py
index 5046d8c..3d2a027 100644
--- a/lib/lp/buildmaster/tests/test_buildfarmjobbehaviour.py
+++ b/lib/lp/buildmaster/tests/test_buildfarmjobbehaviour.py
@@ -317,12 +317,10 @@ class TestVerifySuccessfulBuildMixin:
class TestHandleStatusMixin:
- """Tests for `IPackageBuild`s handleStatus method.
-
- This should be run with a Trial TestCase.
- """
+ """Tests for `IPackageBuild`s handleStatus method."""
layer = LaunchpadZopelessLayer
+ run_tests_with = AsynchronousDeferredRunTest.make_factory(timeout=30)
def makeBuild(self):
"""Allow classes to override the build with which the test runs."""
diff --git a/lib/lp/code/model/tests/test_recipebuilder.py b/lib/lp/code/model/tests/test_recipebuilder.py
index c07fce7..132e1d1 100644
--- a/lib/lp/code/model/tests/test_recipebuilder.py
+++ b/lib/lp/code/model/tests/test_recipebuilder.py
@@ -15,7 +15,6 @@ from testtools.matchers import MatchesListwise
from testtools.twistedsupport import AsynchronousDeferredRunTest
import transaction
from twisted.internet import defer
-from twisted.trial.unittest import TestCase as TrialTestCase
from zope.component import getUtility
from zope.security.proxy import removeSecurityProxy
@@ -372,14 +371,10 @@ class TestAsyncRecipeBuilder(TestRecipeBuilderBase):
build_request)
-class TestBuildNotifications(TrialTestCase):
+class TestBuildNotifications(TestCaseWithFactory):
layer = LaunchpadZopelessLayer
-
- def setUp(self):
- super(TestBuildNotifications, self).setUp()
- from lp.testing.factory import LaunchpadObjectFactory
- self.factory = LaunchpadObjectFactory()
+ run_tests_with = AsynchronousDeferredRunTest.make_factory(timeout=30)
def prepareBehaviour(self, fake_successful_upload=False):
self.queue_record = (
@@ -460,5 +455,5 @@ class TestVerifySuccessfulBuildForSPRBuild(
class TestHandleStatusForSPRBuild(
- MakeSPRecipeBuildMixin, TestHandleStatusMixin, TrialTestCase):
+ MakeSPRecipeBuildMixin, TestHandleStatusMixin, TestCaseWithFactory):
"""IPackageBuild.handleStatus works with SPRecipe builds."""
diff --git a/lib/lp/snappy/tests/test_snapbuildbehaviour.py b/lib/lp/snappy/tests/test_snapbuildbehaviour.py
index f851008..5dd3cf1 100644
--- a/lib/lp/snappy/tests/test_snapbuildbehaviour.py
+++ b/lib/lp/snappy/tests/test_snapbuildbehaviour.py
@@ -39,7 +39,6 @@ from twisted.internet import (
defer,
reactor,
)
-from twisted.trial.unittest import TestCase as TrialTestCase
from twisted.web import (
server,
xmlrpc,
@@ -843,6 +842,5 @@ class TestVerifySuccessfulBuildForSnapBuild(
class TestHandleStatusForSnapBuild(
- MakeSnapBuildMixin, TestHandleStatusMixin, TrialTestCase,
- fixtures.TestWithFixtures):
+ MakeSnapBuildMixin, TestHandleStatusMixin, TestCaseWithFactory):
"""IPackageBuild.handleStatus works with Snap builds."""
diff --git a/lib/lp/soyuz/tests/test_binarypackagebuildbehaviour.py b/lib/lp/soyuz/tests/test_binarypackagebuildbehaviour.py
index db0b8ed..aa79d81 100644
--- a/lib/lp/soyuz/tests/test_binarypackagebuildbehaviour.py
+++ b/lib/lp/soyuz/tests/test_binarypackagebuildbehaviour.py
@@ -17,7 +17,6 @@ from testtools.matchers import MatchesListwise
from testtools.twistedsupport import AsynchronousDeferredRunTest
import transaction
from twisted.internet import defer
-from twisted.trial.unittest import TestCase as TrialTestCase
from zope.component import getUtility
from zope.security.proxy import removeSecurityProxy
@@ -634,5 +633,5 @@ class TestVerifySuccessfulBuildForBinaryPackageBuild(
class TestHandleStatusForBinaryPackageBuild(
- MakeBinaryPackageBuildMixin, TestHandleStatusMixin, TrialTestCase):
+ MakeBinaryPackageBuildMixin, TestHandleStatusMixin, TestCaseWithFactory):
"""IPackageBuild.handleStatus works with binary builds."""
diff --git a/lib/lp/soyuz/tests/test_livefsbuildbehaviour.py b/lib/lp/soyuz/tests/test_livefsbuildbehaviour.py
index 95e9694..bcffe4e 100644
--- a/lib/lp/soyuz/tests/test_livefsbuildbehaviour.py
+++ b/lib/lp/soyuz/tests/test_livefsbuildbehaviour.py
@@ -10,13 +10,11 @@ __metaclass__ = type
from datetime import datetime
import os.path
-import fixtures
import pytz
from testtools.matchers import MatchesListwise
from testtools.twistedsupport import AsynchronousDeferredRunTest
import transaction
from twisted.internet import defer
-from twisted.trial.unittest import TestCase as TrialTestCase
from zope.component import getUtility
from zope.security.proxy import Proxy
@@ -342,6 +340,5 @@ class TestVerifySuccessfulBuildForLiveFSBuild(
class TestHandleStatusForLiveFSBuild(
- MakeLiveFSBuildMixin, TestHandleStatusMixin, TrialTestCase,
- fixtures.TestWithFixtures):
+ MakeLiveFSBuildMixin, TestHandleStatusMixin, TestCaseWithFactory):
"""IPackageBuild.handleStatus works with LiveFS builds."""