Bladeren bron

added update command and fixed Hg incoming extension

bmallred 10 jaren geleden
bovenliggende
commit
9023d19907
6 gewijzigde bestanden met toevoegingen van 38 en 45 verwijderingen
  1. 1 2
      code.py
  2. 1 1
      extensions/incoming.py
  3. 21 0
      extensions/update.py
  4. 15 0
      tests/CodeRepositoryTests.py
  5. 0 1
      umbrella
  6. 0 41
      umbrella.py

+ 1 - 2
code.py

13
        Initialize the code repository class.
13
        Initialize the code repository class.
14
        '''
14
        '''
15
15
16
        self.currentDirectory = os.getcwd()
17
        self.executingDirectory = os.path.dirname(os.path.realpath(__file__))
16
        self.executingDirectory = os.path.dirname(os.path.realpath(__file__))
18
        self.extensionDirectory = os.path.join(self.executingDirectory, "extensions")
17
        self.extensionDirectory = os.path.join(self.executingDirectory, "extensions")
19
18
70
69
71
        return extensionExecuted 
70
        return extensionExecuted 
72
71
73
if __name__ == "__main__":
72
if __name__ == "__main__": #pragma: no cover 
74
    args = sys.argv
73
    args = sys.argv
75
74
76
    if len(args) < 2:
75
    if len(args) < 2:

+ 1 - 1
extensions/incoming.py

12
            execute(["git", "log", "..@{u}"])
12
            execute(["git", "log", "..@{u}"])
13
13
14
    if isMercurial():
14
    if isMercurial():
15
        out, err = executeAndReturnResponse(["git", "paths"])
15
        out, err = executeAndReturnResponse(["hg", "paths"])
16
        if not err and out:
16
        if not err and out:
17
            execute(["hg", "incoming"])
17
            execute(["hg", "incoming"])
18
18

+ 21 - 0
extensions/update.py

1
from utilities import execute, isGit, isMercurial, isBazaar
2
3
def pull(arguments):
4
    '''
5
    Pull the latest changes.
6
    '''
7
    
8
    if isGit():
9
        command = ["git", "pull"]
10
        command.extend(arguments)
11
        execute(command)
12
13
    if isMercurial():
14
        command = ["hg", "pull", "-u"]
15
        command.extend(arguments)
16
        execute(command)
17
18
    if isBazaar():
19
        command = ["bzr", "update"]
20
        command.extend(arguments)
21
        execute(command)

+ 15 - 0
tests/CodeRepositoryTests.py

1
import unittest
2
from code import CodeRepository
3
4
class TestCodeRepository(unittest.TestCase):
5
    def setUp(self):
6
        self.repository = CodeRepository()
7
8
    def test_runExtension(self):
9
        self.repository.run("incoming")
10
11
    def test_runRawCommand(self):
12
        self.repository.run("status")
13
14
if __name__ == "__main__": #pragma: no cover
15
    unittest.main()

+ 0 - 1
umbrella

1
python umbrella.py &> /dev/null

+ 0 - 41
umbrella.py

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()