summaryrefslogtreecommitdiff
path: root/test-definitions-ci.py
blob: f255b1d08169aaba6178c8591d6c505dfa97ad3a (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
#!/usr/bin/python
# Usage ./lava-projectci.py <pep-ignore-options>
import sys
import os
import subprocess
import traceback
import yaml

jenkins_env = ['WORKSPACE', 'BUILD_URL', 'GERRIT_PROJECT', 'GERRIT_REFSPEC', 'GERRIT_PATCHSET_REVISION', 'GERRIT_CHANGE_OWNER_NAME']
git_server = 'http://git.linaro.org/git'
gerrit_server = 'review.linaro.org'
result_message_list = []
debug = True

def dummy_env():
    os.environ['WORKSPACE'] = '/home/milosz/linaro/testcases/test-definitions-ci/tmp'
    os.environ['BUILD_URL'] = 'https://ci.linaro.org/jenkins/job/lava-project-pep8-compliance/686/'
    os.environ['GERRIT_PROJECT'] = 'people/milosz.wasilewski/test-definitions'
    os.environ['GERRIT_REFSPEC'] = 'refs/changes/94/4194/2'
    os.environ['GERRIT_PATCHSET_REVISION'] = '742dfae05943f11c260702104e79206334be77dc'
    os.environ['GERRIT_CHANGE_OWNER_NAME'] = 'Milosz Wasilewski'

def check_enviroment():
    is_env_set = True
    for env_variable in jenkins_env:
        if env_variable in os.environ:
            print '%s is defined as %s' % (env_variable, os.environ[env_variable])
        else:
            print '%s is not defined' % env_variable
            is_env_set = False
    return is_env_set


def notify_committer():
    message_list= []
    message_list.append('* Hello %s' % os.environ['GERRIT_CHANGE_OWNER_NAME'])
    message_list.append('* Your patch set %s has triggered automated testing.' % os.environ['GERRIT_PATCHSET_REVISION'])
    message_list.append('* Please do not merge this commit until after I have reviewed the results with you.')
    message_list.append('* %s' % os.environ['BUILD_URL'])
    message = '\n\n'.join(message_list)
    if debug:
        print message

def publish_result():
    result_message = '\n\n'.join(result_message_list)
    if debug:
        print result_message
    f = open('build-error.txt', 'w')
    f.write("\n\n")
    #f.write(result_message)
    #f.write("* TESTBOT: [RESULTS]: Automated test results for patch set: 7f8c46a9eb1029345e0a3c1dd1bbad6cca8eb5c5\n\n")
    #f.write("* YAMLVALID: [PASSED]: ./ubuntu/pwrmgmt.yaml\n\n")
    #f.write("* YAMLVALID: [PASSED]: ./ubuntu/exec-latency.yaml\n\n")
    #f.write("* YAMLVALID: [FAILED]: ./ubuntu/kvm.yaml\n\n")
    #f.write("\n\n")
    #f.write(" ScannerError: while scanning a simple key\n\n")
    #f.write(" in '<string>', line 4, column 5:\n\n")
    f.write("description:'Test KVM'\n\n")
    #f.write("       ^\n\n")
    #f.write(" could not found expected ':'\n\n")
    #f.write("  in '<string>', line 5, column 5:\n\n")
    f.write("\n\n")
    f.close()
    sys.stderr.write(result_message)
    sys.stderr.write("\n")

def pep8_check(ignore_options):
    cmd = 'pep8 --ignore %s .' % ignore_options
    try:
        output = subprocess.check_output(cmd, shell=True)
        if debug:
            print output
        message = '* PEP8 CHECK: [PASSED]: %s' % cmd
        result_message_list.append(message)
    except subprocess.CalledProcessError as e:
        message_list = []
        message_list.append('* PEP8 CHECK: [FAILED]: %s' % cmd)
        message_list.append('* PEP8 CHECK: [OUTPUT]:')
        for line in e.output.splitlines():
            message_list.append('* ' + line)
        message = '\n\n'.join(message_list)
        result_message_list.append(message)
        cmd_verbose = 'pep8 --ignore %s --show-source --show-pep8 .' % ignore_options
        subprocess.call(cmd_verbose, shell=True)
        publish_result()
        exit(1)

def validate_yaml(filename):
    with open(filename, "r") as f:
        try:
            y = yaml.load(f.read())
            message = "* YAMLVALID: [PASSED]: " + filename
            result_message_list.append(message)
        except:
            message = "* YAMLVALID: [FAILED]: " + filename
            result_message_list.append(message)
            result_message_list.append("\n\n")
            exc_type, exc_value, exc_traceback = sys.exc_info()
            for line in traceback.format_exception_only(exc_type, exc_value):
                result_message_list.append(' ' + line.replace("\"", "'"))
            publish_result()
            exit(1)

def validate_shell(filename):
    cmd = 'checkbashisms %s 2>&1' % filename
    try:
        output = subprocess.check_output(cmd, shell=True)
        if debug:
            print output
        message = '* CHECKBASHISMS: [PASSED]: %s' % filename
        result_message_list.append(message)
    except subprocess.CalledProcessError as e:
        result_message_list.append('* CHECKBASHISMS: [WARNING]: %s' % filename)
        result_message_list.append('* CHECKBASHISMS: [OUTPUT]:')
        for line in e.output.splitlines():
            result_message_list.append(' ' + line.replace("\"", "'").replace("{","\\{").replace("}","\\}"))
        publish_result()
        exit(1)

def run_unit_tests():
    for root, dirs, files in os.walk('.'):
        if not root.startswith("./.git"):
            for name in files:
                if name.endswith("yaml"):
                    validate_yaml(root + "/" + name)
                # disable checkbashisms for now
                #if name.endswith("sh"):
                #    validate_shell(root + "/" + name)

def init():
    result_message_list.append('* TESTBOT: [RESULTS]: Automated test results for patch set: %s' % os.environ['GERRIT_PATCHSET_REVISION'])

def main(ignore_options):
    print "TESTBOT: STARTING"
    # Uncomment the following to run locally
    #debug = True
    #dummy_env()
    if check_enviroment():
        print 'All required environment variables have been set...continuing'
    else:
        print 'All required environment variables have not been set...exiting'
        exit(1)
    notify_committer()
    init()
    #checkout_and_rebase()
    # disable pep8 for now
    #pep8_check(ignore_options)
    run_unit_tests()
    publish_result()
    exit(0)

if __name__ == '__main__':
    main(sys.argv[1])