forked from xoofx/markdig
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Added line count check to avoid out of bounds
- Loading branch information
Showing
2 changed files
with
61 additions
and
3 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
using Markdig.Helpers; | ||
using System.Text; | ||
|
||
namespace Markdig.Tests; | ||
|
||
[TestFixture] | ||
public class TestStringLineGroup | ||
{ | ||
private static string ToString(ICharIterator text) | ||
{ | ||
var chars = new StringBuilder(); | ||
while (text.CurrentChar != '\0') | ||
{ | ||
chars.Append(text.CurrentChar); | ||
text.NextChar(); | ||
} | ||
return chars.ToString(); | ||
} | ||
|
||
[Test] | ||
public void TestStringLineGroupCharIteratorAtCapacity() | ||
{ | ||
string str = "ABCDEFGHI"; | ||
var text = new StringLineGroup(1) | ||
{ | ||
// Will store the following line at capacity | ||
new StringSlice(str, NewLine.CarriageReturnLineFeed) { Start = 0, End = 2 }, | ||
}; | ||
|
||
var iterator = text.ToCharIterator(); | ||
var chars = ToString(iterator); | ||
TextAssert.AreEqual("ABC\r\n", chars.ToString()); | ||
TextAssert.AreEqual("ABC", text.ToString()); | ||
} | ||
|
||
[Test] | ||
public void TestStringLineGroupCharIteratorForcingIncreaseCapacity() | ||
{ | ||
string str = "ABCDEFGHI"; | ||
var text = new StringLineGroup(1) | ||
{ | ||
// Will store the following line at capacity | ||
new StringSlice(str, NewLine.CarriageReturnLineFeed) { Start = 0, End = 2 }, | ||
|
||
// Will force increase capacity to 2 and store the line at capacity | ||
new StringSlice(str, NewLine.CarriageReturnLineFeed) { Start = 3, End = 3 }, | ||
}; | ||
|
||
var iterator = text.ToCharIterator(); | ||
var chars = ToString(iterator); | ||
TextAssert.AreEqual("ABC\r\nD\r\n", chars.ToString()); | ||
TextAssert.AreEqual("ABC\r\nD", text.ToString()); | ||
} | ||
|
||
} |
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