forked from GoogleCloudPlatform/golang-samples
-
Notifications
You must be signed in to change notification settings - Fork 0
/
badfiles_test.go
151 lines (129 loc) · 3.34 KB
/
badfiles_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
143
144
145
146
147
148
149
150
151
// Copyright 2019 Google LLC
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
// https://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.
package samples
import (
"os"
"path/filepath"
"testing"
"github.com/bmatcuk/doublestar"
"github.com/h2non/filetype"
)
// alwaysBad contains glob patterns that should always be rejected.
var alwaysBad = []string{
"**/*.swp",
}
// allowList contains glob patterns that are acceptable.
var allowList = []string{
// Files that are always good!
"**/*.go",
"**/*.md",
"**/*.yaml",
"**/*.sh",
"**/*.bash",
"**/*.mod",
"**/*.sum",
"**/*.svg",
"**/*.tmpl",
"**/*.css",
"**/*.html",
"**/*.js",
"**/*.sql",
"**/*.dot",
"**/*.proto",
"LICENSE",
"**/*Dockerfile*",
"**/.dockerignore",
"**/Makefile",
".gitignore",
// Primarily ML APIs.
"**/testdata/**/*.jpg",
"**/testdata/**/*.wav",
"**/testdata/**/*.raw",
"**/testdata/**/*.png",
"**/testdata/**/*.txt",
"**/testdata/**/*.csv",
"**/testdata/**/*.mp4",
// Healthcare data.
"healthcare/testdata/dicom_00000001_000.dcm",
"healthcare/testdata/hl7v2message.dat",
// Webrisk samples.
"webrisk/non_existing_path.path",
"webrisk/internal/webrisk_proto/*.proto",
"webrisk/testdata/hashes.gob",
// Endpoints samples.
"endpoints/**/*.proto",
// Cloud Functions codelab picture.
"functions/codelabs/gopher/gophercolor.png",
// Cloud Functions configs.
"functions/ocr/app/config.json",
"functions/slack/config.json",
// Samples that aren't really code. Legacy.
"**/appengine/**/*.txt",
// Test output and configs.
"testing/kokoro/*.cfg",
"**/sponge_log.log",
"**/sponge_log.xml",
// TODO: cruft that should probably be under "testdata".
"appengine_flexible/pubsub/sample_message.json",
"dialogflow/resources/**/*",
"texttospeech/**/*",
"storage/objects/notes.txt",
// GitHub configuration.
".github/blunderbuss.yml",
".github/renovate.json",
".github/CODEOWNERS",
// Getting Started on GCE systemd service file.
"**/gce/**/*.service",
// sampletests testdata.
"testing/sampletests/testdata/raw_log.xml",
}
// Check whether accidental binary files have been checked in.
func TestBadFiles(t *testing.T) {
err := filepath.Walk(".", func(path string, fi os.FileInfo, err error) error {
if err != nil {
return err
}
if fi.IsDir() {
if fi.Name() == ".git" {
return filepath.SkipDir
}
return nil
}
for _, pattern := range alwaysBad {
match, err := doublestar.PathMatch(pattern, path)
if err != nil {
t.Fatalf("bad pattern: %q", pattern)
}
if match {
t.Errorf("Bad file checked in: %v", path)
return nil
}
}
for _, pattern := range allowList {
match, err := doublestar.PathMatch(pattern, path)
if err != nil {
t.Fatalf("bad pattern: %q", pattern)
}
if match {
return nil
}
}
ft, _ := filetype.MatchFile(path)
t.Errorf("Likely bad file checked in: %v. MIME type: %s", path, ft.MIME)
return nil
})
if err != nil {
t.Fatal(err)
}
}