You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

ReflogReaderTest.java 8.7KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201
  1. /*
  2. * Copyright (C) 2009, Robin Rosenberg
  3. * Copyright (C) 2009, Robin Rosenberg <robin.rosenberg@dewire.com>
  4. * and other copyright owners as documented in the project's IP log.
  5. *
  6. * This program and the accompanying materials are made available
  7. * under the terms of the Eclipse Distribution License v1.0 which
  8. * accompanies this distribution, is reproduced below, and is
  9. * available at http://www.eclipse.org/org/documents/edl-v10.php
  10. *
  11. * All rights reserved.
  12. *
  13. * Redistribution and use in source and binary forms, with or
  14. * without modification, are permitted provided that the following
  15. * conditions are met:
  16. *
  17. * - Redistributions of source code must retain the above copyright
  18. * notice, this list of conditions and the following disclaimer.
  19. *
  20. * - Redistributions in binary form must reproduce the above
  21. * copyright notice, this list of conditions and the following
  22. * disclaimer in the documentation and/or other materials provided
  23. * with the distribution.
  24. *
  25. * - Neither the name of the Eclipse Foundation, Inc. nor the
  26. * names of its contributors may be used to endorse or promote
  27. * products derived from this software without specific prior
  28. * written permission.
  29. *
  30. * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
  31. * CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
  32. * INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
  33. * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
  34. * ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT OWNER OR
  35. * CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
  36. * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
  37. * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
  38. * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
  39. * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT,
  40. * STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE)
  41. * ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF
  42. * ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
  43. */
  44. package org.eclipse.jgit.storage.file;
  45. import java.io.File;
  46. import java.io.FileNotFoundException;
  47. import java.io.FileOutputStream;
  48. import java.io.IOException;
  49. import java.text.SimpleDateFormat;
  50. import java.util.List;
  51. import org.eclipse.jgit.lib.ObjectId;
  52. import org.eclipse.jgit.lib.PersonIdent;
  53. import org.eclipse.jgit.lib.SampleDataRepositoryTestCase;
  54. import org.eclipse.jgit.storage.file.ReflogReader.Entry;
  55. public class ReflogReaderTest extends SampleDataRepositoryTestCase {
  56. static byte[] oneLine = "da85355dfc525c9f6f3927b876f379f46ccf826e 3e7549db262d1e836d9bf0af7e22355468f1717c A O Thor Too <authortoo@wri.tr> 1243028200 +0200\tcommit: Add a toString for debugging to RemoteRefUpdate\n"
  57. .getBytes();
  58. static byte[] twoLine = ("0000000000000000000000000000000000000000 c6734895958052a9dbc396cff4459dc1a25029ab A U Thor <thor@committer.au> 1243028201 -0100\tbranch: Created from rr/renamebranchv4\n"
  59. + "c6734895958052a9dbc396cff4459dc1a25029ab 54794942a18a237c57a80719afed44bb78172b10 Same A U Thor <same.author@example.com> 1243028202 +0100\trebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d\n")
  60. .getBytes();
  61. static byte[] twoLineWithAppendInProgress = ("0000000000000000000000000000000000000000 c6734895958052a9dbc396cff4459dc1a25029ab A U Thor <thor@committer.au> 1243028201 -0100\tbranch: Created from rr/renamebranchv4\n"
  62. + "c6734895958052a9dbc396cff4459dc1a25029ab 54794942a18a237c57a80719afed44bb78172b10 Same A U Thor <same.author@example.com> 1243028202 +0100\trebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d\n"
  63. + "54794942a18a237c57a80719afed44bb78172b10 ")
  64. .getBytes();
  65. static byte[] aLine = "1111111111111111111111111111111111111111 3e7549db262d1e836d9bf0af7e22355468f1717c A U Thor <thor@committer.au> 1243028201 -0100\tbranch: change to a\n"
  66. .getBytes();
  67. static byte[] masterLine = "2222222222222222222222222222222222222222 3e7549db262d1e836d9bf0af7e22355468f1717c A U Thor <thor@committer.au> 1243028201 -0100\tbranch: change to master\n"
  68. .getBytes();
  69. static byte[] headLine = "3333333333333333333333333333333333333333 3e7549db262d1e836d9bf0af7e22355468f1717c A U Thor <thor@committer.au> 1243028201 -0100\tbranch: change to HEAD\n"
  70. .getBytes();
  71. public void testReadOneLine() throws Exception {
  72. setupReflog("logs/refs/heads/master", oneLine);
  73. ReflogReader reader = new ReflogReader(db, "refs/heads/master");
  74. Entry e = reader.getLastEntry();
  75. assertEquals(ObjectId
  76. .fromString("da85355dfc525c9f6f3927b876f379f46ccf826e"), e
  77. .getOldId());
  78. assertEquals(ObjectId
  79. .fromString("3e7549db262d1e836d9bf0af7e22355468f1717c"), e
  80. .getNewId());
  81. assertEquals("A O Thor Too", e.getWho().getName());
  82. assertEquals("authortoo@wri.tr", e.getWho().getEmailAddress());
  83. assertEquals(120, e.getWho().getTimeZoneOffset());
  84. assertEquals("2009-05-22T23:36:40", iso(e.getWho()));
  85. assertEquals("commit: Add a toString for debugging to RemoteRefUpdate",
  86. e.getComment());
  87. }
  88. private String iso(PersonIdent id) {
  89. final SimpleDateFormat fmt;
  90. fmt = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
  91. fmt.setTimeZone(id.getTimeZone());
  92. return fmt.format(id.getWhen());
  93. }
  94. public void testReadTwoLine() throws Exception {
  95. setupReflog("logs/refs/heads/master", twoLine);
  96. ReflogReader reader = new ReflogReader(db, "refs/heads/master");
  97. List<Entry> reverseEntries = reader.getReverseEntries();
  98. assertEquals(2, reverseEntries.size());
  99. Entry e = reverseEntries.get(0);
  100. assertEquals(ObjectId
  101. .fromString("c6734895958052a9dbc396cff4459dc1a25029ab"), e
  102. .getOldId());
  103. assertEquals(ObjectId
  104. .fromString("54794942a18a237c57a80719afed44bb78172b10"), e
  105. .getNewId());
  106. assertEquals("Same A U Thor", e.getWho().getName());
  107. assertEquals("same.author@example.com", e.getWho().getEmailAddress());
  108. assertEquals(60, e.getWho().getTimeZoneOffset());
  109. assertEquals("2009-05-22T22:36:42", iso(e.getWho()));
  110. assertEquals(
  111. "rebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d",
  112. e.getComment());
  113. e = reverseEntries.get(1);
  114. assertEquals(ObjectId
  115. .fromString("0000000000000000000000000000000000000000"), e
  116. .getOldId());
  117. assertEquals(ObjectId
  118. .fromString("c6734895958052a9dbc396cff4459dc1a25029ab"), e
  119. .getNewId());
  120. assertEquals("A U Thor", e.getWho().getName());
  121. assertEquals("thor@committer.au", e.getWho().getEmailAddress());
  122. assertEquals(-60, e.getWho().getTimeZoneOffset());
  123. assertEquals("2009-05-22T20:36:41", iso(e.getWho()));
  124. assertEquals("branch: Created from rr/renamebranchv4", e.getComment());
  125. }
  126. public void testReadWhileAppendIsInProgress() throws Exception {
  127. setupReflog("logs/refs/heads/master", twoLineWithAppendInProgress);
  128. ReflogReader reader = new ReflogReader(db, "refs/heads/master");
  129. List<Entry> reverseEntries = reader.getReverseEntries();
  130. assertEquals(2, reverseEntries.size());
  131. Entry e = reverseEntries.get(0);
  132. assertEquals(ObjectId
  133. .fromString("c6734895958052a9dbc396cff4459dc1a25029ab"), e
  134. .getOldId());
  135. assertEquals(ObjectId
  136. .fromString("54794942a18a237c57a80719afed44bb78172b10"), e
  137. .getNewId());
  138. assertEquals("Same A U Thor", e.getWho().getName());
  139. assertEquals("same.author@example.com", e.getWho().getEmailAddress());
  140. assertEquals(60, e.getWho().getTimeZoneOffset());
  141. assertEquals("2009-05-22T22:36:42", iso(e.getWho()));
  142. assertEquals(
  143. "rebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d",
  144. e.getComment());
  145. // while similar to testReadTwoLine, we can assume that if we get the last entry
  146. // right, everything else is too
  147. }
  148. public void testReadRightLog() throws Exception {
  149. setupReflog("logs/refs/heads/a", aLine);
  150. setupReflog("logs/refs/heads/master", masterLine);
  151. setupReflog("logs/HEAD", headLine);
  152. assertEquals("branch: change to master", db.getReflogReader("master")
  153. .getLastEntry().getComment());
  154. assertEquals("branch: change to a", db.getReflogReader("a")
  155. .getLastEntry().getComment());
  156. assertEquals("branch: change to HEAD", db.getReflogReader("HEAD")
  157. .getLastEntry().getComment());
  158. }
  159. public void testNoLog() throws Exception {
  160. assertEquals(0, db.getReflogReader("master").getReverseEntries().size());
  161. assertNull(db.getReflogReader("master").getLastEntry());
  162. }
  163. private void setupReflog(String logName, byte[] data)
  164. throws FileNotFoundException, IOException {
  165. File logfile = new File(db.getDirectory(), logName);
  166. if (!logfile.getParentFile().mkdirs()
  167. && !logfile.getParentFile().isDirectory()) {
  168. throw new IOException(
  169. "oops, cannot create the directory for the test reflog file"
  170. + logfile);
  171. }
  172. FileOutputStream fileOutputStream = new FileOutputStream(logfile);
  173. try {
  174. fileOutputStream.write(data);
  175. } finally {
  176. fileOutputStream.close();
  177. }
  178. }
  179. }