-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathsketch_test.go
130 lines (106 loc) · 4.54 KB
/
sketch_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
// 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, either
// version 3 of the License, or (at your option) any later version.
// This license 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"
"os"
"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 sketchesTestDataPath *paths.Path
func init() {
workingDirectory, _ := os.Getwd()
sketchesTestDataPath = paths.New(workingDirectory, "testdata", "sketches")
}
type sketchRuleFunctionTestTable struct {
testName string
sketchFolderName string
expectedRuleResult ruleresult.Type
expectedOutputQuery string
}
func checkSketchRuleFunction(ruleFunction Type, testTables []sketchRuleFunctionTestTable, t *testing.T) {
for _, testTable := range testTables {
expectedOutputRegexp := regexp.MustCompile(testTable.expectedOutputQuery)
testProject := project.Type{
Path: sketchesTestDataPath.Join(testTable.sketchFolderName),
ProjectType: projecttype.Sketch,
SuperprojectType: projecttype.Sketch,
}
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 TestSketchNameMismatch(t *testing.T) {
testTables := []sketchRuleFunctionTestTable{
{"Valid", "Valid", ruleresult.Pass, ""},
{"Name Mismatch", "NameMismatch", ruleresult.Fail, ""},
{"Case Mismatch", "CaseMismatch", ruleresult.Fail, ""},
}
checkSketchRuleFunction(SketchNameMismatch, testTables, t)
}
func TestProhibitedCharactersInSketchFileName(t *testing.T) {
testTables := []sketchRuleFunctionTestTable{
{"Has prohibited characters", "ProhibitedCharactersInFileName", ruleresult.Fail, "^Prohibited CharactersInFileName.h$"},
{"No prohibited characters", "AllowedCharactersInFilenames", ruleresult.Pass, ""},
}
checkSketchRuleFunction(ProhibitedCharactersInSketchFileName, testTables, t)
}
func TestSketchFileNameGTMaxLength(t *testing.T) {
testTables := []sketchRuleFunctionTestTable{
{"Has file name > max length", "FileNameTooLong", ruleresult.Fail, "^FileNameTooLong12345678901234567890123456789012345678901234567890.h$"},
{"File names <= max length", "Valid", ruleresult.Pass, ""},
}
checkSketchRuleFunction(SketchFileNameGTMaxLength, testTables, t)
}
func TestPdeSketchExtension(t *testing.T) {
testTables := []sketchRuleFunctionTestTable{
{"Has .pde", "Pde", ruleresult.Fail, ""},
{"No .pde", "Valid", ruleresult.Pass, ""},
}
checkSketchRuleFunction(PdeSketchExtension, testTables, t)
}
func TestIncorrectSketchSrcFolderNameCase(t *testing.T) {
testTables := []sketchRuleFunctionTestTable{
{"Incorrect case", "IncorrectSrcFolderNameCase", ruleresult.Fail, ""},
{"Correct case", "Valid", ruleresult.Pass, ""},
}
checkSketchRuleFunction(IncorrectSketchSrcFolderNameCase, testTables, t)
}
func TestSketchDotJSONJSONFormat(t *testing.T) {
testTables := []sketchRuleFunctionTestTable{
{"No metadata file", "NoMetadataFile", ruleresult.Skip, ""},
{"Valid", "ValidMetadataFile", ruleresult.Pass, ""},
{"Invalid", "InvalidJSONMetadataFile", ruleresult.Fail, ""},
}
checkSketchRuleFunction(SketchDotJSONJSONFormat, testTables, t)
}
func TestSketchDotJSONFormat(t *testing.T) {
testTables := []sketchRuleFunctionTestTable{
{"No metadata file", "NoMetadataFile", ruleresult.Skip, ""},
{"Valid", "ValidMetadataFile", ruleresult.Pass, ""},
{"Invalid JSON", "InvalidJSONMetadataFile", ruleresult.Fail, ""},
{"Invalid data", "InvalidDataMetadataFile", ruleresult.Fail, ""},
}
checkSketchRuleFunction(SketchDotJSONFormat, testTables, t)
}