1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
|
#! /usr/bin/env python
# -*- mode: python; indent-tabs-mode: nil; -*-
# vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
#
# Copyright (C) 2010 Patrick Crews
#
# This program 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; either version 2 of the License, or
# (at your option) any later version.
#
# 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 St, Fifth Floor, Boston, MA 02110-1301 USA
"""test_mode.py
code for dealing with testing modes
A given mode should have a systemInitializer, testManager, and testExecutor
that define how to setup, manage, and execute test cases
"""
# imports
import sys
def handle_mode(variables, system_manager):
""" Deals with the 'mode' option and returns
the appropriate code objects for the test-runner to play with
"""
test_mode = variables['mode']
system_manager.logging.info("Using testing mode: %s" %test_mode)
# drizzle-test-run mode - the default
if test_mode == 'dtr':
# DTR mode - this is what we are coding to initially
# We are just setting the code up this way to hopefully make
# other coolness easier in the future
# get our mode-specific testManager
from drizzle_test_run.dtr_test_management import testManager
# get our mode-specific testExecutor
from drizzle_test_run.dtr_test_execution import testExecutor as testExecutor
elif test_mode == 'randgen':
# randgen mode - we run the randgen grammar against
# the specified server configs and report the randgen error code
# get manager and executor
from randgen.randgen_test_management import testManager
from randgen.randgen_test_execution import randgenTestExecutor as testExecutor
elif test_mode == 'cleanup':
# cleanup mode - we try to kill any servers whose pid's we detect
# in our workdir. Might extend to other things (file cleanup, etc)
# at some later point
system_manager.cleanup(exit=True)
else:
system_manager.logging.error("unknown mode argument: %s" %variables['mode'])
sys.exit(1)
test_manager = testManager( variables['verbose'], variables['debug']
, variables['defaultengine'], variables['dotest']
, variables['skiptest'], variables['reorder']
, variables['suitelist'], variables['suitepaths']
, system_manager, variables['test_cases']
, variables['mode'] )
return (test_manager, testExecutor)
|