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.

EditTest.java 5.4KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191
  1. /*
  2. * Copyright (C) 2009, Google Inc.
  3. * Copyright (C) 2009, Johannes E. Schindelin <johannes.schindelin@gmx.de>
  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.diff;
  45. import static org.junit.Assert.assertEquals;
  46. import static org.junit.Assert.assertFalse;
  47. import static org.junit.Assert.assertSame;
  48. import static org.junit.Assert.assertTrue;
  49. import org.junit.Test;
  50. public class EditTest {
  51. @Test
  52. public void testCreate() {
  53. final Edit e = new Edit(1, 2, 3, 4);
  54. assertEquals(1, e.getBeginA());
  55. assertEquals(2, e.getEndA());
  56. assertEquals(3, e.getBeginB());
  57. assertEquals(4, e.getEndB());
  58. }
  59. @Test
  60. public void testCreateEmpty() {
  61. final Edit e = new Edit(1, 3);
  62. assertEquals(1, e.getBeginA());
  63. assertEquals(1, e.getEndA());
  64. assertEquals(3, e.getBeginB());
  65. assertEquals(3, e.getEndB());
  66. assertTrue("is empty", e.isEmpty());
  67. assertSame(Edit.Type.EMPTY, e.getType());
  68. }
  69. @Test
  70. public void testSwap() {
  71. final Edit e = new Edit(1, 2, 3, 4);
  72. e.swap();
  73. assertEquals(3, e.getBeginA());
  74. assertEquals(4, e.getEndA());
  75. assertEquals(1, e.getBeginB());
  76. assertEquals(2, e.getEndB());
  77. }
  78. @Test
  79. public void testType_Insert() {
  80. final Edit e = new Edit(1, 1, 1, 2);
  81. assertSame(Edit.Type.INSERT, e.getType());
  82. assertFalse("not empty", e.isEmpty());
  83. assertEquals(0, e.getLengthA());
  84. assertEquals(1, e.getLengthB());
  85. }
  86. @Test
  87. public void testType_Delete() {
  88. final Edit e = new Edit(1, 2, 1, 1);
  89. assertSame(Edit.Type.DELETE, e.getType());
  90. assertFalse("not empty", e.isEmpty());
  91. assertEquals(1, e.getLengthA());
  92. assertEquals(0, e.getLengthB());
  93. }
  94. @Test
  95. public void testType_Replace() {
  96. final Edit e = new Edit(1, 2, 1, 4);
  97. assertSame(Edit.Type.REPLACE, e.getType());
  98. assertFalse("not empty", e.isEmpty());
  99. assertEquals(1, e.getLengthA());
  100. assertEquals(3, e.getLengthB());
  101. }
  102. @Test
  103. public void testType_Empty() {
  104. final Edit e = new Edit(1, 1, 2, 2);
  105. assertSame(Edit.Type.EMPTY, e.getType());
  106. assertSame(Edit.Type.EMPTY, new Edit(1, 2).getType());
  107. assertTrue("is empty", e.isEmpty());
  108. assertEquals(0, e.getLengthA());
  109. assertEquals(0, e.getLengthB());
  110. }
  111. @Test
  112. public void testToString() {
  113. final Edit e = new Edit(1, 2, 1, 4);
  114. assertEquals("REPLACE(1-2,1-4)", e.toString());
  115. }
  116. @SuppressWarnings("unlikely-arg-type")
  117. @Test
  118. public void testEquals1() {
  119. final Edit e1 = new Edit(1, 2, 3, 4);
  120. final Edit e2 = new Edit(1, 2, 3, 4);
  121. assertEquals(e1, e1);
  122. assertEquals(e2, e1);
  123. assertEquals(e1, e2);
  124. assertEquals(e1.hashCode(), e2.hashCode());
  125. assertFalse(e1.equals(""));
  126. }
  127. @Test
  128. public void testNotEquals1() {
  129. assertFalse(new Edit(1, 2, 3, 4).equals(new Edit(0, 2, 3, 4)));
  130. }
  131. @Test
  132. public void testNotEquals2() {
  133. assertFalse(new Edit(1, 2, 3, 4).equals(new Edit(1, 0, 3, 4)));
  134. }
  135. @Test
  136. public void testNotEquals3() {
  137. assertFalse(new Edit(1, 2, 3, 4).equals(new Edit(1, 2, 0, 4)));
  138. }
  139. @Test
  140. public void testNotEquals4() {
  141. assertFalse(new Edit(1, 2, 3, 4).equals(new Edit(1, 2, 3, 0)));
  142. }
  143. @Test
  144. public void testExtendA() {
  145. final Edit e = new Edit(1, 2, 1, 1);
  146. e.extendA();
  147. assertEquals(new Edit(1, 3, 1, 1), e);
  148. e.extendA();
  149. assertEquals(new Edit(1, 4, 1, 1), e);
  150. }
  151. @Test
  152. public void testExtendB() {
  153. final Edit e = new Edit(1, 2, 1, 1);
  154. e.extendB();
  155. assertEquals(new Edit(1, 2, 1, 2), e);
  156. e.extendB();
  157. assertEquals(new Edit(1, 2, 1, 3), e);
  158. }
  159. @Test
  160. public void testBeforeAfterCuts() {
  161. final Edit whole = new Edit(1, 8, 2, 9);
  162. final Edit mid = new Edit(4, 5, 3, 6);
  163. assertEquals(new Edit(1, 4, 2, 3), whole.before(mid));
  164. assertEquals(new Edit(5, 8, 6, 9), whole.after(mid));
  165. }
  166. }