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

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