~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/tests/blackbox/test_selftest.py

  • Committer: Canonical.com Patch Queue Manager
  • Date: 2010-03-02 08:49:07 UTC
  • mfrom: (5067.1.1 integration)
  • Revision ID: pqm@pqm.ubuntu.com-20100302084907-z4r0yoa4ldspjz82
(vila) Resolve --take-this or --take-other correctly rename kept file

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Copyright (C) 2005, 2007 Canonical Ltd
 
1
# Copyright (C) 2006-2010 Canonical Ltd
2
2
#
3
3
# This program is free software; you can redistribute it and/or modify
4
4
# it under the terms of the GNU General Public License as published by
16
16
 
17
17
"""UI tests for the test framework."""
18
18
 
19
 
import bzrlib.transport
20
19
from bzrlib import (
21
20
    benchmarks,
22
21
    tests,
23
22
    )
24
 
from bzrlib.errors import ParamikoNotPresent
25
23
from bzrlib.tests import (
26
 
                          SubUnitFeature,
27
 
                          TestCase,
28
 
                          TestCaseInTempDir,
29
 
                          TestSkipped,
30
 
                          )
31
 
 
 
24
    features,
 
25
    stub_sftp,
 
26
    )
 
27
from bzrlib.transport import memory
32
28
 
33
29
class SelfTestPatch:
34
30
 
51
47
            tests.selftest = original_selftest
52
48
 
53
49
 
54
 
class TestOptionsWritingToDisk(TestCaseInTempDir, SelfTestPatch):
 
50
class TestOptionsWritingToDisk(tests.TestCaseInTempDir, SelfTestPatch):
55
51
 
56
52
    def test_benchmark_runs_benchmark_tests(self):
57
53
        """selftest --benchmark should change the suite factory."""
69
65
        self.assertEqual(0, len(lines))
70
66
 
71
67
 
72
 
class TestOptions(TestCase, SelfTestPatch):
 
68
class TestOptions(tests.TestCase, SelfTestPatch):
73
69
 
74
70
    def test_load_list(self):
75
71
        params = self.get_params_passed_to_core('selftest --load-list foo')
78
74
    def test_transport_set_to_sftp(self):
79
75
        # Test that we can pass a transport to the selftest core - sftp
80
76
        # version.
81
 
        try:
82
 
            import bzrlib.transport.sftp
83
 
        except ParamikoNotPresent:
84
 
            raise TestSkipped("Paramiko not present")
 
77
        self.requireFeature(features.paramiko)
85
78
        params = self.get_params_passed_to_core('selftest --transport=sftp')
86
 
        self.assertEqual(bzrlib.transport.sftp.SFTPAbsoluteServer,
 
79
        self.assertEqual(stub_sftp.SFTPAbsoluteServer,
87
80
            params[1]["transport"])
88
81
 
89
82
    def test_transport_set_to_memory(self):
90
83
        # Test that we can pass a transport to the selftest core - memory
91
84
        # version.
92
 
        import bzrlib.transport.memory
93
85
        params = self.get_params_passed_to_core('selftest --transport=memory')
94
 
        self.assertEqual(bzrlib.transport.memory.MemoryServer,
95
 
            params[1]["transport"])
 
86
        self.assertEqual(memory.MemoryServer, params[1]["transport"])
96
87
 
97
88
    def test_parameters_passed_to_core(self):
98
89
        params = self.get_params_passed_to_core('selftest --list-only')
116
107
        self.assertEqual(['foo', 'bar'], params[1]['starting_with'])
117
108
 
118
109
    def test_subunit(self):
119
 
        self.requireFeature(SubUnitFeature)
 
110
        self.requireFeature(features.subunit)
120
111
        params = self.get_params_passed_to_core('selftest --subunit')
121
112
        self.assertEqual(tests.SubUnitBzrRunner, params[1]['runner_class'])
122
113
 
172
163
            outputs_nothing(['selftest', '--list-only', '--exclude', 'selftest'])
173
164
        finally:
174
165
            tests.selftest = original_selftest
 
166
 
 
167
    def test_lsprof_tests(self):
 
168
        params = self.get_params_passed_to_core('selftest --lsprof-tests')
 
169
        self.assertEqual(True, params[1]["lsprof_tests"])