-
Notifications
You must be signed in to change notification settings - Fork 381
/
Copy pathmodule7_test.go
68 lines (54 loc) · 1.27 KB
/
module7_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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
package module7
import (
"bufio"
"log"
"os"
"strings"
"testing"
)
func TestModule7gogenerate(t *testing.T) {
found := OpenFileAndFindString("module7.go", "//go:generate goimports -w module7_code.go")
if !found {
t.Errorf("proper use of `goimports` for `module7_code.go` is not found")
}
}
func TestModule7Import(t *testing.T) {
found := OpenFileAndFindString("module7_code.go", "import (")
if !found {
t.Errorf("import not found")
}
}
func TestModule7ImportFmt(t *testing.T) {
found := OpenFileAndFindString("module7_code.go", " \"fmt\"")
if !found {
t.Errorf("package 'fmt' not imported")
}
}
func TestModule7ImportRuntime(t *testing.T) {
found := OpenFileAndFindString("module7_code.go", " \"runtime\"")
if !found {
t.Errorf("package 'runtime' not imported")
}
}
// OpenFileAndFindString opens a file and return if the given string is found or not
func OpenFileAndFindString(filename string, expected string) bool {
f, err := os.Open(filename)
if err != nil {
log.Fatal(err)
}
defer f.Close()
scanner := bufio.NewScanner(f)
scanner.Split(bufio.ScanLines)
for scanner.Scan() {
t := scanner.Text()
trimmed := strings.Trim(t, " ")
if trimmed == "" {
continue
}
// matching logic
if trimmed == expected {
return true
}
}
return false
}