Browse Source

Initial commit. Pass through is working

bmallred 11 years ago
parent
commit
428b8901ca
5 changed files with 149 additions and 0 deletions
  1. 79 0
      code.py
  2. 2 0
      extensions/hello.py
  3. 1 0
      umbrella
  4. 41 0
      umbrella.py
  5. 26 0
      utilities.py

+ 79 - 0
code.py

@ -0,0 +1,79 @@
1
#!/usr/bin/env python
2
3
import os
4
import subprocess
5
import argparse
6
import importlib
7
8
from utilities import isGit, isMercurial, isBazaar
9
10
class CodeRepository:
11
    def __init__(self):
12
        '''
13
        Initialize the code repository class.
14
        '''
15
16
        self.currentDirectory = os.getcwd()
17
        self.executingDirectory = os.path.dirname(os.path.realpath(__file__))
18
        self.extensionDirectory = os.path.join(self.executingDirectory, "extensions")
19
20
    def run(self, args):
21
        '''
22
        Run the given command and arguments against the current working directory.
23
        '''
24
        
25
        executed = self.executeExtension(args[0], args[1:])
26
27
        # If no extension was found then we execute the command as if
28
        # it was naturally called.
29
        if not executed:
30
            commandWithArgs = args[:]
31
            commandWithArgs.insert(0, "vcs")
32
33
            if isGit():
34
                commandWithArgs[0] = "git"
35
                subprocess.call(commandWithArgs)
36
                executed = True
37
            
38
            if isMercurial():
39
                commandWithArgs[0] = "hg"
40
                subprocess.call(commandWithArgs)
41
                executed = True
42
43
            if isBazaar():
44
                commandWithArgs[0] = "bzr"
45
                subprocess.call(commandWithArgs)
46
                executed = True
47
48
        if not executed:
49
            print("No repository found")
50
            exit(3)
51
52
    def executeExtension(self, extension, arguments):
53
        '''
54
        Find the named extension and attempt to execute it with the given arguments.
55
        '''
56
        
57
        extensionPath = "extensions.{0}".format(extension)
58
        extensionExecuted = False
59
        
60
        try:
61
            module = importlib.import_module(extensionPath)
62
            method = getattr(module, extension)
63
            method(arguments)
64
            
65
            extensionExecuted = True
66
        except ImportError:
67
            pass
68
        finally:
69
            pass
70
71
        return extensionExecuted 
72
73
if __name__ == "__main__":
74
    parser = argparse.ArgumentParser(description="")
75
    parser.add_argument("commands", metavar="commands", nargs="+")
76
    args = parser.parse_args()
77
78
    repo = CodeRepository()
79
    repo.run(args.commands)

+ 2 - 0
extensions/hello.py

@ -0,0 +1,2 @@
1
def hello(arguments):
2
    print("You rang?")

+ 1 - 0
umbrella

@ -0,0 +1 @@
1
python umbrella.py &> /dev/null

+ 41 - 0
umbrella.py

@ -0,0 +1,41 @@
1
#!/usr/bin/python
2
3
import coverage
4
import os
5
import unittest
6
7
# Store our output to the file
8
output = ""
9
10
# Start the coverage
11
cov = coverage.coverage()
12
cov.start()
13
14
# Dynamically get all the test cases we can find.
15
suite = unittest.TestSuite()
16
suite.addTests(unittest.TestLoader().discover(os.getcwd(), pattern="*.py"))
17
18
# Run the tests
19
unittest.TextTestRunner().run(suite)
20
21
# Stop coverage and save the stats
22
cov.stop()
23
cov.save()
24
25
# Iterate through the tested files
26
for source in cov.data.measured_files():
27
    for a in [cov.analysis2(source)]:
28
        output += "{0};{1};{2};{3};\n".format(
29
                a[0], 
30
                ",".join(str(x) for x in a[1]), 
31
                ",".join(str(x) for x in a[2]), 
32
                ",".join(str(x) for x in a[3]))
33
34
# Write the coverage report for umbrella
35
fileName = ".umbrella-coverage"
36
if os.path.isfile(fileName):
37
    os.remove(fileName)
38
39
f = open(fileName, "w")
40
f.write(output)
41
f.close()

+ 26 - 0
utilities.py

@ -0,0 +1,26 @@
1
import os
2
import subprocess
3
4
def isGit():
5
    '''
6
    Determine if the current directory is part of a Git repository.
7
    '''
8
9
    return testRepository(["git", "branch"])
10
11
def isMercurial():
12
    '''
13
    Determine if the current directory is part of a Mercurial repository.
14
    '''
15
16
    return testRepository(["hg", "branch"])
17
18
def isBazaar():
19
    '''
20
    Determine if the current directory is part of the Bazaar repository.
21
    '''
22
23
    return testRepository(["bzr", "root"])
24
25
def testRepository(command):
26
    return subprocess.call(command, stderr=subprocess.STDOUT, stdout=open(os.devnull, 'w')) == 0