aboutsummaryrefslogtreecommitdiff
path: root/lava-local-test.py
blob: 4a2b8f287872b24033f40fc6c8c5002b637e2060 (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
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
#!/usr/bin/env python
import sys
import os
import platform
import glob
import shutil
import time
import re
import yaml
import json
import csv
import subprocess
import pexpect
import argparse
from uuid import uuid4


class Agenda(object):
    """
    Analysis and convert agenda file.
    """

    def __init__(self):
        self.agenda = agenda
        with open(self.agenda, 'r') as f:
            self.agenda = yaml.safe_load(f)

    def validate(self):
        key_list = ['repository', 'definitions']
        for item in key_list:
            if item not in self.agenda:
                print('%s field is missing from agenda file' % item)
                sys.exit(1)

    def agenda_dict(self):
        return self.agenda


class TestDefinition(object):
    """
    Analysis and convert test definition.
    """

    def __init__(self):
        self.test_def = test_path + '/' + test_def
        self.test_path = test_path
        self.test_parameters = test_parameters
        # Read the YAML to create a testdef dict
        with open(self.test_def, 'r') as f:
            self.testdef = yaml.safe_load(f)
        self.parameters = self.handle_parameters()
        self.skip_install = skip_install

    def definition(self):
        with open('%s/testdef.yaml' % self.test_path, 'w') as f:
            f.write(yaml.dump(self.testdef, encoding='utf-8', allow_unicode=True))

    def metadata(self):
        with open('%s/testdef_metadata' % self.test_path, 'w') as f:
            f.write(yaml.dump(self.testdef['metadata'], encoding='utf-8', allow_unicode=True))

    def install(self):
        if 'install' not in self.testdef:
            return
        if self.skip_install:
            return

        install_options = self.testdef['install']
        with open('%s/install.sh' % self.test_path, 'w') as f:
            if self.parameters:
                for line in self.parameters:
                    f.write(line)

            f.write('set -e\n')
            f.write('cd %s\n' % self.test_path)
            f.write('###install deps/steps/git-repos defined in test definition###\n')

            if 'git-repos' in install_options:
                git_repos = self.testdef['install'].get('git-repos', [])
                if git_repos:
                    for repo in git_repos:
                        if 'url' in repo:
                            url = repo['url']
                            if 'branch' in repo and repo['branch'] == 'BRANCH':
                                f.write('git clone -b "$BRANCH" %s\n' % url)
                            else:
                                f.write('git clone %s\n' % url)

            if 'deps' in install_options:
                deps = self.testdef['install'].get('deps', [])
                if deps:
                    f.write('lava-install-packages ')
                    for dep in deps:
                        f.write('%s ' % dep)
                    f.write('\n')

            if 'steps' in install_options:
                steps = self.testdef['install'].get('steps', [])
                if steps:
                    for cmd in steps:
                        f.write('%s\n' % cmd)

    def run(self):
        with open('%s/run.sh' % self.test_path, 'a') as f:
            if self.parameters:
                for line in self.parameters:
                    f.write(line)

            f.write('set -e\n')
            f.write('export TESTRUN_ID=%s\n' % self.testdef['metadata']['name'])
            f.write('cd %s\n' % self.test_path)
            f.write('UUID=`cat uuid`\n')
            f.write('echo "<LAVA_SIGNAL_STARTRUN $TESTRUN_ID $UUID>"\n')
            steps = self.testdef['run'].get('steps', [])
            if steps:
                for cmd in steps:
                    if '--cmd' in cmd or '--shell' in cmd:
                        cmd = re.sub(r'\$(\d+)\b', r'\\$\1', cmd)
                    f.write('%s\n' % cmd)
            f.write('echo "<LAVA_SIGNAL_ENDRUN $TESTRUN_ID $UUID>"\n')

    def handle_parameters(self):
        ret_val = ['###default parameters from test definition###\n']

        if 'params' in self.testdef:
            for def_param_name, def_param_value in list(self.testdef['params'].items()):
                # ?'yaml_line'
                if def_param_name is 'yaml_line':
                    continue
                ret_val.append('%s=\'%s\'\n' % (def_param_name, def_param_value))
        elif 'parameters' in self.testdef:
            for def_param_name, def_param_value in list(self.testdef['parameters'].items()):
                if def_param_name is 'yaml_line':
                    continue
                ret_val.append('%s=\'%s\'\n' % (def_param_name, def_param_value))
        else:
            return None

        ret_val.append('######\n')

        ret_val.append('###test parameters from agenda file###\n')
        if self.test_parameters:
            for param_name, param_value in list(self.test_parameters.items()):
                if param_name is 'yaml_line':
                    continue
                ret_val.append('%s=\'%s\'\n' % (param_name, param_value))
        ret_val.append('######\n')

        return ret_val

    def return_pattern(self):
        if 'parse' in self.testdef:
            return self.testdef['parse']['pattern']
        else:
            return None


class TestSetup(object):
    def __init__(self):
        self.repo_path = repo_path
        self.test_name = test_name
        self.uuid = uuid
        self.test_uuid = test_uuid
        self.lava_path = LAVA_PATH
        self.bin_path = bin_path
        self.test_path = test_path

    def copy_test_repo(self):
        shutil.rmtree(self.test_path, ignore_errors=True)
        shutil.copytree(self.repo_path, self.test_path, symlinks=True)

    def create_dir(self):
        if not os.path.exists(self.test_path):
            os.makedirs(self.test_path)

    def create_test_runner_conf(self):
        with open('%s/lava-test-runner.conf' % self.lava_path, 'w') as f:
            f.write(self.test_path)

    def copy_bin_files(self):
        shutil.rmtree(self.bin_path, ignore_errors=True)
        shutil.copytree('lava_test_shell', self.bin_path, symlinks=True)

        # Update script files by dist.
        dist = platform.linux_distribution()[0].split(' ')[0].lower()
        if dist in ['debian', 'ubuntu', 'oe', 'centos', 'fedora']:
            for file in glob.glob('%s/distro/%s/*' % (self.bin_path, dist)):
                shutil.copy(file, self.bin_path)
        else:
            print('Unsupported distro: no paltform context and package install support')

    def create_uuid_file(self):
        with open('%s/uuid' % self.test_path, 'w') as f:
            f.write(self.uuid)


class TestRunner(object):
    def __init__(self):
        self.lava_path = LAVA_PATH
        self.test_uuid = test_uuid
        self.test_timeout = test_timeout
        self.child = pexpect.spawn('%s/bin/lava-test-runner %s' % (self.lava_path, self.lava_path))

    def check_output(self):
        if self.test_timeout:
            print('Test timeout: %s' % self.test_timeout)
            test_end = time.time() + self.test_timeout
        while self.child.isalive():
            try:
                self.child.expect('\n')
                print(self.child.before)
            except pexpect.TIMEOUT:
                if self.test_timeout and time.time() > test_end:
                    print('%s test timed out, killing test process.\n' % self.test_uuid)
                    self.child.terminate(force=True)
                    break
                else:
                    continue
            except pexpect.EOF:
                print('%s test finished.\n' % self.test_uuid)
                break


class ResultPaser(object):
    def __init__(self):
        self.lava_path = LAVA_PATH
        self.result_path = result_path
        # Fix result path with timestamp added by lava-test-runner.
        self.result_path = glob.glob('%s-[0-9]*' % self.result_path)[0]
        self.pattern = pattern
        self.metrics = []
        self.results = {}
        self.test_uuid = self.result_path.split('/')[-1]
        self.results['test'] = self.test_uuid.split('_')[0]
        self.results['id'] = self.test_uuid.split('_')[1]

    def run(self):
        self.parse_lava_test_case()
        if self.pattern:
            print('Parse pattern: %s' % self.pattern)
            self.parse_pattern()

        self.dict_to_json()
        self.dict_to_csv()
        print('\nResult files saved to: %s' % self.result_path)
        print('--- Printing results.csv ---')
        with open('%s/results.csv' % self.result_path) as f:
            print(f.read())

    def parse_lava_test_case(self):
        with open('%s/stdout.log' % self.result_path, 'r') as f:
            for line in f:
                if re.match(r'\<LAVA_SIGNAL_TESTCASE TEST_CASE_ID=.*', line):
                    line = line.strip('\n').strip('<>').split(' ')
                    data = {'test_case_id': '',
                            'result': '',
                            'measurement': '',
                            'units': ''}

                    for string in line:
                        parts = string.split('=')
                        if len(parts) == 2:
                            key, value = parts
                            key = key.lower()
                            data[key] = value

                    self.metrics.append(data.copy())

        self.results['metrics'] = self.metrics

    def parse_pattern(self):
        with open('%s/stdout.log' % self.result_path, 'r') as f:
            for line in f:
                data = {}
                m = re.search(r'%s' % self.pattern, line)
                if m:
                    data = m.groupdict()

                    for x in ['measurement', 'units']:
                        if x not in data:
                            data[x] = ''

                    self.metrics.append(data.copy())

        self.results['metrics'] = self.metrics

    def dict_to_json(self):
        with open('%s/results.json' % self.result_path, 'w') as f:
            json.dump(self.results, f, indent=4)

    def dict_to_csv(self):
        with open('%s/results.csv' % self.result_path, 'w') as f:
            fieldnames = ['test_case_id', 'result', 'measurement', 'units']
            writer = csv.DictWriter(f, fieldnames=fieldnames)

            writer.writeheader()
            for metric in self.results['metrics']:
                writer.writerow(metric)

        with open('%s/results.csv' % self.lava_path, 'a') as f:
            writer = csv.DictWriter(f, fieldnames=fieldnames)

            for metric in self.results['metrics']:
                writer.writerow(metric)

# Parse arguments.
parser = argparse.ArgumentParser()
parser.add_argument('-o', '--output', default='/result', dest='LAVA_PATH',
                    help='''
                    specify a directory to store test and result files.
                    Default: /result
                    ''')
parser.add_argument('-a', '--agenda', default=None, dest='agenda',
                    help='''
                    specify an agenda file which has tests and related
                    params listed in yaml format.
                    ''')
parser.add_argument('-r', '--repo', dest='repo',
                    default='https://git.linaro.org/qa/test-definitions.git',
                    help='''
                    specify url or local path of test definitions repo.
                    Default: https://git.linaro.org/qa/test-definitions.git
                    ''')
parser.add_argument('-d', '--test', default=None, dest='test_def',
                    help='''
                    base on test definition repo location, specify relative path
                    to the test definition to run.
                    Format example: "ubuntu/smoke-tests-basic.yaml"
                    ''')
parser.add_argument('-t', '--timeout', type=int, default=None,
                    dest='test_timeout', help='Specify test timeout')
parser.add_argument('-s', '--skip_install', dest='skip_install',
                    default=False, action='store_true',
                    help='skip install section defined in test definition.')

args = parser.parse_args()

# Obtain values from arguments.
LAVA_PATH = args.LAVA_PATH
agenda = args.agenda
repo = args.repo
test_def = args.test_def
test_timeout = args.test_timeout

# Generate test list.
if test_def:
    test_list = [{'path': test_def}]
elif agenda:
    test_agenda = Agenda()
    test_agenda.validate()
    agenda_dict = test_agenda.agenda_dict()
    repo = agenda_dict['repository']
    test_list = agenda_dict['definitions']
    for item in test_list:
        if 'path' not in item:
            print('Relative path is needed for each test')
            sys.exit(1)
else:
    print('Plese specify either agenda file or test_def argument.')
    sys.exit(1)

print('--- Test list ---')
for test in test_list:
    print(test)

# If repo points to remote url, clone the latest code.
# If repo points to a local repo and it exists, use it.
if repo.startswith(('http', 'git', 'ssh')):
    repo_name = os.path.splitext(repo.split('/')[-1])[0]
    if os.path.exists(repo_name):
        shutil.rmtree(repo_name)
    print('\nCloning %s' % repo)
    subprocess.call(['git', 'clone', repo])
    repo_path = os.path.realpath(repo_name)
else:
    if os.path.exists(repo):
        repo_path = os.path.realpath(repo)
    else:
        print('%s NOT exists, exiting...' % repo)
        sys.exit(1)

# Run tests
for test in test_list:
    test_def = test['path']
    test_def_path = os.path.join(repo_path, test_def)
    if not os.path.exists(test_def_path):
        print(' %s NOT found, exiting...' % test_def_path)
        sys.exit(1)
    else:
        print('\nAbout to run: %s' % test_def_path)

    if 'timeout' in test:
        test_timeout = test['timeout']
    skip_install = args.skip_install
    if 'skip_install' in test:
        skip_install = test['skip_install']
    test_parameters = None
    if 'parameters' in test:
        test_parameters = test['parameters']
    if 'params' in test:
        test_parameters = test['params']
    if test_parameters:
        print('Test parameters from agenda file: %s' % test_parameters)

    # Fixup related variables.
    uuid = str(uuid4())
    test_name = os.path.splitext(test_def.split('/')[-1])[0]
    print('Test name: %s' % test_name)
    test_uuid = test_name + '_' + uuid
    print('Test UUID: %s' % test_uuid)
    bin_path = os.path.join(LAVA_PATH, 'bin')
    print('Binary path: %s' % bin_path)
    test_path = os.path.join(LAVA_PATH, 'tests', test_uuid)
    print('Test path: %s' % test_path)
    result_path = os.path.join(LAVA_PATH, 'results', test_uuid)
    print('Result path: %s' % result_path)

    # Create a hierarchy of directories and generate files needed.
    setup = TestSetup()
    setup.copy_test_repo()
    setup.create_test_runner_conf()
    setup.copy_bin_files()
    setup.create_uuid_file()

    # Convert test definition to the files needed by lava-test-runner.
    test_def = TestDefinition()
    test_def.definition()
    test_def.metadata()
    test_def.install()
    test_def.run()
    pattern = test_def.return_pattern()

    # Test run.
    test_run = TestRunner()
    test_run.check_output()

    # Parse test output, save results in json and csv format.
    result_parser = ResultPaser()
    result_parser.run()