~drizzle-trunk/drizzle/development

« back to all changes in this revision

Viewing changes to tests/lib/test_run_options.py

  • Committer: patrick crews
  • Date: 2011-01-15 21:27:41 UTC
  • mto: (2119.2.1 drizzle)
  • mto: This revision was merged to the branch mainline in revision 2121.
  • Revision ID: gleebix@gmail.com-20110115212741-htz3af0cib4fwdlv
Updated tree so that test-run.pl and test-run.py may live together in peace for a time

Show diffs side-by-side

added added

removed removed

Lines of Context:
 
1
#! /usr/bin/python
 
2
# -*- mode: c; c-basic-offset: 2; indent-tabs-mode: nil; -*-
 
3
# vim:expandtab:shiftwidth=2:tabstop=2:smarttab:
 
4
#
 
5
# Copyright (C) 2010 Patrick Crews
 
6
#
 
7
 
 
8
 
 
9
"""Processes command line options for Drizzle test-runner"""
 
10
 
 
11
import sys
 
12
import os
 
13
import exceptions
 
14
import optparse
 
15
 
 
16
# functions
 
17
def comma_list_split(option, opt, value, parser):
 
18
    """Callback for splitting input expected in list form"""
 
19
    setattr(parser.values, option.dest, value.split(','))
 
20
 
 
21
def organize_options(args, test_cases):
 
22
    """Put our arguments in a nice dictionary
 
23
       We use option.dest as dictionary key
 
24
       item = supplied input
 
25
 
 
26
    """
 
27
    variables = {}
 
28
    variables = vars(args)
 
29
    variables['test_cases']= test_cases
 
30
    return variables
 
31
 
 
32
# Create the CLI option parser
 
33
parser= optparse.OptionParser()
 
34
 
 
35
# find some default values
 
36
# assume we are in-tree testing in general and operating from root/test(?)
 
37
testdir_default = os.path.abspath(os.getcwd())
 
38
server_default = os.path.abspath(os.path.join(testdir_default,
 
39
                                       '../drizzled/drizzled'))
 
40
workdir_default = os.path.join(testdir_default,'dtr_work')
 
41
clientbindir_default = os.path.abspath(os.path.join(testdir_default,
 
42
                                       '../client'))
 
43
basedir_default = os.path.split(testdir_default)[0]
 
44
 
 
45
# system_control_group - things like verbose, debug, etc
 
46
# test-runner affecting options
 
47
system_control_group = optparse.OptionGroup(parser, 
 
48
                         "Options for the test-runner itself")
 
49
 
 
50
system_control_group.add_option(
 
51
   "--force"
 
52
 , dest="force"
 
53
 , action="store_true"
 
54
 , default=False
 
55
 , help="Set this to continue test execution beyond the first failed test"
 
56
 )
 
57
 
 
58
system_control_group.add_option(
 
59
    "--verbose"
 
60
   , dest="verbose"
 
61
   , action="store_true"
 
62
   , default = False
 
63
   , help="Produces extensive output about test-runner state.  Distinct from --debug"
 
64
   )
 
65
 
 
66
system_control_group.add_option(
 
67
    "--debug"
 
68
   , dest="debug"
 
69
   , action="store_true"
 
70
   , default = False
 
71
   , help="Provide internal-level debugging output.  Distinct from --verbose"
 
72
   )
 
73
 
 
74
system_control_group.add_option(
 
75
    "--mode"
 
76
  , dest="mode"
 
77
  , default="dtr"
 
78
  , help="Testing mode.  We only support dtr...for now >;) [%default]"
 
79
  )
 
80
 
 
81
system_control_group.add_option(
 
82
    "--record"
 
83
  , dest="record"
 
84
  , action="store_true"
 
85
  , default=False
 
86
  , help="Record a testcase result (if the testing mode supports it) [%default]"
 
87
  )
 
88
 
 
89
parser.add_option_group(system_control_group)
 
90
 
 
91
# end system_control_group
 
92
 
 
93
# test_control_group - things like suite, do-test, skip-test
 
94
# Affect which tests are run
 
95
test_control_group = optparse.OptionGroup(parser, 
 
96
                         "Options for controlling which tests are executed")
 
97
 
 
98
 
 
99
test_control_group.add_option(
 
100
    "--suite"
 
101
  , dest="suitelist"
 
102
  , type='string'
 
103
  , action="append"
 
104
  , help="The name of the suite containing tests we want. Use one --suite arg for each suite you want to use. [default=autosearch]"
 
105
  )
 
