Skip to content

Commit

Permalink
Merge branch 'bug2278' into buildbot-0.8.6
Browse files Browse the repository at this point in the history
Conflicts:
	master/buildbot/test/unit/test_buildslave.py
  • Loading branch information
tomprince committed Apr 23, 2012
2 parents 689fc79 + e377a3f commit 34fd47d
Show file tree
Hide file tree
Showing 5 changed files with 73 additions and 6 deletions.
6 changes: 6 additions & 0 deletions master/buildbot/buildslave.py
Expand Up @@ -176,6 +176,12 @@ def _lockReleased(self):
return # oh well..
self.botmaster.maybeStartBuildsForSlave(self.slavename)

def setServiceParent(self, parent):
# botmaster needs to set before setServiceParent which calls startService
self.botmaster = parent
self.master = parent.master
service.MultiService.setServiceParent(self, parent)

def startService(self):
self.updateLocks()
self.startMissingTimer()
Expand Down
3 changes: 0 additions & 3 deletions master/buildbot/process/botmaster.py
Expand Up @@ -224,9 +224,6 @@ def reconfigServiceSlaves(self, new_config):
for n in added_names:
slave = new_by_name[n]
slave.setServiceParent(self)

slave.botmaster = self
slave.master = self.master
self.slaves[n] = slave

metrics.MetricCountEvent.log("num_slaves",
Expand Down
32 changes: 32 additions & 0 deletions master/buildbot/test/fake/botmaster.py
@@ -0,0 +1,32 @@
# 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.application import service

class FakeBotMaster(service.MultiService):
def __init__(self, master):
service.MultiService.__init__(self)
self.setName("fake-botmaster")
self.master = master
self.locks = {}

def getLockByID(self, lockid):
if not lockid in self.locks:
self.locks[lockid] = lockid.lockClass(lockid)
# if the master.cfg file has changed maxCount= on the lock, the next
# time a build is started, they'll get a new RealLock instance. Note
# that this requires that MasterLock and SlaveLock (marker) instances
# be hashable and that they should compare properly.
return self.locks[lockid]
37 changes: 35 additions & 2 deletions master/buildbot/test/unit/test_buildslave.py
Expand Up @@ -16,10 +16,11 @@
import mock
from twisted.trial import unittest
from twisted.internet import defer
from buildbot import buildslave, config
from buildbot import buildslave, config, locks
from buildbot.test.fake import fakemaster, pbmanager
from buildbot.test.fake.botmaster import FakeBotMaster

class AbstractBuildSlave(unittest.TestCase):
class TestAbstractBuildSlave(unittest.TestCase):

class ConcreteBuildSlave(buildslave.AbstractBuildSlave):
pass
Expand Down Expand Up @@ -216,3 +217,35 @@ def test_missing_timer(self):
bs.stopMissingTimer()
self.assertEqual(bs.missing_timer, None)

def test_setServiceParent_started(self):
master = self.master = fakemaster.make_master()
botmaster = FakeBotMaster(master)
botmaster.startService()
bs = self.ConcreteBuildSlave('bot', 'pass')
bs.setServiceParent(botmaster)
self.assertEqual(bs.botmaster, botmaster)
self.assertEqual(bs.master, master)

def test_setServiceParent_masterLocks(self):
"""
http://trac.buildbot.net/ticket/2278
"""
master = self.master = fakemaster.make_master()
botmaster = FakeBotMaster(master)
botmaster.startService()
lock = locks.MasterLock('masterlock')
bs = self.ConcreteBuildSlave('bot', 'pass', locks = [lock])
bs.setServiceParent(botmaster)

def test_setServiceParent_slaveLocks(self):
"""
http://trac.buildbot.net/ticket/2278
"""
master = self.master = fakemaster.make_master()
botmaster = FakeBotMaster(master)
botmaster.startService()
lock = locks.SlaveLock('lock')
bs = self.ConcreteBuildSlave('bot', 'pass', locks = [lock])
bs.setServiceParent(botmaster)

test_setServiceParent_slaveLocks.todo = "SlaveLock not support for slave lock"
Expand Up @@ -168,7 +168,6 @@ def test_reconfigServiceSlaves_add_remove(self):
wfd.getResult()

self.assertIdentical(sl.parent, self.botmaster)
self.assertIdentical(sl.master, self.master)
self.assertEqual(self.botmaster.slaves, { 'sl1' : sl })

self.new_config.slaves = [ ]
Expand Down

0 comments on commit 34fd47d

Please sign in to comment.