summaryrefslogtreecommitdiff
path: root/yarn
blob: 1cfa8015217f82772d75fa12420c7136ff56e9fb (plain)
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
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
#!/usr/bin/python
# Copyright 2013-2014  Lars Wirzenius
#
# 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 3 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, see <http://www.gnu.org/licenses/>.
#
# =*= License: GPL-3+ =*=


import cliapp
import collections
import functools
import logging
import os
import re
import shutil
import sys
import tempfile
import time
import ttystatus

import cmdtestlib
import yarnlib


def dry_scenario_runner_factory(info, ts):
    class DryScenarioRunner(yarnlib.ScenarioRunner):
        def run_scenario(self, scenario, datadir, homedir):
            info('Pretending everything went OK')
            for step in scenario.steps:
                ts['steps_completed'] += 1
            return True
    return DryScenarioRunner


class YarnRunner(cliapp.Application):

    def add_settings(self):
        self.settings.boolean(
            ['no-act', 'dry-run', 'pretend', 'n'],
            'do not actually run any tests, merely print what would be run')

        self.settings.boolean(
            ['quiet', 'q'],
            'be quiet, avoid progress reporting, only show errors')

        self.settings.boolean(
            ['verbose', 'v'],
            'make progress reporting be more verbose ("wall of text"), '
                'instead of a one-line status info; this is turned '
                'automatically if there is not terminal')

        self.settings.string_list(
            ['shell-library', 's'],
            'include a shell library for the IMPLEMENTS sections to use')

        self.settings.string_list(
            ['run', 'r'],
            'run only SCENARIO (this option can be repeated)',
            metavar='SCENARIO')

        self.settings.string(
            ['tempdir'],
            'use DIR as the temporary directory for tests; '
                'it should be empty or not exist',
            metavar='DIR')

        self.settings.string_list(
            ['env'],
            'add NAME=VALUE to the environment when tests are run',
            metavar='NAME=VALUE')

        self.settings.boolean(
            ['snapshot'],
            'make snapshots of test working directory '
                'after each scenario step; you probably '
                'want to use this with --tempdir')

        self.settings.boolean(
            ['timings'],
            'report wall clock time for each scenario and step')

        self.settings.boolean(
            ['allow-missing-steps'],
            'allow scenarios to reference steps that do not exist, '
            'by warning about them, but otherwise ignoring the scenarios')

        self.settings.integer(
            ['max-jobs', 'j'],
            'run as many as JOBS scenarios in parallel',
            default=1,
            metavar='JOBS')

    def info(self, msg):
        if self.settings['verbose']:
            logging.info(msg)
            self.output.write('%s\n' % msg)

    def warning(self, msg):
        if self.settings['verbose']:
            logging.warning(msg)
            self.output.write('WARNING: %s\n' % msg)
        elif not self.settings['quiet']:
            self.ts.notify('WARNING: %s' % msg)

    def error(self, msg):
        if self.settings['verbose']:
            logging.info(msg)
            sys.stderr.write('%s\n' % msg)
        elif not self.settings['quiet']:
            self.ts.error(msg)

    def process_args(self, args):
        # Do we have tty? If not, turn on --verbose, unless --quiet.
        if not self.settings['quiet']:
            try:
                open('/dev/tty', 'w')
            except IOError:
                self.settings['verbose'] = True

        self.ts = ttystatus.TerminalStatus(period=0.001)
        if not self.settings['quiet'] and not self.settings['verbose']:
            self.ts.format(
                '%ElapsedTime() '
                '[%Integer(steps_completed)/%Integer(total_steps)]: '
                '%String(scenario_name): '
                '%String(step_name)')

        if self.settings['tempdir']:
            self.tempdir = os.path.abspath(self.settings['tempdir'])
            if not os.path.exists(self.tempdir):
                os.mkdir(self.tempdir)
        else:
            self.tempdir = tempfile.mkdtemp()

        scenarios, implementations = self.parse_scenarios(args)
        sv = yarnlib.ScenarioValidator(scenarios)
        sv.validate_all()
        scenarios = self.connect_implementations(scenarios, implementations)
        shell_prelude = self.load_shell_libraries()

        self.info('Found %d scenarios' % len(scenarios))

        all_steps = []
        for scenario in scenarios:
            all_steps.extend(scenario.steps)
        self.ts['total_steps'] = len(all_steps)
        self.ts['steps_completed'] = 0

        self.scenarios_run = 0
        self.skipped_for_assuming = 0
        self.steps_run = 0
        self.timings = []

        if self.settings['no-act']:
            runner_class = dry_scenario_runner_factory(self.info, self.ts)
        elif self.settings['max-jobs'] > 1:
            runner_class = functools.partial(yarnlib.ScenarioMultiRunner,
                                             max_jobs=self.settings['max-jobs'])
        else:
            runner_class = yarnlib.ScenarioRunner
        scenario_runner = runner_class(shell_prelude, os.getcwd(),
                                       self.parse_env(),
                                       pre_step_cb=self.pre_step,
                                       post_step_cb=self.post_step,
                                       pre_scenario_cb=self.pre_scenario,
                                       post_scenario_cb=self.post_scenario,
                                       testdir=self.tempdir)

        start_time = time.time()
        failed_scenarios = (
            scenario_runner.run_scenarios(self.select_scenarios(scenarios)))
        duration = time.time() - start_time

        if not self.settings['snapshot']:
            shutil.rmtree(self.tempdir, ignore_errors=True)

        if not self.settings['quiet']:
            self.ts.clear()
            self.ts.finish()

        if failed_scenarios:
            raise cliapp.AppException(
                'Test suite FAILED in %s scenarios' % len(failed_scenarios))

        if not self.settings['quiet']:
            print (
                'Scenario test suite PASS, with %d scenarios '
                '(%d total steps), '
                'in %.1f seconds' %
                (self.scenarios_run, self.steps_run, duration))
            if self.skipped_for_assuming:
                print ('Scenarios SKIPPED due to ASSUMING step failing: %d'
                       % self.skipped_for_assuming)

        if self.settings['timings']:
            self.report_timings()

    def parse_scenarios(self, filenames):
        mdparser = yarnlib.MarkdownParser()
        for filename in filenames:
            self.info('Parsing scenario file %s' % filename)
            blocks = mdparser.parse_file(filename)
            if not blocks:
                self.warning('No scenario code blocks in %s' % filename)

        block_parser = yarnlib.BlockParser()
        block_parser.parse_blocks(mdparser.blocks)

        return block_parser.scenarios, block_parser.implementations

    def connect_implementations(self, scenarios, implementations):
        if self.settings['allow-missing-steps']:
            def warn_missing(scenario, step):
                self.warning(
                    'Scenario %s has missing step %s %s' %
                    (scenario.name, step.what, step.text))
                return True
            step_connector = yarnlib.ScenarioStepConnector(
                implementations, missing_step_cb=warn_missing)
        else:
            step_connector = yarnlib.ScenarioStepConnector(implementations)

        return step_connector.connect_implementations(scenarios)

    def load_shell_libraries(self):
        if not self.settings['shell-library']:
            self.info('No shell libraries defined')
            return ''

        return yarnlib.load_shell_libraries(
            self.settings['shell-library'],
            pre_read_cb=lambda fn: self.info('Loading shell library %s' % fn))

    def select_scenarios(self, scenarios):

        def normalise(s):
            return ' '.join(s.lower().split())

        def matches(a, b):
            return normalise(a) == normalise(b)

        if self.settings['run']:
            result = []
            for name in self.settings['run']:
                for s in scenarios:
                    if matches(s.name, name) and s not in result:
                        result.append(s)
                        break
            return result

        return scenarios

    def parse_env(self):
        for option_arg in self.settings['env']:
            if '=' not in option_arg:
                raise cliapp.AppException(
                    '--env argument must contain "=" '
                    'to separate environment variable name and value')
            key, value = option_arg.split('=', 1)
            yield key, value

    def pre_scenario(self, scenario, datadir, homedir):
        self.start_scenario_timing(scenario.name)
        started = time.time()

        self.info('Running scenario %s' % scenario.name)
        self.info('DATADIR is %s' % datadir)
        self.info('HOME for tests is %s' % homedir)
        return (started,)

    def post_scenario(self, scenario, datadir, homedir, pre_scenario_userdata):
        stopped = time.time()
        started, = pre_scenario_userdata

        self.scenarios_run += 1
        self.remember_scenario_timing(stopped - started)

        if not self.settings['snapshot']:
            shutil.rmtree(datadir, ignore_errors=True)

    def pre_step(self, scenario, step, **ignored):
        started = time.time()

        self.info('Running step "%s %s"' % (step.what, step.text))
        self.ts['scenario_name'] = scenario.name
        self.ts['step_name'] = '%s %s' % (step.what, step.text)

        return (started,)

    def post_step(self, scenario, step, step_number, step_env,
                  exit, stdout, stderr, pre_step_userdata):
        stopped = time.time()
        (started,) = pre_step_userdata

        self.steps_run += 1
        self.ts['steps_completed'] += 1

        logging.debug('Exit code: %d' % exit)
        if stdout:
            logging.debug('Standard output:\n%s' % self.indent(stdout))
        else:
            logging.debug('Standard output: empty')
        if stderr:
            logging.debug('Standard error:\n%s' % self.indent(stderr))
        else:
            logging.debug('Standard error: empty')
        if exit != 0:
            if step.what == 'ASSUMING':
                self.ts.notify(
                    'Skipping "%s" because "%s %s" failed' %
                    (scenario.name, step.what, step.text))
                self.skipped_for_assuming += 1
                skipped = len(scenario.steps) - scenario.steps.index(step) - 1
                self.ts['total_steps'] -= skipped
            else:
                self.error(
                    'ERROR: In scenario "%s"\nstep "%s %s" failed,\n'
                    'with exit code %d:\n'
                    'Standard output from shell command:\n%s'
                    'Standard error from shell command:\n%s' %
                    (str(scenario.name), str(step.what), str(step.text), exit,
                     self.indent(stdout), self.indent(stderr)))
        self.remember_step_timing(
            '%s %s' % (step.what, step.text), stopped - started)
        if self.settings['snapshot']:
            self.snapshot_datadir(self.tempdir, step_env['DATADIR'],
                                  scenario, step_number, step)

    def snapshot_dir(self, tempdir, scenario, step, step_number):
        sd = yarnlib.ScenarioRunner.scenario_dir(tempdir, scenario)
        base = '%03d-%s-%s' % (step_number, step.what,
                               yarnlib.ScenarioRunner.nice(step.text))
        return os.path.join(sd, base)

    def snapshot_datadir(self, tempdir, datadir, scenario, step_number, step):
        snapshot = self.snapshot_dir(tempdir, scenario, step, step_number)
        exit, out, err = cliapp.runcmd_unchecked(
            ['cp', '-ax', datadir, snapshot])
        if exit != 0:
            logging.warning('Snapshot copy failed:\n%s\n%s' % (out, err))

    def indent(self, s):
        return ''.join('    %s\n' % line for line in s.splitlines())

    def start_scenario_timing(self, scenario_name):
        self.timings.append((scenario_name, None, []))

    def remember_scenario_timing(self, duration):
        scenario_name, _, step_tuples = self.timings[-1]
        self.timings[-1] = (scenario_name, duration, step_tuples)

    def remember_step_timing(self, step_name, step_duration):
        scenario_name, scenario_duration, step_tuples = self.timings[-1]
        step_tuples = step_tuples + [(step_name, step_duration)]
        self.timings[-1] = (scenario_name, scenario_duration, step_tuples)

    def report_timings(self):
        for scenario_name, scenario_duration, step_tuples in self.timings:
            print '%5.1f %s' % (scenario_duration, scenario_name)
            for step_name, step_duration in step_tuples:
                print '  %5.1f %s' % (step_duration, step_name)


YarnRunner(version=cmdtestlib.__version__).run()