aboutsummaryrefslogtreecommitdiffstats
path: root/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_db_base.py
diff options
context:
space:
mode:
Diffstat (limited to 'lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_db_base.py')
-rw-r--r--lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_db_base.py106
1 files changed, 0 insertions, 106 deletions
diff --git a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_db_base.py b/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_db_base.py
deleted file mode 100644
index 24c8492c..00000000
--- a/lib/python2.7/site-packages/buildbot-0.8.8-py2.7.egg/buildbot/test/unit/test_db_base.py
+++ /dev/null
@@ -1,106 +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 sqlalchemy as sa
-import mock
-from buildbot.db import base
-from twisted.trial import unittest
-from twisted.internet import defer
-
-class TestBase(unittest.TestCase):
-
- def setUp(self):
- meta = sa.MetaData()
- self.tbl = sa.Table('tbl', meta,
- sa.Column('str32', sa.String(length=32)),
- sa.Column('txt', sa.Text))
- self.db = mock.Mock()
- self.db.pool.engine.dialect.name = 'mysql'
- self.comp = base.DBConnectorComponent(self.db)
-
- def test_check_length_ok(self):
- self.comp.check_length(self.tbl.c.str32, "short string")
-
- def test_check_length_long(self):
- self.assertRaises(RuntimeError, lambda :
- self.comp.check_length(self.tbl.c.str32, "long string" * 5))
-
- def test_check_length_text(self):
- self.assertRaises(AssertionError, lambda :
- self.comp.check_length(self.tbl.c.txt, "long string" * 5))
-
- def test_check_length_long_not_mysql(self):
- self.db.pool.engine.dialect.name = 'sqlite'
- self.comp.check_length(self.tbl.c.str32, "long string" * 5)
- # run that again since the method gets stubbed out
- self.comp.check_length(self.tbl.c.str32, "long string" * 5)
-
-class TestCachedDecorator(unittest.TestCase):
-
- def setUp(self):
- # set this to True to check that cache.get isn't called (for
- # no_cache=1)
- self.cache_get_raises_exception = False
-
- class TestConnectorComponent(base.DBConnectorComponent):
- invocations = None
- @base.cached("mycache")
- def getThing(self, key):
- if self.invocations is None:
- self.invocations = []
- self.invocations.append(key)
- return defer.succeed(key * 2)
-
- def get_cache(self, cache_name, miss_fn):
- self.assertEqual(cache_name, "mycache")
- cache = mock.Mock(name="mycache")
- if self.cache_get_raises_exception:
- def ex(key):
- raise RuntimeError("cache.get called unexpectedly")
- cache.get = ex
- else:
- cache.get = miss_fn
- return cache
-
- # tests
-
- @defer.inlineCallbacks
- def test_cached(self):
- # attach it to the connector
- connector = mock.Mock(name="connector")
- connector.master.caches.get_cache = self.get_cache
-
- # build an instance
- comp = self.TestConnectorComponent(connector)
-
- # test it twice (to test an implementation detail)
- res1 = yield comp.getThing("foo")
-
- res2 = yield comp.getThing("bar")
-
- self.assertEqual((res1, res2, comp.invocations),
- ('foofoo', 'barbar', ['foo', 'bar']))
-
- @defer.inlineCallbacks
- def test_cached_no_cache(self):
- # attach it to the connector
- connector = mock.Mock(name="connector")
- connector.master.caches.get_cache = self.get_cache
- self.cache_get_raises_exception = True
-
- # build an instance
- comp = self.TestConnectorComponent(connector)
-
- yield comp.getThing("foo", no_cache=1)