aboutsummaryrefslogtreecommitdiff
path: root/meta/forbidden_words_test.go
blob: 4323a4cfebd5f621aacadbab8fb35a0803d38d4d (plain)
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
// Copyright (C) 2021 The Syncthing Authors.
//
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this file,
// You can obtain one at https://mozilla.org/MPL/2.0/.

package meta

import (
	"bytes"
	"os"
	"path/filepath"
	"strings"
	"testing"
)

// Checks for forbidden words in all .go files
func TestForbiddenWords(t *testing.T) {
	checkDirs := []string{"../cmd", "../lib", "../test", "../script"}
	forbiddenWords := []string{
		`"io/ioutil"`, // deprecated and should not be imported
	}

	for _, dir := range checkDirs {
		err := filepath.Walk(dir, func(path string, info os.FileInfo, err error) error {
			if err != nil {
				return err
			}
			if path == ".git" {
				return filepath.SkipDir
			}
			if filepath.Ext(path) != ".go" || strings.HasSuffix(path, ".pb.go") {
				return nil
			}

			bs, err := os.ReadFile(path)
			if err != nil {
				return nil
			}

			for _, word := range forbiddenWords {
				if bytes.Contains(bs, []byte(word)) {
					t.Errorf("%s: forbidden word %q", path, word)
				}
			}
			return nil
		})
		if err != nil {
			t.Fatal(err)
		}
	}
}