mirror of
https://github.com/cheat/cheat.git
synced 2024-11-01 05:31:01 +01:00
bc623da74b
Dramatically improves the usefulness of `--search` by outputting "chunked" results. This removes the need (usually) to search and then manually open a cheatsheet.
94 lines
2.0 KiB
Go
94 lines
2.0 KiB
Go
package sheet
|
|
|
|
import (
|
|
"reflect"
|
|
"regexp"
|
|
"testing"
|
|
)
|
|
|
|
// TestSearchNoMatch ensures that the expected output is returned when no
|
|
// matches are found
|
|
func TestSearchNoMatch(t *testing.T) {
|
|
|
|
// mock a cheatsheet
|
|
sheet := Sheet{
|
|
Text: "The quick brown fox\njumped over\nthe lazy dog.",
|
|
}
|
|
|
|
// compile the search regex
|
|
reg, err := regexp.Compile("(?i)foo")
|
|
if err != nil {
|
|
t.Errorf("failed to compile regex: %v", err)
|
|
}
|
|
|
|
// search the sheet
|
|
matches := sheet.Search(reg)
|
|
|
|
// assert that no matches were found
|
|
if matches != "" {
|
|
t.Errorf("failure: expected no matches: got: %s", matches)
|
|
}
|
|
}
|
|
|
|
// TestSearchSingleMatch asserts that the expected output is returned
|
|
// when a single match is returned
|
|
func TestSearchSingleMatch(t *testing.T) {
|
|
|
|
// mock a cheatsheet
|
|
sheet := Sheet{
|
|
Text: "The quick brown fox\njumped over\n\nthe lazy dog.",
|
|
}
|
|
|
|
// compile the search regex
|
|
reg, err := regexp.Compile("(?i)fox")
|
|
if err != nil {
|
|
t.Errorf("failed to compile regex: %v", err)
|
|
}
|
|
|
|
// search the sheet
|
|
matches := sheet.Search(reg)
|
|
|
|
// specify the expected results
|
|
want := "The quick brown fox\njumped over"
|
|
|
|
// assert that the correct matches were returned
|
|
if matches != want {
|
|
t.Errorf(
|
|
"failed to return expected matches: want:\n%s, got:\n%s",
|
|
want,
|
|
matches,
|
|
)
|
|
}
|
|
}
|
|
|
|
// TestSearchMultiMatch asserts that the expected output is returned
|
|
// when a multiple matches are returned
|
|
func TestSearchMultiMatch(t *testing.T) {
|
|
|
|
// mock a cheatsheet
|
|
sheet := Sheet{
|
|
Text: "The quick brown fox\n\njumped over\n\nthe lazy dog.",
|
|
}
|
|
|
|
// compile the search regex
|
|
reg, err := regexp.Compile("(?i)the")
|
|
if err != nil {
|
|
t.Errorf("failed to compile regex: %v", err)
|
|
}
|
|
|
|
// search the sheet
|
|
matches := sheet.Search(reg)
|
|
|
|
// specify the expected results
|
|
want := "The quick brown fox\n\nthe lazy dog."
|
|
|
|
// assert that the correct matches were returned
|
|
if !reflect.DeepEqual(matches, want) {
|
|
t.Errorf(
|
|
"failed to return expected matches: want:\n%s, got:\n%s",
|
|
want,
|
|
matches,
|
|
)
|
|
}
|
|
}
|