summaryrefslogtreecommitdiffstats
path: root/testing/docker/desktop1604-test/bin/run-wizard
blob: 88c84045c5bcd84b14e82471e07fb0e7c0499c7c (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
#!/usr/bin/env python
# This Source Code Form is subject to the terms of the Mozilla Public
# License, v. 2.0. If a copy of the MPL was not distributed with this,
# file, You can obtain one at http://mozilla.org/MPL/2.0/.

from __future__ import print_function, unicode_literals

import os
import subprocess
import sys
from textwrap import wrap


def call(cmd, **kwargs):
    print(" ".join(cmd))
    return subprocess.call(cmd, **kwargs)


def resume():
    call(['run-mozharness'])


def setup():
    call(['run-mozharness', '--no-run-tests'])
    print("Mozharness has finished downloading the build and "
          "tests to {}.".format(os.path.join(os.getcwd(), 'build')))


def clone():
    repo = os.environ['GECKO_HEAD_REPOSITORY']
    rev = os.environ['GECKO_HEAD_REV']
    clone_path = os.path.expanduser(os.path.join('~', 'gecko'))

    # try is too large to clone, instead clone central and pull
    # in changes from try
    if "hg.mozilla.org/try" in repo:
        central = 'http://hg.mozilla.org/mozilla-central'
        call(['hg', 'clone', '-U', central, clone_path])
        call(['hg', 'pull', '-u', '-r', rev, repo], cwd=clone_path)
    else:
        call(['hg', 'clone', '-u', rev, repo, clone_path])
    print("Finished cloning to {} at revision {}.".format(
                clone_path, rev))


def exit():
    pass


OPTIONS = [
    ('Resume task', resume,
     "Resume the original task without modification. This can be useful for "
     "passively monitoring it from another shell."),
    ('Setup task', setup,
     "Setup the task (download the application and tests) but don't run the "
     "tests just yet. The tests can be run with a custom configuration later "
     "(experimental)."),
    ('Clone gecko', clone,
     "Perform a clone of gecko using the task's repo and update it to the "
     "task's revision."),
    ('Exit', exit, "Exit this wizard and return to the shell.")
]


def _fmt_options():
    max_line_len = 60
    max_name_len = max(len(o[0]) for o in OPTIONS)

    # TODO Pad will be off if there are more than 9 options.
    pad = ' ' * (max_name_len+6)

    msg = []
    for i, (name, _, desc) in enumerate(OPTIONS):
        desc = wrap(desc, width=max_line_len)
        desc = [desc[0]] + [pad + l for l in desc[1:]]

        optstr = '{}) {} - {}\n'.format(
            i+1, name.ljust(max_name_len), '\n'.join(desc))
        msg.append(optstr)
    msg.append("Select one of the above options: ")
    return '\n'.join(msg)


def wizard():
    print("This wizard can help you get started with some common debugging "
          "workflows.\nWhat would you like to do?\n")
    print(_fmt_options(), end="")
    choice = None
    while True:
        choice = raw_input().decode('utf8')
        try:
            choice = int(choice)-1
            if 0 <= choice < len(OPTIONS):
                break
        except ValueError:
            pass

        print("Must provide an integer from 1-{}:".format(len(OPTIONS)))

    func = OPTIONS[choice][1]
    ret = func()

    print("Use the 'run-wizard' command to start this wizard again.")
    return ret


if __name__ == '__main__':
    sys.exit(wizard())