test.py 4.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178
  1. #!/usr/bin/env python
  2. # -*- encoding: UTF-8 -*-
  3. # Import from the Standard Library
  4. from os import F_OK, access, mkdir
  5. from pprint import pprint
  6. from shutil import rmtree
  7. from subprocess import call
  8. from time import time
  9. # Import from dulwich
  10. from dulwich.repo import Repo
  11. from dulwich.objects import Blob, Tree, Commit, parse_timezone
  12. DIRNAME = "myrepo"
  13. AUTHOR = "Your Name <your.email@example.com>"
  14. TZ = parse_timezone('-200')
  15. ENCODING = "UTF-8"
  16. def make_commit(repo, tree_id, message):
  17. """Build a commit object on the same pattern. Only changing values are
  18. required as parameters.
  19. """
  20. commit = Commit()
  21. try:
  22. commit.parents = [repo.head()]
  23. except KeyError:
  24. # The initial commit has no parent
  25. pass
  26. commit.tree = tree_id
  27. commit.message = message
  28. commit.author = commit.committer = AUTHOR
  29. commit.commit_time = commit.author_time = int(time())
  30. commit.commit_timezone = commit.author_timezone = TZ
  31. commit.encoding = ENCODING
  32. return commit
  33. def make_tree(repo):
  34. """Return the last known tree.
  35. """
  36. commit_id = repo.head()
  37. commit = repo.commit(commit_id)
  38. tree_id = commit.tree
  39. return repo.tree(tree_id)
  40. def update_master(repo, commit_id):
  41. repo.refs['refs/heads/master'] = commit_id
  42. def initial_commit(repo):
  43. # Add file content
  44. blob = Blob.from_string("My file content\n")
  45. # Add file
  46. tree = Tree()
  47. tree.add(0100644, "spam", blob.id)
  48. # Set commit
  49. commit = make_commit(repo, tree.id, "Initial commit")
  50. # Initial commit
  51. object_store = repo.object_store
  52. object_store.add_object(blob)
  53. object_store.add_object(tree)
  54. object_store.add_object(commit)
  55. # Update master
  56. update_master(repo, commit.id)
  57. # Set the master branch as the default
  58. repo.refs['HEAD'] = 'ref: refs/heads/master'
  59. def test_change(repo):
  60. tree = make_tree(repo)
  61. # Change a file
  62. spam = Blob.from_string("My new file content\n")
  63. tree.add(0100644, "spam", spam.id)
  64. # Set commit
  65. commit = make_commit(repo, tree.id, "Change spam")
  66. # Second commit
  67. object_store = repo.object_store
  68. object_store.add_object(spam)
  69. object_store.add_object(tree)
  70. object_store.add_object(commit)
  71. # Update master
  72. update_master(repo, commit.id)
  73. def test_add(repo):
  74. tree = make_tree(repo)
  75. # Add another file
  76. ham = Blob.from_string("Another\nmultiline\nfile\n")
  77. tree.add(0100644, "ham", ham.id)
  78. # Set commit
  79. commit = make_commit(repo, tree.id, "Add ham")
  80. # Second commit
  81. object_store = repo.object_store
  82. object_store.add_object(ham)
  83. object_store.add_object(tree)
  84. object_store.add_object(commit)
  85. # Update master
  86. update_master(repo, commit.id)
  87. def test_remove(repo):
  88. tree = make_tree(repo)
  89. # Remove a file
  90. del tree["ham"]
  91. # Set commit
  92. commit = make_commit(repo, tree.id, 'Remove "ham"')
  93. # Third commit
  94. # No blob change, just tree operation
  95. object_store = repo.object_store
  96. object_store.add_object(tree)
  97. object_store.add_object(commit)
  98. # Update master
  99. update_master(repo, commit.id)
  100. def test_rename(repo):
  101. tree = make_tree(repo)
  102. # Rename a file
  103. tree["eggs"] = tree["spam"]
  104. del tree["spam"]
  105. # Set commit
  106. commit = make_commit(repo, tree.id, 'Rename "spam" to "eggs"')
  107. # Fourth commit
  108. # No blob change, just tree operation
  109. object_store = repo.object_store
  110. object_store.add_object(tree)
  111. object_store.add_object(commit)
  112. # Update master
  113. update_master(repo, commit.id)
  114. def test_history(repo):
  115. pprint(repo.revision_history(repo.head()))
  116. def test_file(repo):
  117. tree = make_tree(repo)
  118. print "entries", tree.entries()
  119. mode, blob_id = tree["eggs"]
  120. blob = repo.get_blob(blob_id)
  121. print "eggs", repr(blob.data)
  122. if __name__ == '__main__':
  123. # Creating the repository
  124. if access(DIRNAME, F_OK):
  125. rmtree(DIRNAME)
  126. mkdir(DIRNAME)
  127. repo = Repo.init(DIRNAME)
  128. initial_commit(repo)
  129. test_change(repo)
  130. test_add(repo)
  131. test_remove(repo)
  132. test_rename(repo)
  133. last_commit_id = repo.head()
  134. call(['git', 'gc'], cwd=DIRNAME)
  135. # Re-load the repo
  136. del repo
  137. repo = Repo(DIRNAME)
  138. # XXX the ref was removed and dulwich doesn't know where to read it
  139. update_master(repo, last_commit_id)
  140. assert last_commit_id == repo.head()
  141. test_history(repo)
  142. test_file(repo)