-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathintegration_test.go
142 lines (116 loc) · 3.16 KB
/
integration_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
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
package eclint_test
import (
"context"
"fmt"
"testing"
"gitlab.com/greut/eclint"
)
func TestLintSimple(t *testing.T) {
ctx := context.TODO()
for _, err := range eclint.Lint(ctx, "testdata/simple/simple.txt") {
if err != nil {
t.Errorf("no errors where expected, got %s", err)
}
}
}
func TestLintMissing(t *testing.T) {
ctx := context.TODO()
errs := eclint.Lint(ctx, "testdata/missing/file")
if len(errs) == 0 {
t.Error("an error was expected, got none")
}
for _, err := range errs {
if err == nil {
t.Error("an error was expected")
}
}
}
func TestLintInvalid(t *testing.T) {
ctx := context.TODO()
errs := eclint.Lint(ctx, "testdata/invalid/.editorconfig")
if len(errs) == 0 {
t.Error("an error was expected, got none")
}
for _, err := range errs {
if err == nil {
t.Error("an error was expected")
}
}
}
func TestBlockCommentValidSpec(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"a", "b"} {
for _, err := range eclint.Lint(ctx, fmt.Sprintf("./testdata/block_comments/%s", f)) {
if err != nil {
t.Fatalf("no errors where expected, got %s", err)
}
}
}
}
func TestBlockCommentInvalidSpec(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"c"} {
errs := eclint.Lint(ctx, fmt.Sprintf("./testdata/block_comments/%s", f))
if len(errs) == 0 {
t.Errorf("one error was expected, got none")
}
}
}
func TestLintCharset(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"ascii", "ascii2", "iso-8859-1", "utf8"} {
for _, err := range eclint.Lint(ctx, fmt.Sprintf("./testdata/charset/%s.txt", f)) {
if err != nil {
t.Errorf("no errors where expected, got %s", err)
}
}
}
}
func TestLintImages(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"edcon_tool.png", "edcon_tool.pdf", "hello.txt.gz"} {
for _, err := range eclint.Lint(ctx, fmt.Sprintf("./testdata/images/%s", f)) {
if err != nil {
t.Fatalf("no errors where expected, got %s", err)
}
}
}
}
func TestMaxLineLengthValidSpec(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"a", "b"} {
for _, err := range eclint.Lint(ctx, fmt.Sprintf("./testdata/max_line_length/%s", f)) {
if err != nil {
t.Fatalf("no errors where expected, got %s", err)
}
}
}
}
func TestMaxLineLengthInvalidSpec(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"c"} {
errs := eclint.Lint(ctx, fmt.Sprintf("./testdata/max_line_length/%s", f))
if len(errs) == 0 {
t.Errorf("one error was expected, got none")
}
}
}
func TestInsertFinalNewlineSpec(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"with_final_newline.txt", "no_final_newline.md"} {
for _, err := range eclint.Lint(ctx, fmt.Sprintf("./testdata/insert_final_newline/%s", f)) {
if err != nil {
t.Fatalf("no errors where expected, got %s", err)
}
}
}
}
func TestInsertFinalNewlineInvalidSpec(t *testing.T) {
ctx := context.TODO()
for _, f := range []string{"no_final_newline.txt", "with_final_newline.md"} {
errs := eclint.Lint(ctx, fmt.Sprintf("./testdata/insert_final_newline/%s", f))
if len(errs) == 0 {
t.Errorf("one error was expected, got none")
}
}
}