~launchpad-pqm/launchpad/devel

« back to all changes in this revision

Viewing changes to lib/lp/codehosting/tests/test_lpserve.py

Merged db-devel into replication.

Show diffs side-by-side

added added

removed removed

Lines of Context:
12
12
from bzrlib.transport import remote
13
13
from bzrlib.plugins.lpserve.test_lpserve import TestCaseWithSubprocess
14
14
 
15
 
from lp.codehosting.bzrutils import make_error_utility
 
15
from canonical.testing.layers import LaunchpadLayer
 
16
from lp.testing.fixture import CaptureOops
16
17
 
17
18
 
18
19
class TestLaunchpadServe(TestCaseWithSubprocess):
23
24
    modified for the Launchpad environment.
24
25
    """
25
26
 
 
27
    # The oops tests need rabbit available
 
28
    layer = LaunchpadLayer
 
29
 
26
30
    def assertFinishedCleanly(self, result):
27
31
        """Assert that a server process finished cleanly."""
28
32
        self.assertEqual((0, '', ''), tuple(result))
82
86
 
83
87
    def test_successful_start_then_stop_logs_no_oops(self):
84
88
        # Starting and stopping the lp-serve process leaves no OOPS.
 
89
        capture = self.useFixture(CaptureOops())
85
90
        process, transport = self.start_server_inet()
86
 
        error_utility = make_error_utility(process.pid)
87
91
        self.finish_lpserve_subprocess(process)
88
 
        self.assertIs(None, error_utility.getLastOopsReport())
 
92
        capture.sync()
 
93
        self.assertEqual([], capture.oopses)
89
94
 
90
95
    def test_unexpected_error_logs_oops(self):
91
96
        # If an unexpected error is raised in the plugin, then an OOPS is
92
97
        # recorded.
 
98
        capture = self.useFixture(CaptureOops())
93
99
        process, transport = self.start_server_inet()
94
 
        error_utility = make_error_utility(process.pid)
95
100
        # This will trigger an error, because the XML-RPC server is not
96
101
        # running, and any filesystem access tries to get at the XML-RPC
97
102
        # server. If this *doesn'* raise, then the test is no longer valid and
101
106
            transport.list_dir, 'foo/bar/baz')
102
107
        result = self.finish_lpserve_subprocess(process)
103
108
        self.assertFinishedCleanly(result)
104
 
        self.assertIsNot(None, error_utility.getLastOopsReport())
 
109
        capture.sync()
 
110
        self.assertEqual(1, len(capture.oopses))
 
111
        self.assertEqual(
 
112
            '[Errno 111] Connection refused', capture.oopses[0]['value'],
 
113
            capture.oopses)
105
114
 
106
115
 
107
116
def test_suite():