~drizzle-developers/drizzle/drizzle-7.1-packaging

« back to all changes in this revision

Viewing changes to tests/kewpie/drizzle_tests/randgen_basic/databaseIntegrityAfterRecovery_test.py

  • Committer: Henrik Ingo
  • Date: 2012-03-10 20:39:59 UTC
  • mfrom: (2483.20.13 workspace)
  • Revision ID: henrik.ingo@avoinelama.fi-20120310203959-60hq9fe2jkrv9ili
Merge latest trunk

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/env python
 
2
# -*- mode: python; indent-tabs-mode: nil; -*-
 
3
# vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
4
#
 
5
# Copyright (C) 2011 Patrick Crews
 
6
#
 
7
#
 
8
# This program is free software; you can redistribute it and/or modify
 
9
# it under the terms of the GNU General Public License as published by
 
10
# the Free Software Foundation; either version 2 of the License, or
 
11
# (at your option) any later version.
 
12
#
 
13
# This program is distributed in the hope that it will be useful,
 
14
# but WITHOUT ANY WARRANTY; without even the implied warranty of
 
15
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 
16
# GNU General Public License for more details.
 
17
#
 
18
# You should have received a copy of the GNU General Public License
 
19
# along with this program; if not, write to the Free Software
 
20
# Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 
21
 
 
22
from lib.util.mysqlBaseTestCase import mysqlBaseTestCase
 
23
 
 
24
server_requirements = [[]]
 
25
servers = []
 
26
server_manager = None
 
27
test_executor = None
 
28
 
 
29
class basicTest(mysqlBaseTestCase):
 
30
 
 
31
    def test_databaseIntegrityAfterRecovery1(self):
 
32
        test_cmd = "./gentest.pl --gendata=conf/drizzle/drizzle.zz --grammar=conf/drizzle/drizzle.yy --reporters=DrizzleRecovery --queries=1000 --threads=3"
 
33
        retcode, output = self.execute_randgen(test_cmd, test_executor, servers[0])
 
34
        self.assertEqual(retcode, 0, output)
 
35
 
 
36
    def tearDown(self):
 
37
            server_manager.reset_servers(test_executor.name)
 
38