|
| 1 | +from selfie_lib import LineReader |
| 2 | + |
| 3 | +def test_should_find_unix_separator_from_binary(): |
| 4 | + reader = LineReader.for_binary(b"This is a new line\n") |
| 5 | + assert reader.unix_newlines() is True |
| 6 | + assert reader.read_line() == "This is a new line" |
| 7 | + |
| 8 | +def test_should_find_windows_separator_from_binary(): |
| 9 | + reader = LineReader.for_binary(b"This is a new line\r\n") |
| 10 | + assert reader.unix_newlines() is False |
| 11 | + assert reader.read_line() == "This is a new line" |
| 12 | + |
| 13 | +def test_should_find_unix_separator_from_string(): |
| 14 | + reader = LineReader.for_string("This is a new line\n") |
| 15 | + assert reader.unix_newlines() is True |
| 16 | + assert reader.read_line() == "This is a new line" |
| 17 | + |
| 18 | +def test_should_find_windows_separator_from_string(): |
| 19 | + reader = LineReader.for_string("This is a new line\r\n") |
| 20 | + assert reader.unix_newlines() is False |
| 21 | + assert reader.read_line() == "This is a new line" |
| 22 | + |
| 23 | +def test_should_get_unix_line_separator_when_there_is_none(): |
| 24 | + reader = LineReader.for_binary(b"This is a new line") |
| 25 | + assert reader.unix_newlines() is True |
| 26 | + assert reader.read_line() == "This is a new line" |
| 27 | + |
| 28 | +def test_should_read_next_line_without_problem(): |
| 29 | + reader = LineReader.for_binary(b"First\r\nSecond\r\n") |
| 30 | + assert reader.unix_newlines() is False |
| 31 | + assert reader.read_line() == "First" |
| 32 | + assert reader.unix_newlines() is False |
| 33 | + assert reader.read_line() == "Second" |
| 34 | + assert reader.unix_newlines() is False |
| 35 | + |
| 36 | +def test_should_use_first_line_separator_and_ignore_next(): |
| 37 | + reader = LineReader.for_binary(b"First\r\nAnother separator\n") |
| 38 | + assert reader.unix_newlines() is False |
| 39 | + assert reader.read_line() == "First" |
| 40 | + assert reader.unix_newlines() is False |
| 41 | + assert reader.read_line() == "Another separator" |
| 42 | + assert reader.unix_newlines() is False |
0 commit comments