1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706
|
package reader
import (
"math"
"os"
"os/exec"
"path"
"runtime"
"strconv"
"strings"
"testing"
"time"
"github.com/alecthomas/chroma/v2"
"github.com/alecthomas/chroma/v2/formatters"
"github.com/alecthomas/chroma/v2/lexers"
"github.com/alecthomas/chroma/v2/styles"
log "github.com/sirupsen/logrus"
"gotest.tools/v3/assert"
"github.com/walles/moor/v2/internal/linemetadata"
)
const samplesDir = "../../sample-files"
func init() {
// Info logs clutter at least benchmark output
log.SetLevel(log.WarnLevel)
}
func testGetLineCount(t *testing.T, reader *ReaderImpl) {
if strings.Contains(*reader.DisplayName, "compressed") {
// We are no good at counting lines of compressed files, never mind
return
}
cmd := exec.Command("wc", "-l", *reader.FileName)
output, err := cmd.CombinedOutput()
if err != nil {
t.Error("Error calling wc -l to count lines of", *reader.FileName, err)
}
wcNumberString := strings.Split(strings.TrimSpace(string(output)), " ")[0]
wcLineCount, err := strconv.Atoi(wcNumberString)
if err != nil {
t.Error("Error counting lines of", *reader.FileName, err)
}
// wc -l under-counts by 1 if the file doesn't end in a newline
rawBytes, err := os.ReadFile(*reader.FileName)
if err == nil && len(rawBytes) > 0 && rawBytes[len(rawBytes)-1] != '\n' {
wcLineCount++
}
if reader.GetLineCount() != wcLineCount {
t.Errorf("Got %d lines from the reader but %d lines from wc -l: <%s>",
reader.GetLineCount(), wcLineCount, *reader.FileName)
}
countLinesCount, err := countLines(*reader.FileName)
assert.NilError(t, err)
if countLinesCount != uint64(wcLineCount) {
t.Errorf("Got %d lines from wc -l, but %d lines from our countLines() function", wcLineCount, countLinesCount)
}
}
func firstLine(inputLines InputLines) linemetadata.Index {
return inputLines.Lines[0].Index
}
func testGetLines(t *testing.T, reader *ReaderImpl) {
lines := reader.GetLines(linemetadata.Index{}, 10)
if len(lines.Lines) > 10 {
t.Errorf("Asked for 10 lines, got too many: %d", len(lines.Lines))
}
if len(lines.Lines) < 10 {
// No good plan for how to test short files, more than just
// querying them, which we just did
return
}
// Test clipping at the end
lines = reader.GetLines(linemetadata.IndexMax(), 10)
if len(lines.Lines) != 10 {
t.Errorf("Asked for 10 lines but got %d", len(lines.Lines))
return
}
startOfLastSection := firstLine(lines)
lines = reader.GetLines(startOfLastSection, 10)
if firstLine(lines) != startOfLastSection {
t.Errorf("Expected start line %d when asking for the last 10 lines, got %s",
startOfLastSection, firstLine(lines).Format())
return
}
if len(lines.Lines) != 10 {
t.Errorf("Expected 10 lines when asking for the last 10 lines, got %d",
len(lines.Lines))
return
}
lines = reader.GetLines(startOfLastSection.NonWrappingAdd(1), 10)
if firstLine(lines) != startOfLastSection {
t.Errorf("Expected start line %d when asking for the last+1 10 lines, got %s",
startOfLastSection, firstLine(lines).Format())
return
}
if len(lines.Lines) != 10 {
t.Errorf("Expected 10 lines when asking for the last+1 10 lines, got %d",
len(lines.Lines))
return
}
lines = reader.GetLines(startOfLastSection.NonWrappingAdd(-1), 10)
if firstLine(lines) != startOfLastSection.NonWrappingAdd(-1) {
t.Errorf("Expected start line %d when asking for the last-1 10 lines, got %s",
startOfLastSection, firstLine(lines).Format())
return
}
if len(lines.Lines) != 10 {
t.Errorf("Expected 10 lines when asking for the last-1 10 lines, got %d",
len(lines.Lines))
return
}
}
func getTestFiles(t *testing.T) []string {
files, err := os.ReadDir(samplesDir)
assert.NilError(t, err)
var filenames []string
for _, file := range files {
filenames = append(filenames, path.Join(samplesDir, file.Name()))
}
return filenames
}
func TestGetLines(t *testing.T) {
for _, file := range getTestFiles(t) {
t.Run(file, func(t *testing.T) {
reader, err := NewFromFilename(file, formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
if err != nil {
t.Errorf("Error opening file <%s>: %s", file, err.Error())
return
}
if err := reader.Wait(); err != nil {
t.Errorf("Error reading file <%s>: %s", file, err.Error())
return
}
t.Run(file, func(t *testing.T) {
testGetLines(t, reader)
testGetLineCount(t, reader)
testHighlightingLineCount(t, file)
})
})
}
}
func testHighlightingLineCount(t *testing.T, filenameWithPath string) {
// This won't work on compressed files
if strings.HasSuffix(filenameWithPath, ".xz") {
return
}
if strings.HasSuffix(filenameWithPath, ".bz2") {
return
}
if strings.HasSuffix(filenameWithPath, ".gz") {
return
}
if strings.HasSuffix(filenameWithPath, ".zst") {
return
}
if strings.HasSuffix(filenameWithPath, ".zstd") {
return
}
// Load the unformatted file
rawBytes, err := os.ReadFile(filenameWithPath)
assert.NilError(t, err)
rawContents := string(rawBytes)
// Count its lines
rawLinefeedsCount := strings.Count(rawContents, "\n")
rawRunes := []rune(rawContents)
rawFileEndsWithNewline := true // Special case empty files
if len(rawRunes) > 0 {
rawFileEndsWithNewline = rawRunes[len(rawRunes)-1] == '\n'
}
rawLinesCount := rawLinefeedsCount
if !rawFileEndsWithNewline {
rawLinesCount++
}
// Then load the same file using one of our Readers
reader, err := NewFromFilename(filenameWithPath, formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
err = reader.Wait()
assert.NilError(t, err)
highlightedLinesCount := reader.GetLineCount()
assert.Equal(t, rawLinesCount, highlightedLinesCount)
}
func TestGetLongLine(t *testing.T) {
file := samplesDir + "/very-long-line.txt"
reader, err := NewFromFilename(file, formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
assert.NilError(t, reader.Wait())
lines := reader.GetLines(linemetadata.Index{}, 5)
assert.Equal(t, firstLine(lines), linemetadata.Index{})
assert.Equal(t, len(lines.Lines), 1)
line := lines.Lines[0]
assert.Assert(t, strings.HasPrefix(line.Plain(), "1 2 3 4"), "<%s>", line.Plain())
assert.Assert(t, strings.HasSuffix(line.Plain(), "0123456789"), line.Plain())
assert.Equal(t, len(line.Plain()), 100021)
}
func getReaderWithLineCount(totalLines int) *ReaderImpl {
return NewFromTextForTesting("", strings.Repeat("x\n", totalLines))
}
func testStatusText(t *testing.T, fromLine linemetadata.Index, toLine linemetadata.Index, totalLines int, expected string) {
testMe := getReaderWithLineCount(totalLines)
linesRequested := fromLine.CountLinesTo(toLine)
lines := testMe.GetLines(fromLine, linesRequested)
statusText := lines.StatusText
assert.Equal(t, statusText, expected)
}
func TestStatusText(t *testing.T) {
testStatusText(t, linemetadata.Index{}, linemetadata.IndexFromOneBased(10), 20, "20 lines 50%")
testStatusText(t, linemetadata.Index{}, linemetadata.IndexFromOneBased(5), 5, "5 lines 100%")
testStatusText(t,
linemetadata.IndexFromOneBased(998),
linemetadata.IndexFromOneBased(999),
1000,
"1000 lines 99%")
testStatusText(t, linemetadata.Index{}, linemetadata.Index{}, 0, "<empty>")
testStatusText(t, linemetadata.Index{}, linemetadata.Index{}, 1, "1 line 100%")
// Test with filename
testMe, err := NewFromFilename(samplesDir+"/empty", formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
assert.NilError(t, testMe.Wait())
line := testMe.GetLines(linemetadata.Index{}, 0)
if line.Lines != nil {
t.Error("line.lines is should have been nil when reading from an empty stream")
}
assert.Equal(t, line.FilenameText, "empty")
assert.Equal(t, line.StatusText, ": <empty>")
}
func testCompressedFile(t *testing.T, filename string) {
filenameWithPath := path.Join(samplesDir, filename)
reader, e := NewFromFilename(filenameWithPath, formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
if e != nil {
t.Errorf("Error opening file <%s>: %s", filenameWithPath, e.Error())
panic(e)
}
assert.NilError(t, reader.Wait())
lines := reader.GetLines(linemetadata.Index{}, 5)
assert.Equal(t, lines.Lines[0].Plain(), "This is a compressed file", "%s", filename)
}
func TestCompressedFiles(t *testing.T) {
testCompressedFile(t, "compressed.txt.gz")
testCompressedFile(t, "compressed.txt.bz2")
testCompressedFile(t, "compressed.txt.xz")
testCompressedFile(t, "compressed.txt.zst")
testCompressedFile(t, "compressed.txt.zstd")
}
func TestReadFileDoneNoHighlighting(t *testing.T) {
testMe, err := NewFromFilename(samplesDir+"/empty",
formatters.TTY, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
assert.NilError(t, testMe.Wait())
}
func TestReadFileDoneYesHighlighting(t *testing.T) {
testMe, err := NewFromFilename("reader_test.go",
formatters.TTY, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
assert.NilError(t, testMe.Wait())
}
func TestReadStreamDoneNoHighlighting(t *testing.T) {
testMe, err := NewFromStream("", strings.NewReader("Johan"), nil, ReaderOptions{Style: &chroma.Style{}})
assert.NilError(t, err)
assert.NilError(t, testMe.Wait())
}
func TestReadStreamDoneYesHighlighting(t *testing.T) {
testMe, err := NewFromStream("",
strings.NewReader("Johan"),
formatters.TTY, ReaderOptions{Lexer: lexers.EmacsLisp, Style: styles.Get("native")})
assert.NilError(t, err)
assert.NilError(t, testMe.Wait())
}
func TestReadTextDone(t *testing.T) {
testMe := NewFromTextForTesting("", "Johan")
assert.NilError(t, testMe.Wait())
}
// JSON should be auto detected and formatted
func TestFormatJson(t *testing.T) {
// Note the space after "key" to verify formatting actually happens
jsonStream := strings.NewReader(`{"key" :"value"}`)
testMe, err := NewFromStream(
"JSON test",
jsonStream,
formatters.TTY,
ReaderOptions{
Style: styles.Get("native"),
ShouldFormat: true,
})
assert.NilError(t, err)
assert.NilError(t, testMe.Wait())
lines := testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, lines.Lines[0].Plain(), "{")
assert.Equal(t, lines.Lines[1].Plain(), ` "key": "value"`)
assert.Equal(t, lines.Lines[2].Plain(), "}")
assert.Equal(t, len(lines.Lines), 3)
}
func TestFormatJsonArray(t *testing.T) {
// Note the space after "key" to verify formatting actually happens
jsonStream := strings.NewReader(`[{"key" :"value"}]`)
testMe, err := NewFromStream(
"JSON test",
jsonStream,
formatters.TTY,
ReaderOptions{
Style: styles.Get("native"),
ShouldFormat: true,
})
assert.NilError(t, err)
assert.NilError(t, testMe.Wait())
lines := testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, lines.Lines[0].Plain(), "[")
assert.Equal(t, lines.Lines[1].Plain(), " {")
assert.Equal(t, lines.Lines[2].Plain(), ` "key": "value"`)
assert.Equal(t, lines.Lines[3].Plain(), " }")
assert.Equal(t, lines.Lines[4].Plain(), "]")
assert.Equal(t, len(lines.Lines), 5)
}
// If people keep appending to the currently opened file we should display those
// changes.
func TestReadUpdatingFile(t *testing.T) {
// Make a temp file containing one line of text, ending with a newline
file, err := os.CreateTemp("", "moor-TestReadUpdatingFile-*.txt")
assert.NilError(t, err)
defer os.Remove(file.Name()) //nolint:errcheck
const firstLineString = "First line\n"
_, err = file.WriteString(firstLineString)
assert.NilError(t, err)
// Start a reader on that file
testMe, err := NewFromFilename(file.Name(), formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
// Wait for the reader to finish reading
assert.NilError(t, testMe.Wait())
assert.Equal(t, len([]byte(firstLineString)), int(testMe.bytesCount))
// Verify we got the single line
allLines := testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, len(allLines.Lines), 1)
assert.Equal(t, testMe.GetLineCount(), 1)
assert.Equal(t, allLines.Lines[0].Plain(), "First line")
// Append a line to the file
const secondLineString = "Second line\n"
_, err = file.WriteString(secondLineString)
assert.NilError(t, err)
// Give the reader some time to react
for range 20 {
allLines := testMe.GetLines(linemetadata.Index{}, 10)
if len(allLines.Lines) == 2 {
break
}
time.Sleep(100 * time.Millisecond)
}
// Verify we got the two lines
allLines = testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, len(allLines.Lines), 2, "Expected two lines after adding a second one, got %d", len(allLines.Lines))
assert.Equal(t, testMe.GetLineCount(), 2)
assert.Equal(t, allLines.Lines[0].Plain(), "First line")
assert.Equal(t, allLines.Lines[1].Plain(), "Second line")
assert.Equal(t, int(testMe.bytesCount), len([]byte(firstLineString+secondLineString)))
// Append a third line to the file. We want to verify line 2 didn't just
// succeed due to special handling.
const thirdLineString = "Third line\n"
_, err = file.WriteString(thirdLineString)
assert.NilError(t, err)
// Give the reader some time to react
for i := 0; i < 20; i++ {
allLines = testMe.GetLines(linemetadata.Index{}, 10)
if len(allLines.Lines) == 3 {
break
}
time.Sleep(100 * time.Millisecond)
}
// Verify we got all three lines
allLines = testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, len(allLines.Lines), 3, "Expected three lines after adding a third one, got %d", len(allLines.Lines))
assert.Equal(t, testMe.GetLineCount(), 3)
assert.Equal(t, allLines.Lines[0].Plain(), "First line")
assert.Equal(t, allLines.Lines[1].Plain(), "Second line")
assert.Equal(t, allLines.Lines[2].Plain(), "Third line")
assert.Equal(t, int(testMe.bytesCount), len([]byte(firstLineString+secondLineString+thirdLineString)))
}
// If people keep appending to the currently opened file we should display those
// changes.
//
// This test verifies it with an initially empty file.
func TestReadUpdatingFile_InitiallyEmpty(t *testing.T) {
// Make a temp file containing one line of text, ending with a newline
file, err := os.CreateTemp("", "moor-TestReadUpdatingFile_NoNewlineAtEOF-*.txt")
assert.NilError(t, err)
defer os.Remove(file.Name()) //nolint:errcheck
// Start a reader on that file
testMe, err := NewFromFilename(file.Name(), formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
// Wait for the reader to finish reading
assert.NilError(t, testMe.Wait())
// Verify no lines
allLines := testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, len(allLines.Lines), 0)
assert.Equal(t, testMe.GetLineCount(), 0)
// Append a line to the file
_, err = file.WriteString("Text\n")
assert.NilError(t, err)
// Give the reader some time to react
for i := 0; i < 20; i++ {
allLines := testMe.GetLines(linemetadata.Index{}, 10)
if len(allLines.Lines) == 1 {
break
}
time.Sleep(100 * time.Millisecond)
}
// Verify we got the two lines
allLines = testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, len(allLines.Lines), 1, "Expected one line after adding one, got %d", len(allLines.Lines))
assert.Equal(t, testMe.GetLineCount(), 1)
assert.Equal(t, allLines.Lines[0].Plain(), "Text")
}
// If people keep appending to the currently opened file we should display those
// changes.
//
// This test verifies it with the initial contents not ending with a linefeed.
func TestReadUpdatingFile_HalfLine(t *testing.T) {
// Make a temp file containing one line of text, ending with a newline
file, err := os.CreateTemp("", "moor-TestReadUpdatingFile-*.txt")
assert.NilError(t, err)
defer os.Remove(file.Name()) //nolint:errcheck
_, err = file.WriteString("Start")
assert.NilError(t, err)
// Start a reader on that file
testMe, err := NewFromFilename(file.Name(), formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
// Wait for the reader to finish reading
assert.NilError(t, testMe.Wait())
assert.Equal(t, int(testMe.bytesCount), len([]byte("Start")))
// Append the rest of the line
const secondLineString = ", end\n"
_, err = file.WriteString(secondLineString)
assert.NilError(t, err)
// Give the reader some time to react
for i := 0; i < 20; i++ {
allLines := testMe.GetLines(linemetadata.Index{}, 10)
if len(allLines.Lines) == 2 {
break
}
time.Sleep(100 * time.Millisecond)
}
// Verify we got the two lines
allLines := testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, len(allLines.Lines), 1, "Still expecting one line, got %d", len(allLines.Lines))
assert.Equal(t, testMe.GetLineCount(), 1)
assert.Equal(t, allLines.Lines[0].Plain(), "Start, end")
assert.Equal(t, int(testMe.bytesCount), len([]byte("Start, end\n")))
}
// If people keep appending to the currently opened file we should display those
// changes.
//
// This test verifies it with the initial contents ending in the middle of an UTF-8 character.
func TestReadUpdatingFile_HalfUtf8(t *testing.T) {
// Make a temp file containing one line of text, ending with a newline
file, err := os.CreateTemp("", "moor-TestReadUpdatingFile-*.txt")
assert.NilError(t, err)
defer os.Remove(file.Name()) //nolint:errcheck
// Write "h" and half an "ä" to the file
_, err = file.Write([]byte("här"[0:2]))
assert.NilError(t, err)
// Start a reader on that file
testMe, err := NewFromFilename(file.Name(), formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(t, err)
// Wait for the reader to finish reading
assert.NilError(t, testMe.Wait())
assert.Equal(t, testMe.GetLineCount(), 1)
// Append the rest of the UTF-8 character
_, err = file.WriteString("här"[2:])
assert.NilError(t, err)
// Give the reader some time to react
for range 20 {
allLines := testMe.GetLines(linemetadata.Index{}, 10)
if len(allLines.Lines) == 2 {
break
}
time.Sleep(100 * time.Millisecond)
}
// Verify we got the two lines
allLines := testMe.GetLines(linemetadata.Index{}, 10)
assert.Equal(t, len(allLines.Lines), 1, "Still expecting one line, got %d", len(allLines.Lines))
assert.Equal(t, testMe.GetLineCount(), 1)
assert.Equal(t, allLines.Lines[0].Plain(), "här")
assert.Equal(t, int(testMe.bytesCount), len([]byte("här")))
}
func TestClipRangeToLength(t *testing.T) {
// Within bounds
i0, i1 := clipRangeToLength(linemetadata.Index{}, 1, 20)
assert.Equal(t, i0, 0)
assert.Equal(t, i1, 0)
// Touching the end, still within bounds
i0, i1 = clipRangeToLength(linemetadata.Index{}, 1, 0)
assert.Equal(t, i0, 0)
assert.Equal(t, i1, 0)
// Overflow, push down to indices 6, 7, 8
i0, i1 = clipRangeToLength(linemetadata.IndexFromOneBased(100), 3, 8)
assert.Equal(t, i0, 6)
assert.Equal(t, i1, 8)
// Overflow, push down and clip to indices 0, 1
i0, i1 = clipRangeToLength(linemetadata.IndexFromOneBased(100), 3, 1)
assert.Equal(t, i0, 0)
assert.Equal(t, i1, 1)
// Maxed out start
i0, i1 = clipRangeToLength(linemetadata.IndexMax(), 1, 0)
assert.Equal(t, i0, 0)
assert.Equal(t, i1, 0)
// Maxed out count
i0, i1 = clipRangeToLength(linemetadata.Index{}, math.MaxInt, 0)
assert.Equal(t, i0, 0)
assert.Equal(t, i1, 0)
// Maxed out start and count
i0, i1 = clipRangeToLength(linemetadata.IndexMax(), math.MaxInt, 3)
assert.Equal(t, i0, 0)
assert.Equal(t, i1, 3)
}
// How long does it take to read a file?
//
// This can be slow due to highlighting.
//
// Run with: go test -run='^$' -bench=. . ./...
func BenchmarkReaderDone(b *testing.B) {
filename := "reader.go" // This is our longest .go file
b.ResetTimer()
for n := 0; n < b.N; n++ {
// This is our longest .go file
readMe, err := NewFromFilename(filename, formatters.TTY16m, ReaderOptions{Style: styles.Get("native")})
assert.NilError(b, err)
assert.NilError(b, readMe.Wait())
assert.NilError(b, readMe.Err)
}
}
// Try loading a large file
func BenchmarkReadLargeFile(b *testing.B) {
// Try loading a file this large
const largeSizeBytes = 35_000_000
// First, create it from something...
inputFilename := "reader.go"
contents, err := os.ReadFile(inputFilename)
assert.NilError(b, err)
testdir := b.TempDir()
largeFileName := testdir + "/large-file"
largeFile, err := os.Create(largeFileName)
assert.NilError(b, err)
totalBytesWritten := 0
for totalBytesWritten < largeSizeBytes {
written, err := largeFile.Write(contents)
assert.NilError(b, err)
totalBytesWritten += written
}
err = largeFile.Close()
assert.NilError(b, err)
// Make sure we don't pause during the benchmark
targetLineCount := largeSizeBytes * 2
b.SetBytes(int64(totalBytesWritten))
// Try making the whole run more predictable
runtime.GC()
b.ResetTimer()
for n := 0; n < b.N; n++ {
readMe, err := NewFromFilename(
largeFileName,
formatters.TTY16m,
ReaderOptions{
Style: styles.Get("native"),
PauseAfterLines: &targetLineCount,
})
assert.NilError(b, err)
<-readMe.MaybeDone
assert.NilError(b, readMe.Wait())
assert.NilError(b, readMe.Err)
}
}
// Count lines in pager.go
func BenchmarkCountLines(b *testing.B) {
// First, get some sample lines...
inputFilename := "reader.go"
contents, err := os.ReadFile(inputFilename)
assert.NilError(b, err)
testdir := b.TempDir()
countFileName := testdir + "/count-file"
countFile, err := os.Create(countFileName)
assert.NilError(b, err)
// Make a large enough test case that a majority of the time is spent
// counting lines, rather than on any counting startup cost.
//
// We used to have 1000 here, but that made the benchmark result fluctuate
// too much. 10_000 seems to provide stable enough results.
for range 10_000 {
_, err := countFile.Write(contents)
assert.NilError(b, err)
}
err = countFile.Close()
assert.NilError(b, err)
b.ResetTimer()
for range b.N {
_, err = countLines(countFileName)
assert.NilError(b, err)
}
}
|