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 12KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286
  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.internal.storage.file;
  45. import static java.nio.charset.StandardCharsets.UTF_8;
  46. import static org.junit.Assert.assertEquals;
  47. import static org.junit.Assert.assertNotNull;
  48. import static org.junit.Assert.assertNull;
  49. import java.io.File;
  50. import java.io.FileNotFoundException;
  51. import java.io.FileOutputStream;
  52. import java.io.IOException;
  53. import java.text.SimpleDateFormat;
  54. import java.util.List;
  55. import org.eclipse.jgit.lib.CheckoutEntry;
  56. import org.eclipse.jgit.lib.Constants;
  57. import org.eclipse.jgit.lib.ObjectId;
  58. import org.eclipse.jgit.lib.PersonIdent;
  59. import org.eclipse.jgit.lib.ReflogEntry;
  60. import org.eclipse.jgit.lib.ReflogReader;
  61. import org.eclipse.jgit.test.resources.SampleDataRepositoryTestCase;
  62. import org.junit.Test;
  63. public class ReflogReaderTest extends SampleDataRepositoryTestCase {
  64. static byte[] oneLine = "da85355dfc525c9f6f3927b876f379f46ccf826e 3e7549db262d1e836d9bf0af7e22355468f1717c A O Thor Too <authortoo@wri.tr> 1243028200 +0200\tcommit: Add a toString for debugging to RemoteRefUpdate\n"
  65. .getBytes(UTF_8);
  66. static byte[] twoLine = ("0000000000000000000000000000000000000000 c6734895958052a9dbc396cff4459dc1a25029ab A U Thor <thor@committer.au> 1243028201 -0100\tbranch: Created from rr/renamebranchv4\n"
  67. + "c6734895958052a9dbc396cff4459dc1a25029ab 54794942a18a237c57a80719afed44bb78172b10 Same A U Thor <same.author@example.com> 1243028202 +0100\trebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d\n")
  68. .getBytes(UTF_8);
  69. static byte[] twoLineWithAppendInProgress = ("0000000000000000000000000000000000000000 c6734895958052a9dbc396cff4459dc1a25029ab A U Thor <thor@committer.au> 1243028201 -0100\tbranch: Created from rr/renamebranchv4\n"
  70. + "c6734895958052a9dbc396cff4459dc1a25029ab 54794942a18a237c57a80719afed44bb78172b10 Same A U Thor <same.author@example.com> 1243028202 +0100\trebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d\n"
  71. + "54794942a18a237c57a80719afed44bb78172b10 ")
  72. .getBytes(UTF_8);
  73. static byte[] aLine = "1111111111111111111111111111111111111111 3e7549db262d1e836d9bf0af7e22355468f1717c A U Thor <thor@committer.au> 1243028201 -0100\tbranch: change to a\n"
  74. .getBytes(UTF_8);
  75. static byte[] masterLine = "2222222222222222222222222222222222222222 3e7549db262d1e836d9bf0af7e22355468f1717c A U Thor <thor@committer.au> 1243028201 -0100\tbranch: change to master\n"
  76. .getBytes(UTF_8);
  77. static byte[] headLine = "3333333333333333333333333333333333333333 3e7549db262d1e836d9bf0af7e22355468f1717c A U Thor <thor@committer.au> 1243028201 -0100\tbranch: change to HEAD\n"
  78. .getBytes(UTF_8);
  79. static byte[] oneLineWithoutComment = "da85355dfc525c9f6f3927b876f379f46ccf826e 3e7549db262d1e836d9bf0af7e22355468f1717c A O Thor Too <authortoo@wri.tr> 1243028200 +0200\n"
  80. .getBytes(UTF_8);
  81. static byte[] switchBranch = "0d43a6890a19fd657faad1c4cfbe3cb1b47851c3 4809df9c0d8bce5b00955563f77c5a9f25aa0d12 A O Thor Too <authortoo@wri.tr> 1315088009 +0200\tcheckout: moving from new/work to master\n"
  82. .getBytes(UTF_8);
  83. @Test
  84. public void testReadOneLine() throws Exception {
  85. setupReflog("logs/refs/heads/master", oneLine);
  86. ReflogReader reader = new ReflogReaderImpl(db, "refs/heads/master");
  87. ReflogEntry e = reader.getLastEntry();
  88. assertEquals(ObjectId
  89. .fromString("da85355dfc525c9f6f3927b876f379f46ccf826e"), e
  90. .getOldId());
  91. assertEquals(ObjectId
  92. .fromString("3e7549db262d1e836d9bf0af7e22355468f1717c"), e
  93. .getNewId());
  94. assertEquals("A O Thor Too", e.getWho().getName());
  95. assertEquals("authortoo@wri.tr", e.getWho().getEmailAddress());
  96. assertEquals(120, e.getWho().getTimeZoneOffset());
  97. assertEquals("2009-05-22T23:36:40", iso(e.getWho()));
  98. assertEquals("commit: Add a toString for debugging to RemoteRefUpdate",
  99. e.getComment());
  100. }
  101. private static String iso(PersonIdent id) {
  102. final SimpleDateFormat fmt;
  103. fmt = new SimpleDateFormat("yyyy-MM-dd'T'HH:mm:ss");
  104. fmt.setTimeZone(id.getTimeZone());
  105. return fmt.format(id.getWhen());
  106. }
  107. @Test
  108. public void testReadTwoLine() throws Exception {
  109. setupReflog("logs/refs/heads/master", twoLine);
  110. ReflogReader reader = new ReflogReaderImpl(db, "refs/heads/master");
  111. List<ReflogEntry> reverseEntries = reader.getReverseEntries();
  112. assertEquals(2, reverseEntries.size());
  113. ReflogEntry e = reverseEntries.get(0);
  114. assertEquals(ObjectId
  115. .fromString("c6734895958052a9dbc396cff4459dc1a25029ab"), e
  116. .getOldId());
  117. assertEquals(ObjectId
  118. .fromString("54794942a18a237c57a80719afed44bb78172b10"), e
  119. .getNewId());
  120. assertEquals("Same A U Thor", e.getWho().getName());
  121. assertEquals("same.author@example.com", e.getWho().getEmailAddress());
  122. assertEquals(60, e.getWho().getTimeZoneOffset());
  123. assertEquals("2009-05-22T22:36:42", iso(e.getWho()));
  124. assertEquals(
  125. "rebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d",
  126. e.getComment());
  127. e = reverseEntries.get(1);
  128. assertEquals(ObjectId
  129. .fromString("0000000000000000000000000000000000000000"), e
  130. .getOldId());
  131. assertEquals(ObjectId
  132. .fromString("c6734895958052a9dbc396cff4459dc1a25029ab"), e
  133. .getNewId());
  134. assertEquals("A U Thor", e.getWho().getName());
  135. assertEquals("thor@committer.au", e.getWho().getEmailAddress());
  136. assertEquals(-60, e.getWho().getTimeZoneOffset());
  137. assertEquals("2009-05-22T20:36:41", iso(e.getWho()));
  138. assertEquals("branch: Created from rr/renamebranchv4", e.getComment());
  139. }
  140. @Test
  141. public void testReadWhileAppendIsInProgress() throws Exception {
  142. setupReflog("logs/refs/heads/master", twoLineWithAppendInProgress);
  143. ReflogReader reader = new ReflogReaderImpl(db, "refs/heads/master");
  144. List<ReflogEntry> reverseEntries = reader.getReverseEntries();
  145. assertEquals(2, reverseEntries.size());
  146. ReflogEntry e = reverseEntries.get(0);
  147. assertEquals(ObjectId
  148. .fromString("c6734895958052a9dbc396cff4459dc1a25029ab"), e
  149. .getOldId());
  150. assertEquals(ObjectId
  151. .fromString("54794942a18a237c57a80719afed44bb78172b10"), e
  152. .getNewId());
  153. assertEquals("Same A U Thor", e.getWho().getName());
  154. assertEquals("same.author@example.com", e.getWho().getEmailAddress());
  155. assertEquals(60, e.getWho().getTimeZoneOffset());
  156. assertEquals("2009-05-22T22:36:42", iso(e.getWho()));
  157. assertEquals(
  158. "rebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d",
  159. e.getComment());
  160. // while similar to testReadTwoLine, we can assume that if we get the last entry
  161. // right, everything else is too
  162. }
  163. @Test
  164. public void testReadRightLog() throws Exception {
  165. setupReflog("logs/refs/heads/a", aLine);
  166. setupReflog("logs/refs/heads/master", masterLine);
  167. setupReflog("logs/HEAD", headLine);
  168. assertEquals("branch: change to master", db.getReflogReader("master")
  169. .getLastEntry().getComment());
  170. assertEquals("branch: change to a", db.getReflogReader("a")
  171. .getLastEntry().getComment());
  172. assertEquals("branch: change to HEAD", db.getReflogReader("HEAD")
  173. .getLastEntry().getComment());
  174. }
  175. @Test
  176. public void testReadLineWithMissingComment() throws Exception {
  177. setupReflog("logs/refs/heads/master", oneLineWithoutComment);
  178. final ReflogReader reader = db.getReflogReader("master");
  179. ReflogEntry e = reader.getLastEntry();
  180. assertEquals(ObjectId
  181. .fromString("da85355dfc525c9f6f3927b876f379f46ccf826e"), e
  182. .getOldId());
  183. assertEquals(ObjectId
  184. .fromString("3e7549db262d1e836d9bf0af7e22355468f1717c"), e
  185. .getNewId());
  186. assertEquals("A O Thor Too", e.getWho().getName());
  187. assertEquals("authortoo@wri.tr", e.getWho().getEmailAddress());
  188. assertEquals(120, e.getWho().getTimeZoneOffset());
  189. assertEquals("2009-05-22T23:36:40", iso(e.getWho()));
  190. assertEquals("",
  191. e.getComment());
  192. }
  193. @Test
  194. public void testNoLog() throws Exception {
  195. assertEquals(0, db.getReflogReader("master").getReverseEntries().size());
  196. assertNull(db.getReflogReader("master").getLastEntry());
  197. }
  198. @Test
  199. public void testCheckout() throws Exception {
  200. setupReflog("logs/HEAD", switchBranch);
  201. List<ReflogEntry> entries = db.getReflogReader(Constants.HEAD)
  202. .getReverseEntries();
  203. assertEquals(1, entries.size());
  204. ReflogEntry entry = entries.get(0);
  205. CheckoutEntry checkout = entry.parseCheckout();
  206. assertNotNull(checkout);
  207. assertEquals("master", checkout.getToBranch());
  208. assertEquals("new/work", checkout.getFromBranch());
  209. }
  210. @Test
  211. public void testSpecificEntryNumber() throws Exception {
  212. setupReflog("logs/refs/heads/master", twoLine);
  213. ReflogReader reader = new ReflogReaderImpl(db, "refs/heads/master");
  214. ReflogEntry e = reader.getReverseEntry(0);
  215. assertEquals(
  216. ObjectId.fromString("c6734895958052a9dbc396cff4459dc1a25029ab"),
  217. e.getOldId());
  218. assertEquals(
  219. ObjectId.fromString("54794942a18a237c57a80719afed44bb78172b10"),
  220. e.getNewId());
  221. assertEquals("Same A U Thor", e.getWho().getName());
  222. assertEquals("same.author@example.com", e.getWho().getEmailAddress());
  223. assertEquals(60, e.getWho().getTimeZoneOffset());
  224. assertEquals("2009-05-22T22:36:42", iso(e.getWho()));
  225. assertEquals(
  226. "rebase finished: refs/heads/rr/renamebranch5 onto c6e3b9fe2da0293f11eae202ec35fb343191a82d",
  227. e.getComment());
  228. e = reader.getReverseEntry(1);
  229. assertEquals(
  230. ObjectId.fromString("0000000000000000000000000000000000000000"),
  231. e.getOldId());
  232. assertEquals(
  233. ObjectId.fromString("c6734895958052a9dbc396cff4459dc1a25029ab"),
  234. e.getNewId());
  235. assertEquals("A U Thor", e.getWho().getName());
  236. assertEquals("thor@committer.au", e.getWho().getEmailAddress());
  237. assertEquals(-60, e.getWho().getTimeZoneOffset());
  238. assertEquals("2009-05-22T20:36:41", iso(e.getWho()));
  239. assertEquals("branch: Created from rr/renamebranchv4", e.getComment());
  240. assertNull(reader.getReverseEntry(3));
  241. }
  242. private void setupReflog(String logName, byte[] data)
  243. throws FileNotFoundException, IOException {
  244. File logfile = new File(db.getDirectory(), logName);
  245. if (!logfile.getParentFile().mkdirs()
  246. && !logfile.getParentFile().isDirectory()) {
  247. throw new IOException(
  248. "oops, cannot create the directory for the test reflog file"
  249. + logfile);
  250. }
  251. try (FileOutputStream fileOutputStream = new FileOutputStream(logfile)) {
  252. fileOutputStream.write(data);
  253. }
  254. }
  255. }