~bzr-pqm/bzr/bzr.dev

« back to all changes in this revision

Viewing changes to bzrlib/selftest/testplugins.py

Exclude more files from dumb-rsync upload

Show diffs side-by-side

added added

removed removed

Lines of Context:
17
17
 
18
18
"""Tests for plugins"""
19
19
 
20
 
# NOT RUN YET
21
 
 
22
 
 
23
 
 
24
 
 
25
 
 
26
 
 
27
 
 
28
 
from bzrlib.selftest import InTempDir
29
 
 
30
 
 
31
 
def PluginTest(InTempDir):
 
20
# XXX: There are no plugin tests at the moment because the plugin module
 
21
# affects the global state of the process.  See bzrlib/plugins.py for more
 
22
# comments.
 
23
 
 
24
import os
 
25
 
 
26
from bzrlib.selftest import TestCaseInTempDir
 
27
 
 
28
class PluginTest(TestCaseInTempDir):
32
29
    """Create an external plugin and test loading."""
33
 
    def runTest(self):
34
 
        import os
35
 
        
36
 
        orig_help = self.backtick('bzr help commands') # No plugins yet
37
 
        os.mkdir('plugin_test')
38
 
        f = open(os.path.join('plugin_test', 'myplug.py'), 'wt')
39
 
        f.write(PLUGIN_TEXT)
40
 
        f.close()
41
 
 
42
 
        newhelp = backtick('bzr help commands')
43
 
        assert newhelp.startswith('You have been overridden\n')
44
 
        # We added a line, but the rest should work
45
 
        assert newhelp[25:] == help
46
 
 
47
 
        assert backtick('bzr commit -m test') == "I'm sorry dave, you can't do that\n"
48
 
 
49
 
        shutil.rmtree('plugin_test')
50
 
 
51
 
 
52
 
 
53
 
 
54
 
PLUGIN_TEXT = \
55
 
"""import bzrlib, bzrlib.commands
 
30
#    def test_plugin_loading(self):
 
31
#        orig_help = self.run_bzr_captured('bzr help commands')[0]
 
32
#        os.mkdir('plugin_test')
 
33
#        f = open(os.path.join('plugin_test', 'myplug.py'), 'wt')
 
34
#        f.write(PLUGIN_TEXT)
 
35
#        f.close()
 
36
#        newhelp = self.run_bzr_captured('bzr help commands')[0]
 
37
#        assert newhelp.startswith('You have been overridden\n')
 
38
#        # We added a line, but the rest should work
 
39
#        assert newhelp[25:] == help
 
40
#
 
41
#        assert backtick('bzr commit -m test') == "I'm sorry dave, you can't do that\n"
 
42
#
 
43
#        shutil.rmtree('plugin_test')
 
44
#
 
45
 
 
46
#         os.environ['BZRPLUGINPATH'] = os.path.abspath('plugin_test')
 
47
#         help = backtick('bzr help commands')
 
48
#         assert help.find('myplug') != -1
 
49
#         assert help.find('Just a simple test plugin.') != -1
 
50
 
 
51
 
 
52
#         assert backtick('bzr myplug') == 'Hello from my plugin\n'
 
53
#         assert backtick('bzr mplg') == 'Hello from my plugin\n'
 
54
 
 
55
#         f = open(os.path.join('plugin_test', 'override.py'), 'wb')
 
56
#         f.write("""import bzrlib, bzrlib.commands
 
57
#     class cmd_commit(bzrlib.commands.cmd_commit):
 
58
#         '''Commit changes into a new revision.'''
 
59
#         def run(self, *args, **kwargs):
 
60
#             print "I'm sorry dave, you can't do that"
 
61
 
 
62
#     class cmd_help(bzrlib.commands.cmd_help):
 
63
#         '''Show help on a command or other topic.'''
 
64
#         def run(self, *args, **kwargs):
 
65
#             print "You have been overridden"
 
66
#             bzrlib.commands.cmd_help.run(self, *args, **kwargs)
 
67
 
 
68
#         """
 
69
 
 
70
PLUGIN_TEXT = """\
 
71
import bzrlib.commands
56
72
class cmd_myplug(bzrlib.commands.Command):
57
73
    '''Just a simple test plugin.'''
58
74
    aliases = ['mplg']
59
75
    def run(self):
60
76
        print 'Hello from my plugin'
61
 
""")
62
 
    f.close()
63
 
 
64
 
    os.environ['BZRPLUGINPATH'] = os.path.abspath('plugin_test')
65
 
    help = backtick('bzr help commands')
66
 
    assert help.find('myplug') != -1
67
 
    assert help.find('Just a simple test plugin.') != -1
68
 
 
69
 
 
70
 
    assert backtick('bzr myplug') == 'Hello from my plugin\n'
71
 
    assert backtick('bzr mplg') == 'Hello from my plugin\n'
72
 
 
73
 
    f = open(os.path.join('plugin_test', 'override.py'), 'wb')
74
 
    f.write("""import bzrlib, bzrlib.commands
75
 
class cmd_commit(bzrlib.commands.cmd_commit):
76
 
    '''Commit changes into a new revision.'''
77
 
    def run(self, *args, **kwargs):
78
 
        print "I'm sorry dave, you can't do that"
79
 
 
80
 
class cmd_help(bzrlib.commands.cmd_help):
81
 
    '''Show help on a command or other topic.'''
82
 
    def run(self, *args, **kwargs):
83
 
        print "You have been overridden"
84
 
        bzrlib.commands.cmd_help.run(self, *args, **kwargs)
85
 
 
86
 
    """
 
77
"""
 
78
 
 
79
# TODO: Write a test for plugin decoration of commands.