aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot_slave-0.8.8-py2.7.egg/buildslave/test/unit/test_commands_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot_slave-0.8.8-py2.7.egg/buildslave/test/unit/test_commands_base.py')
-rw-r--r--lib/python2.7/site-packages/buildbot_slave-0.8.8-py2.7.egg/buildslave/test/unit/test_commands_base.py127
1 files changed, 0 insertions, 127 deletions
diff --git a/lib/python2.7/site-packages/buildbot_slave-0.8.8-py2.7.egg/buildslave/test/unit/test_commands_base.py b/lib/python2.7/site-packages/buildbot_slave-0.8.8-py2.7.egg/buildslave/test/unit/test_commands_base.py
deleted file mode 100644
index 0385cc3a..00000000
--- a/lib/python2.7/site-packages/buildbot_slave-0.8.8-py2.7.egg/buildslave/test/unit/test_commands_base.py
+++ /dev/null
@@ -1,127 +0,0 @@
-# This file is part of Buildbot. Buildbot is free software: you can
-# redistribute it and/or modify it under the terms of the GNU General Public
-# License as published by the Free Software Foundation, version 2.
-#
-# This program is distributed in the hope that it will be useful, but WITHOUT
-# ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS
-# FOR A PARTICULAR PURPOSE. See the GNU General Public License for more
-# details.
-#
-# You should have received a copy of the GNU General Public License along with
-# this program; if not, write to the Free Software Foundation, Inc., 51
-# Franklin Street, Fifth Floor, Boston, MA 02110-1301 USA.
-#
-# Copyright Buildbot Team Members
-
-from twisted.trial import unittest
-from twisted.internet import defer
-
-from buildslave.test.util.command import CommandTestMixin
-from buildslave.commands.base import Command
-
-# set up a fake Command subclass to test the handling in Command. Think of
-# this as testing Command's subclassability.
-
-class DummyCommand(Command):
-
- def setup(self, args):
- self.setup_done = True
- self.interrupted = False
- self.started = False
-
- def start(self):
- self.started = True
- self.sendStatus(self.args)
- self.cmd_deferred = defer.Deferred()
- return self.cmd_deferred
-
- def interrupt(self):
- self.interrupted = True
- self.finishCommand()
-
- def finishCommand(self):
- d = self.cmd_deferred
- self.cmd_deferred = None
- d.callback(None)
-
- def failCommand(self):
- d = self.cmd_deferred
- self.cmd_deferred = None
- d.errback(RuntimeError("forced failure"))
-
-class TestDummyCommand(CommandTestMixin, unittest.TestCase):
-
- def setUp(self):
- self.setUpCommand()
-
- def tearDown(self):
- self.tearDownCommand()
-
- def assertState(self, setup_done, running, started, interrupted, msg=None):
- self.assertEqual(
- {
- 'setup_done' : self.cmd.setup_done,
- 'running' : self.cmd.running,
- 'started' : self.cmd.started,
- 'interrupted' : self.cmd.interrupted,
- }, {
- 'setup_done' : setup_done,
- 'running' : running,
- 'started' : started,
- 'interrupted' : interrupted,
- }, msg)
-
- def test_run(self):
- cmd = self.make_command(DummyCommand, { 'stdout' : 'yay' })
- self.assertState(True, False, False, False, "setup called by constructor")
-
- # start the command
- d = self.run_command()
- self.assertState(True, True, True, False, "started and running both set")
-
- # allow the command to finish and check the result
- cmd.finishCommand()
- def check(_):
- self.assertState(True, False, True, False, "started and not running when done")
- d.addCallback(check)
-
- def checkresult(_):
- self.assertUpdates([ { 'stdout' : 'yay' } ], "updates processed")
- d.addCallback(checkresult)
- return d
-
- def test_run_failure(self):
- cmd = self.make_command(DummyCommand, {})
- self.assertState(True, False, False, False, "setup called by constructor")
-
- # start the command
- d = self.run_command()
- self.assertState(True, True, True, False, "started and running both set")
-
- # fail the command with an exception, and check the result
- cmd.failCommand()
- def check(_):
- self.assertState(True, False, True, False, "started and not running when done")
- d.addErrback(check)
-
- def checkresult(_):
- self.assertUpdates([ {} ], "updates processed")
- d.addCallback(checkresult)
- return d
-
- def test_run_interrupt(self):
- cmd = self.make_command(DummyCommand, {})
- self.assertState(True, False, False, False, "setup called by constructor")
-
- # start the command
- d = self.run_command()
- self.assertState(True, True, True, False, "started and running both set")
-
- # interrupt the command
- cmd.doInterrupt()
- self.assertTrue(cmd.interrupted)
-
- def check(_):
- self.assertState(True, False, True, True, "finishes with interrupted set")
- d.addCallback(check)
- return d