-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
cat_test.go
49 lines (42 loc) · 1.42 KB
/
cat_test.go
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
package cat_test
import (
"fmt"
"strings"
"testing"
"github.com/lu4p/cat"
)
const test = "Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed id ex nec risus venenatis viverra. Cras condimentum dolor vitae dictum rutrum. Etiam viverra sit amet mi at lacinia."
const red = "Restore The Selling Balance. Ad Technology doesn't have to be faceless. Our platform is designed to connect media companies directly to advertisers."
func TestCat(t *testing.T) {
filetypes := []string{".docx", ".odt", ".txt"}
for _, filetype := range filetypes {
txt, err := cat.File("./test/test" + filetype)
if err != nil {
t.Error(filetype, "failed:", err)
}
txt = strings.TrimSpace(txt)
txt = strings.ReplaceAll(txt, "\n", "")
if txt == test {
t.Log(filetype, "success")
} else {
t.Error(filetype, "does not match test: got:", txt, "expected:", test)
}
}
rtf, err := cat.File("./test/ad.rtf")
if err != nil {
t.Error(".rtf failed:", err)
} else if rtf == red {
t.Log(".rtf success")
} else {
t.Log(".rtf does not match test:", rtf, red)
}
_, err = cat.File("./test/nonexistent")
if err == nil {
t.Error("Nonexisting file does not throw error")
}
}
func Example() {
txt, _ := cat.File("./test/test.docx")
fmt.Println(txt)
// Output: Lorem ipsum dolor sit amet, consectetur adipiscing elit. Sed id ex nec risus venenatis viverra. Cras condimentum dolor vitae dictum rutrum. Etiam viverra sit amet mi at lacinia.
}