aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/regressions/test_shell_command_properties.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/regressions/test_shell_command_properties.py')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/regressions/test_shell_command_properties.py116
1 files changed, 0 insertions, 116 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/regressions/test_shell_command_properties.py b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/regressions/test_shell_command_properties.py
deleted file mode 100644
index 8c575a34..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/regressions/test_shell_command_properties.py
+++ /dev/null
@@ -1,116 +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 buildbot.steps.shell import ShellCommand, SetPropertyFromCommand
-from buildbot.process.properties import WithProperties, Properties
-from buildbot.process.factory import BuildFactory
-from buildbot.sourcestamp import SourceStamp
-from buildbot import config
-
-class FakeSlaveBuilder:
- slave = None
-
-
-class FakeBuildStatus:
- def __init__(self):
- self.names = []
-
- def addStepWithName(self, name):
- self.names.append(name)
- return FakeStepStatus()
-
- def getProperties(self):
- return Properties()
-
- def setSourceStamps(self, ss_list):
- self.ss_list = ss_list
-
- def setReason(self, reason):
- self.reason = reason
-
- def setBlamelist(self, bl):
- self.bl = bl
-
- def setProgress(self, p):
- self.progress = p
-
-
-class FakeStepStatus:
- txt = None
- def setText(self, txt):
- self.txt = txt
-
- def setProgress(self, sp):
- pass
-
-
-class FakeBuildRequest:
- def __init__(self, reason, sources, buildername):
- self.reason = reason
- self.sources = sources
- self.buildername = buildername
- self.changes = []
- self.properties = Properties()
-
- def mergeSourceStampsWith(self, others):
- return [source for source in self.sources.itervalues()]
-
- def mergeReasons(self, others):
- return self.reason
-
-
-class TestShellCommandProperties(unittest.TestCase):
- def testCommand(self):
- f = BuildFactory()
- f.addStep(SetPropertyFromCommand(command=["echo", "value"], property="propname"))
- f.addStep(ShellCommand(command=["echo", WithProperties("%(propname)s")]))
-
- ss = SourceStamp()
-
- req = FakeBuildRequest("Testing", {ss.repository:ss}, None)
-
- b = f.newBuild([req])
- b.build_status = FakeBuildStatus()
- b.slavebuilder = FakeSlaveBuilder()
-
- # This shouldn't raise an exception
- b.setupBuild(None)
-
-
-class TestSetProperty(unittest.TestCase):
- def testGoodStep(self):
- f = BuildFactory()
- f.addStep(SetPropertyFromCommand(command=["echo", "value"], property="propname"))
-
- ss = SourceStamp()
-
- req = FakeBuildRequest("Testing", {ss.repository:ss}, None)
-
- b = f.newBuild([req])
- b.build_status = FakeBuildStatus()
- b.slavebuilder = FakeSlaveBuilder()
-
- # This shouldn't raise an exception
- b.setupBuild(None)
-
- def testErrorBothSet(self):
- self.assertRaises(config.ConfigErrors,
- SetPropertyFromCommand, command=["echo", "value"], property="propname", extract_fn=lambda x:{"propname": "hello"})
-
- def testErrorNoneSet(self):
- self.assertRaises(config.ConfigErrors,
- SetPropertyFromCommand, command=["echo", "value"])