summaryrefslogtreecommitdiffstats
path: root/src/ceph/qa/tasks/aver.py
blob: 79ee18c5ca9b5c720dba6356af58befa95e1330d (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
"""
Aver wrapper task
"""
import contextlib
import logging
from subprocess import check_call, Popen, PIPE

log = logging.getLogger(__name__)


@contextlib.contextmanager
def task(ctx, config):
    """
    Execute an aver assertion

    Parameters:

        input: file containing data referred to by the assertions. File name is
               relative to the job's archive path
        validations: list of validations in the Aver language

    Example:
    - aver:
        input: bench_output.csv
        validations:
        - expect performance(alg='ceph') > performance(alg='raw')
        - for size > 3 expect avg_throughput > 2000
    """
    log.info('Beginning aver...')
    assert isinstance(config, dict), 'expecting dictionary for configuration'

    if 'input' not in config:
        raise Exception("Expecting 'input' option")
    if len(config.get('validations', [])) < 1:
        raise Exception("Expecting at least one entry in 'validations'")

    url = ('https://github.com/ivotron/aver/releases/download/'
           'v0.3.0/aver-linux-amd64.tar.bz2')

    aver_path = ctx.archive + '/aver'

    # download binary
    check_call(['wget', '-O', aver_path + '.tbz', url])
    check_call(['tar', 'xfj', aver_path + '.tbz', '-C', ctx.archive])

    # print version
    process = Popen([aver_path, '-v'], stdout=PIPE)
    log.info(process.communicate()[0])

    # validate
    for validation in config['validations']:
        cmd = (aver_path + ' -s -i ' + (ctx.archive + '/' + config['input']) +
               ' "' + validation + '"')
        log.info("executing: " + cmd)
        process = Popen(cmd, stdout=PIPE, stderr=PIPE, shell=True)
        (stdout, stderr) = process.communicate()
        if stderr:
            log.info('aver stderr: ' + stderr)
        log.info('aver result: ' + stdout)
        if stdout.strip(' \t\n\r') != 'true':
            raise Exception('Failed validation: ' + validation)

    try:
        yield
    finally:
        log.info('Removing aver binary...')
        check_call(['rm', aver_path, aver_path + '.tbz'])