aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/util/changesource.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/util/changesource.py')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/util/changesource.py75
1 files changed, 0 insertions, 75 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/util/changesource.py b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/util/changesource.py
deleted file mode 100644
index 172f1584..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/util/changesource.py
+++ /dev/null
@@ -1,75 +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
-
-import mock
-from twisted.internet import defer
-from twisted.trial import unittest
-from buildbot.test.fake.fakemaster import make_master
-
-class ChangeSourceMixin(object):
- """
- This class is used for testing change sources, and handles a few things:
-
- - starting and stopping a ChangeSource service
- - a fake C{self.master.addChange}, which adds its args
- to the list C{self.changes_added}
- """
-
- changesource = None
- started = False
-
- def setUpChangeSource(self):
- "Set up the mixin - returns a deferred."
- self.changes_added = []
- def addChange(**kwargs):
- # check for 8-bit strings
- for k,v in kwargs.items():
- if type(v) == type(""):
- try:
- v.decode('ascii')
- except UnicodeDecodeError:
- raise unittest.FailTest(
- "non-ascii string for key '%s': %r" % (k,v))
- self.changes_added.append(kwargs)
- return defer.succeed(mock.Mock())
- self.master = make_master(testcase=self, wantDb=True)
- self.master.addChange = addChange
- return defer.succeed(None)
-
- def tearDownChangeSource(self):
- "Tear down the mixin - returns a deferred."
- if not self.started:
- return defer.succeed(None)
- if self.changesource.running:
- return defer.maybeDeferred(self.changesource.stopService)
- return defer.succeed(None)
-
- def attachChangeSource(self, cs):
- "Set up a change source for testing; sets its .master attribute"
- self.changesource = cs
- self.changesource.master = self.master
-
- def startChangeSource(self):
- "start the change source as a service"
- self.started = True
- self.changesource.startService()
-
- def stopChangeSource(self):
- "stop the change source again; returns a deferred"
- d = self.changesource.stopService()
- def mark_stopped(_):
- self.started = False
- d.addCallback(mark_stopped)
- return d