Skip to content

Commit

Permalink
add a steps.hidden column, defaulting to 0
Browse files Browse the repository at this point in the history
  • Loading branch information
djmitche committed Dec 3, 2014
1 parent 367acfd commit b24f0e6
Show file tree
Hide file tree
Showing 3 changed files with 93 additions and 0 deletions.
24 changes: 24 additions & 0 deletions master/buildbot/db/migrate/versions/044_add_step_hidden.py
@@ -0,0 +1,24 @@
# 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


def upgrade(migrate_engine):
metadata = sa.MetaData()
metadata.bind = migrate_engine
steps_table = sa.Table('steps', metadata, autoload=True)
hidden = sa.Column('hidden', sa.SmallInteger, nullable=False, server_default='0')
hidden.create(steps_table)
1 change: 1 addition & 0 deletions master/buildbot/db/model.py
Expand Up @@ -144,6 +144,7 @@ class Model(base.DBConnectorComponent):
sa.Column('state_string', sa.Text, nullable=False, server_default=''),
sa.Column('results', sa.Integer),
sa.Column('urls_json', sa.Text, nullable=False),
sa.Column('hidden', sa.SmallInteger, nullable=False, server_default='0'),
)

# logs
Expand Down
@@ -0,0 +1,68 @@
# 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

from buildbot.test.util import migration
from twisted.trial import unittest


class Migration(migration.MigrateTestMixin, unittest.TestCase):

def setUp(self):
return self.setUpMigrateTest()

def tearDown(self):
return self.tearDownMigrateTest()

def create_tables_thd(self, conn):
metadata = sa.MetaData()
metadata.bind = conn

steps = sa.Table('steps', metadata,
sa.Column('id', sa.Integer, primary_key=True),
sa.Column('number', sa.Integer, nullable=False),
sa.Column('name', sa.String(50), nullable=False),
sa.Column('buildid', sa.Integer),
sa.Column('started_at', sa.Integer),
sa.Column('complete_at', sa.Integer),
sa.Column('state_string', sa.Text, nullable=False, server_default=''),
sa.Column('results', sa.Integer),
sa.Column('urls_json', sa.Text, nullable=False))
steps.create()

conn.execute(steps.insert(), [
dict(number=3, name='echo', urls_json='[]')])

def test_update(self):
def setup_thd(conn):
self.create_tables_thd(conn)

def verify_thd(conn):
metadata = sa.MetaData()
metadata.bind = conn

steps = sa.Table('steps', metadata, autoload=True)
self.assertIsInstance(steps.c.hidden.type, sa.SmallInteger)

q = sa.select([steps.c.name, steps.c.hidden])
num_rows = 0
for row in conn.execute(q):
# verify that the default value was set correctly
self.assertEqual(row.hidden, 0)
num_rows += 1
self.assertEqual(num_rows, 1)

return self.do_test_migration(43, 44, setup_thd, verify_thd)

0 comments on commit b24f0e6

Please sign in to comment.