-
Notifications
You must be signed in to change notification settings - Fork 72
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Improve range split function and add unit tests (#553)
- Loading branch information
1 parent
cb4f160
commit 62d2771
Showing
5 changed files
with
168 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
53 changes: 53 additions & 0 deletions
53
android/src/main/java/com/expensify/livemarkdown/RangeSplitter.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,53 @@ | ||
package com.expensify.livemarkdown; | ||
|
||
import androidx.annotation.NonNull; | ||
|
||
import java.util.ArrayList; | ||
import java.util.List; | ||
|
||
public class RangeSplitter { | ||
public static ArrayList<MarkdownRange> splitRangesOnEmojis(@NonNull List<MarkdownRange> markdownRanges, @NonNull String type) { | ||
ArrayList<MarkdownRange> emojiRanges = new ArrayList<>(); | ||
ArrayList<MarkdownRange> oldRanges = new ArrayList<>(markdownRanges); | ||
ArrayList<MarkdownRange> newRanges = new ArrayList<>(); | ||
for (MarkdownRange range : oldRanges) { | ||
if (range.getType().equals("emoji")) { | ||
emojiRanges.add(range); | ||
} | ||
} | ||
|
||
int i = 0; | ||
int j = 0; | ||
while (i < oldRanges.size()) { | ||
MarkdownRange currentRange = oldRanges.get(i); | ||
if (!currentRange.getType().equals(type)) { | ||
newRanges.add(currentRange); | ||
i += 1; | ||
continue; | ||
} | ||
|
||
// Iterate through all emoji ranges before the end of the current range, splitting the current range at each intersection. | ||
while (j < emojiRanges.size()) { | ||
MarkdownRange emojiRange = emojiRanges.get(j); | ||
if (emojiRange.getStart() > currentRange.getEnd()) { | ||
break; | ||
} | ||
|
||
int currentStart = currentRange.getStart(); | ||
int currentEnd = currentRange.getEnd(); | ||
int emojiStart = emojiRange.getStart(); | ||
int emojiEnd = emojiRange.getEnd(); | ||
if (emojiStart >= currentStart && emojiEnd <= currentEnd) { // Intersection | ||
MarkdownRange newRange = new MarkdownRange(currentRange.getType(), currentStart, emojiStart - currentStart, currentRange.getDepth()); | ||
currentRange = new MarkdownRange(currentRange.getType(), emojiEnd, currentEnd - emojiEnd, currentRange.getDepth()); | ||
|
||
newRanges.add(newRange); | ||
} | ||
j += 1; | ||
} | ||
newRanges.add(currentRange); | ||
i += 1; | ||
} | ||
return newRanges; | ||
} | ||
} |
81 changes: 81 additions & 0 deletions
81
android/src/test/java/com/expensify/livemarkdown/RangeSplitterTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,81 @@ | ||
package com.expensify.livemarkdown; | ||
|
||
import static com.expensify.livemarkdown.RangeSplitter.splitRangesOnEmojis; | ||
|
||
import static org.junit.Assert.assertEquals; | ||
|
||
import org.junit.Test; | ||
|
||
import java.util.ArrayList; | ||
import java.util.Collections; | ||
import java.util.List; | ||
|
||
public class RangeSplitterTest { | ||
|
||
@Test | ||
public void testNoOverlap() { | ||
List<MarkdownRange> markdownRanges = new ArrayList<>(); | ||
markdownRanges.add(new MarkdownRange("strikethrough", 0, 10, 1)); | ||
markdownRanges.add(new MarkdownRange("emoji", 12, 2, 1)); | ||
|
||
markdownRanges = splitRangesOnEmojis(markdownRanges, "strikethrough"); | ||
|
||
assertEquals(2, markdownRanges.size()); | ||
assertEquals(new MarkdownRange("strikethrough", 0, 10, 1), markdownRanges.get(0)); | ||
assertEquals(new MarkdownRange("emoji", 12, 2, 1), markdownRanges.get(1)); | ||
} | ||
|
||
@Test | ||
public void testOverlapDifferentType() { | ||
List<MarkdownRange> markdownRanges = new ArrayList<>(); | ||
markdownRanges.add(new MarkdownRange("strikethrough", 0, 10, 1)); | ||
markdownRanges.add(new MarkdownRange("emoji", 3, 4, 1)); | ||
|
||
markdownRanges = splitRangesOnEmojis(markdownRanges, "italic"); | ||
|
||
assertEquals(2, markdownRanges.size()); | ||
assertEquals(new MarkdownRange("strikethrough", 0, 10, 1), markdownRanges.get(0)); | ||
assertEquals(new MarkdownRange("emoji", 3, 4, 1), markdownRanges.get(1)); | ||
} | ||
|
||
@Test | ||
public void testSingleOverlap() { | ||
List<MarkdownRange> markdownRanges = new ArrayList<>(); | ||
markdownRanges.add(new MarkdownRange("strikethrough", 0, 10, 1)); | ||
markdownRanges.add(new MarkdownRange("emoji", 3, 4, 1)); // This range should split the strikethrough range | ||
|
||
markdownRanges = splitRangesOnEmojis(markdownRanges, "strikethrough"); | ||
|
||
// Sort is needed because ranges may get mixed while splitting | ||
Collections.sort(markdownRanges, (r1, r2) -> Integer.compare(r1.getStart(), r2.getStart())); | ||
|
||
assertEquals(3, markdownRanges.size()); | ||
assertEquals(new MarkdownRange("strikethrough", 0, 3, 1), markdownRanges.get(0)); | ||
assertEquals(new MarkdownRange("emoji", 3, 4, 1), markdownRanges.get(1)); | ||
assertEquals(new MarkdownRange("strikethrough", 7, 3, 1), markdownRanges.get(2)); | ||
} | ||
|
||
@Test | ||
public void testMultipleOverlapsMultipleTypes() { | ||
List<MarkdownRange> markdownRanges = new ArrayList<>(); | ||
markdownRanges.add(new MarkdownRange("italic", 0, 20, 1)); | ||
markdownRanges.add(new MarkdownRange("strikethrough", 2, 12, 1)); | ||
markdownRanges.add(new MarkdownRange("emoji", 3, 1, 1)); | ||
markdownRanges.add(new MarkdownRange("emoji", 8, 2, 1)); | ||
markdownRanges.add(new MarkdownRange("strikethrough", 22, 5, 1)); | ||
|
||
markdownRanges = splitRangesOnEmojis(markdownRanges, "strikethrough"); | ||
|
||
// Sort is needed because ranges may get mixed while splitting | ||
Collections.sort(markdownRanges, (r1, r2) -> Integer.compare(r1.getStart(), r2.getStart())); | ||
|
||
assertEquals(7, markdownRanges.size()); | ||
assertEquals(new MarkdownRange("italic", 0, 20, 1), markdownRanges.get(0)); | ||
assertEquals(new MarkdownRange("strikethrough", 2, 1, 1), markdownRanges.get(1)); | ||
assertEquals(new MarkdownRange("emoji", 3, 1, 1), markdownRanges.get(2)); | ||
assertEquals(new MarkdownRange("strikethrough", 4, 4, 1), markdownRanges.get(3)); | ||
assertEquals(new MarkdownRange("emoji", 8, 2, 1), markdownRanges.get(4)); | ||
assertEquals(new MarkdownRange("strikethrough", 10, 4, 1), markdownRanges.get(5)); | ||
assertEquals(new MarkdownRange("strikethrough", 22, 5, 1), markdownRanges.get(6)); | ||
} | ||
} |