use of org.eclipse.jgit.diff.Edit in project gerrit by GerritCodeReview.
the class OneLineContentWithEOLTest method replaceWholeContent.
@Test
public void replaceWholeContent() throws Exception {
FixResult fixResult = FixCalculatorVariousTest.calculateFixSingleReplacement("First line\n", 1, 0, 2, 0, "Abc");
assertThat(fixResult).text().isEqualTo("Abc");
assertThat(fixResult).edits().hasSize(1);
Edit edit = fixResult.edits.get(0);
assertThat(edit).isReplace(0, 1, 0, 1);
assertThat(edit).internalEdits().onlyElement().isReplace(0, 11, 0, 3);
}
use of org.eclipse.jgit.diff.Edit in project gerrit by GerritCodeReview.
the class OneLineContentWithEOLTest method deleteAtEnd.
@Test
public void deleteAtEnd() throws Exception {
FixResult fixResult = FixCalculatorVariousTest.calculateFixSingleReplacement("First line\n", 1, 7, 2, 0, "");
assertThat(fixResult).text().isEqualTo("First l");
assertThat(fixResult).edits().hasSize(1);
Edit edit = fixResult.edits.get(0);
assertThat(edit).isReplace(0, 1, 0, 1);
assertThat(edit).internalEdits().onlyElement().isDelete(7, 4, 7);
}
use of org.eclipse.jgit.diff.Edit in project gerrit by GerritCodeReview.
the class OneLineContentWithEOLTest method insertSingleLineNoEOLAtEnd.
@Test
public void insertSingleLineNoEOLAtEnd() throws Exception {
FixResult fixResult = FixCalculatorVariousTest.calculateFixSingleReplacement("First line\n", 2, 0, 2, 0, "Abc");
assertThat(fixResult).text().isEqualTo("First line\nAbc");
assertThat(fixResult).edits().hasSize(1);
Edit edit = fixResult.edits.get(0);
assertThat(edit).isInsert(1, 1, 1);
assertThat(edit).internalEdits().onlyElement().isInsert(0, 0, 3);
}
use of org.eclipse.jgit.diff.Edit in project gerrit by GerritCodeReview.
the class OneLineContentWithEOLTest method deleteInTheMiddle.
@Test
public void deleteInTheMiddle() throws Exception {
FixResult fixResult = FixCalculatorVariousTest.calculateFixSingleReplacement("First line\n", 1, 5, 1, 8, "");
assertThat(fixResult).text().isEqualTo("Firstne\n");
assertThat(fixResult).edits().hasSize(1);
Edit edit = fixResult.edits.get(0);
assertThat(edit).isReplace(0, 1, 0, 1);
assertThat(edit).internalEdits().onlyElement().isDelete(5, 3, 5);
}
use of org.eclipse.jgit.diff.Edit in project gerrit by GerritCodeReview.
the class OneLineContentWithEOLTest method insertMultilineLineWithEOLAtEnd.
@Test
public void insertMultilineLineWithEOLAtEnd() throws Exception {
FixResult fixResult = FixCalculatorVariousTest.calculateFixSingleReplacement("First line\n", 2, 0, 2, 0, "Abc\nDefgh\n");
assertThat(fixResult).text().isEqualTo("First line\nAbc\nDefgh\n");
assertThat(fixResult).edits().hasSize(1);
Edit edit = fixResult.edits.get(0);
assertThat(edit).isInsert(1, 1, 2);
assertThat(edit).internalEdits().onlyElement().isInsert(0, 0, 10);
}
Aggregations