106
 
 
107
test_control_group.add_option(
 
108
    "--suitepath"
 
109
  , dest="suitepaths"
 
110
  , type='string'
 
111
  , action="append"
 
112
  , default = []
 
113
  , help="The path containing the suite(s) you wish to execute.  Use on --suitepath for each suite you want to use."
 
114
  )
 
115
test_control_group.add_option(
 
116
    "--do-test"
 
117
  , dest="dotest"
 
118
  , type='string'
 
119
  , default = None
 
120
  , help="input can either be a prefix or a regex. Will only execute tests that match the provided pattern"
 
121
  )
 
122
 
 
123
test_control_group.add_option(
 
124
    "--skip-test"
 
125
  , dest="skiptest"
 
126
  , type='string'
 
127
  , default = None
 
128
  , help = "input can either be a prefix or a regex.  Will exclude tests that match the provided pattern"
 
129
  )
 
130
 
 
131
parser.add_option_group(test_control_group)
 
132
# end test_control_group
 
133
 
 
134
# environment options
 
135
# define where to find our drizzled, client dirs, working dirs, etc
 
136
environment_control_group = optparse.OptionGroup(parser, 
 
137
                            "Options for defining the testing environment")
 
138
 
 
139
environment_control_group.add_option(
 
140
    "--basedir"
 
141
  , dest="basedir"
 
142
  , type='string'
 
143
  , default = basedir_default
 
144
  , help = "Pass this argument to signal to the test-runner that this is an in-tree test.  We automatically set a number of variables relative to the argument (client-bindir, serverdir, testdir) [%default]"
 
145
  )
 
146
 
 
147
environment_control_group.add_option(
 
148
    "--serverdir"
 
149
  , dest="serverpath"
 
150
  , type='string'
 
151
  , default = "auto-search"
 
152
  , help = "Path to the server executable.  [%default]"
 
153
  )
 
154
 
 
155
environment_control_group.add_option(
 
156
    "--client-bindir"
 
157
  , dest="clientbindir"
 
158
  , type = 'string'
 
159
  , default = "auto-search"
 
160
  , help = "Path to the directory containing client program binaries for use in testing [%default]"
 
161
  )
 
162
 
 
163
environment_control_group.add_option(
 
164
    "--testdir"
 
165
  , dest="testdir"
 
166
  , type = 'string'
 
167
  , default = testdir_default
 
168
  , help = "Path to the test dir, containing additional files for test execution. [%default]"
 
169
  )
 
170
 
 
171
environment_control_group.add_option(
 
172
    "--workdir"
 
173
  , dest="workdir"
 
174
  , type='string'
 
175
  , default = workdir_default
 
176
  , help = "Path to the directory test-run will use to store generated files and directories. [%default]"
 
177
  )
 
178
 
 
179
environment_control_group.add_option(
 
180
    "--no-shm"
 
181
  , dest="noshm"
 
182
  , action='store_true'
 
183
  , default=False
 
184
  , help = "By default, we symlink workdir to a location in shm.  Use this flag to not symlink [%default]"
 
185
  )
 
186
 
 
187
environment_control_group.add_option(
 
188
    "--libeatmydata"
 
189
  , dest="libeatmydata"
 
190
  , action='store_true'
 
191
  , default=False
 
192
  , help = "Use libeatmydata to disable fsync calls.  This greatly speeds up test execution, but data durability is nil.  Sets LD_PRELOAD to include the libeatmydata library [%default]"
 
193
  )
 
194
 
 
195
environment_control_group.add_option(
 
196
    "--start-dirty"
 
197
  , dest="startdirty"
 
198
  , action='store_true'
 
199
  , default=False
 
200
  , help = "Don't try to clean up working directories before test execution [%default]"
 
201
  )
 
202
 
 
203
environment_control_group.add_option(
 
204
    "--no-secure-file-priv"
 
205
  , dest = "nosecurefilepriv"
 
206
  , action='store_true'
 
207
  , default=False
 
208
  , help = "Turn off the use of --secure-file-priv=vardir for started servers"
 
209
  )
 
210
 
 
211
 
 
212
parser.add_option_group(environment_control_group)
 
213
# end environment control group
 
214
 
 
215
parser.add_option(
 
216
    "--engine"
 
217
   , dest="engine"
 
218
   , default = 'innodb'
 
219
   , help="Start drizzled using the specified engine [%default]"
 
220
   )    
 
221
 
 
222
 
 
223
 
 
224
# supplied will be those arguments matching an option, 
 
225
# and test_cases will be everything else
 
226
(args, test_cases)= parser.parse_args()
 
227
 
 
228
variables = {}
 
229
variables = organize_options(args, test_cases)
 
230