view talosnames/main.py @ 15:2fc6c53931a1

docstring"
author Jeff Hammel <jhammel@mozilla.com>
date Tue, 10 Jul 2012 18:10:39 -0700
parents 323a01abd180
children 1713b3e244a7
line wrap: on
line source

#!/usr/bin/env python

"""
correlate names of talos
"""

import api
import optparse
import subprocess
import sys
from commandparser import CommandParser
from pprint import pprint

class TalosNamesCLI(object):
    def __init__(self):
        self.api = api.TalosNames()

    def graphserver(self, *names):
        """give graphserver names from test names"""
        if not names:
            names = [None]
        for arg in names:
            for name, graphserver_name in self.api(arg):
                print '%s : %s' % (name, graphserver_name)
            print

    def tbpl(self, name):
        """give TBPL name given the buildbot config name"""
        return self.api.tbpl_name(name)

    def suites(self):
        """list the buildbot suites"""
        suites = sorted(self.api.suites.keys())
        return suites

    def command(self, suite):
        """returns the command that buildbot runs for a particular suite"""
        command = self.api.buildbot_command(suite)
        assert command is not None, "Suite not found; should be one of %s" % ', '.join(self.suites())
        return subprocess.list2cmdline(command)

    def tests(self):
        """return the talos test config for a buildbot suite name"""

def main(args=sys.argv[1:]):
    parser = CommandParser(TalosNamesCLI)
    parser.invoke(sys.argv[1:])

if __name__ == '__main__':
    main()