-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathpackageindex_test.go
112 lines (92 loc) · 4.09 KB
/
packageindex_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
// This file is part of Arduino Lint.
//
// Copyright 2020 ARDUINO SA (http://www.arduino.cc/)
//
// This software is released under the GNU General Public License version 3,
// which covers the main part of Arduino Lint.
// The terms of this license can be found at:
// https://www.gnu.org/licenses/gpl-3.0.en.html
//
// You can be released from the requirements of the above licenses by purchasing
// a commercial license. Buying such a license is mandatory if you want to
// modify or otherwise use the software for commercial activities involving the
// Arduino software without disclosing the source code of your own applications.
// To purchase a commercial license, send an email to [email protected].
package rulefunction
import (
"fmt"
"regexp"
"testing"
"github.com/arduino/arduino-lint/internal/project"
"github.com/arduino/arduino-lint/internal/project/projectdata"
"github.com/arduino/arduino-lint/internal/project/projecttype"
"github.com/arduino/arduino-lint/internal/rule/ruleresult"
"github.com/arduino/go-paths-helper"
"github.com/stretchr/testify/assert"
)
var packageIndexesTestDataPath *paths.Path
func init() {
workingDirectory, _ := paths.Getwd()
packageIndexesTestDataPath = workingDirectory.Join("testdata", "packageindexes")
}
type packageIndexRuleFunctionTestTable struct {
testName string
packageIndexFolderName string
expectedRuleResult ruleresult.Type
expectedOutputQuery string
}
func checkPackageIndexRuleFunction(ruleFunction Type, testTables []packageIndexRuleFunctionTestTable, t *testing.T) {
for _, testTable := range testTables {
expectedOutputRegexp := regexp.MustCompile(testTable.expectedOutputQuery)
testProject := project.Type{
Path: packageIndexesTestDataPath.Join(testTable.packageIndexFolderName),
ProjectType: projecttype.PackageIndex,
SuperprojectType: projecttype.PackageIndex,
}
projectdata.Initialize(testProject)
result, output := ruleFunction()
assert.Equal(t, testTable.expectedRuleResult, result, testTable.testName)
assert.True(t, expectedOutputRegexp.MatchString(output), fmt.Sprintf("%s (output: %s, assertion regex: %s)", testTable.testName, output, testTable.expectedOutputQuery))
}
}
func TestPackageIndexMissing(t *testing.T) {
testTables := []packageIndexRuleFunctionTestTable{
{"Missing", "missing", ruleresult.Fail, ""},
{"Present", "valid-package-index", ruleresult.Pass, ""},
}
checkPackageIndexRuleFunction(PackageIndexMissing, testTables, t)
}
func TestPackageIndexFilenameInvalid(t *testing.T) {
testTables := []packageIndexRuleFunctionTestTable{
{"Missing", "missing", ruleresult.NotRun, ""},
{"Valid 3rd party", "3rd-party-filename", ruleresult.Pass, ""},
{"Valid official", "official-filename", ruleresult.Fail, "^package_index.json$"},
{"Invalid", "invalid-filename", ruleresult.Fail, "^invalid-filename.json$"},
}
checkPackageIndexRuleFunction(PackageIndexFilenameInvalid, testTables, t)
}
func TestPackageIndexOfficialFilenameInvalid(t *testing.T) {
testTables := []packageIndexRuleFunctionTestTable{
{"Missing", "missing", ruleresult.NotRun, ""},
{"Valid 3rd party", "3rd-party-filename", ruleresult.Pass, ""},
{"Valid official", "official-filename", ruleresult.Pass, ""},
{"Invalid", "invalid-filename", ruleresult.Fail, "^invalid-filename.json$"},
}
checkPackageIndexRuleFunction(PackageIndexOfficialFilenameInvalid, testTables, t)
}
func TestPackageIndexJSONFormat(t *testing.T) {
testTables := []packageIndexRuleFunctionTestTable{
{"Invalid JSON", "invalid-JSON", ruleresult.Fail, ""},
{"Not valid package index", "invalid-package-index", ruleresult.Pass, ""},
{"Valid package index", "valid-package-index", ruleresult.Pass, ""},
}
checkPackageIndexRuleFunction(PackageIndexJSONFormat, testTables, t)
}
func TestPackageIndexFormat(t *testing.T) {
testTables := []packageIndexRuleFunctionTestTable{
{"Invalid JSON", "invalid-JSON", ruleresult.Fail, ""},
{"Not valid package index", "invalid-package-index", ruleresult.Fail, ""},
{"Valid package index", "valid-package-index", ruleresult.Pass, ""},
}
checkPackageIndexRuleFunction(PackageIndexFormat, testTables, t)
}