forked from ossf/scorecard
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathoptions_test.go
122 lines (118 loc) · 3.22 KB
/
options_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
// Copyright 2020 OpenSSF Scorecard Authors
//
// 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
//
// http://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 options implements Scorecard options.
package options
import (
"os"
"testing"
)
// Cannot run parallel tests because of the ENV variables.
// nolint
func TestOptions_Validate(t *testing.T) {
type fields struct {
Repo string
Local string
Commit string
LogLevel string
Format string
NPM string
PyPI string
RubyGems string
Nuget string
PolicyFile string
ResultsFile string
ChecksToRun []string
Metadata []string
ShowDetails bool
EnableSarif bool
EnableScorecardV6 bool
}
tests := []struct {
name string
fields fields
wantErr bool
}{
{
name: "No options are turned on",
fields: fields{},
wantErr: true,
},
{
name: "format sarif but the enable sarif flag is not set",
fields: fields{
Format: "sarif",
},
wantErr: true,
},
{
name: "format sarif and the enable sarif flag is set",
fields: fields{
Repo: "github.com/oss/scorecard",
Commit: "HEAD",
Format: "sarif",
EnableSarif: true,
PolicyFile: "testdata/policy.yaml",
},
wantErr: false,
},
{
name: "format sarif and the disabled but the policy file is set",
fields: fields{
Repo: "github.com/oss/scorecard",
Commit: "HEAD",
PolicyFile: "testdata/policy.yaml",
},
wantErr: true,
},
{
name: "format raw is not supported when V6 is not enabled",
fields: fields{
Repo: "github.com/oss/scorecard",
Commit: "HEAD",
Format: "raw",
},
wantErr: true,
},
}
for _, tt := range tests {
tt := tt
t.Run(tt.name, func(t *testing.T) {
o := &Options{
Repo: tt.fields.Repo,
Local: tt.fields.Local,
Commit: tt.fields.Commit,
LogLevel: tt.fields.LogLevel,
Format: tt.fields.Format,
NPM: tt.fields.NPM,
PyPI: tt.fields.PyPI,
RubyGems: tt.fields.RubyGems,
Nuget: tt.fields.Nuget,
PolicyFile: tt.fields.PolicyFile,
ResultsFile: tt.fields.ResultsFile,
ChecksToRun: tt.fields.ChecksToRun,
Metadata: tt.fields.Metadata,
ShowDetails: tt.fields.ShowDetails,
EnableSarif: tt.fields.EnableSarif,
EnableScorecardV6: tt.fields.EnableScorecardV6,
}
if o.EnableSarif {
os.Setenv(EnvVarEnableSarif, "1")
defer os.Unsetenv(EnvVarEnableSarif)
}
if err := o.Validate(); (err != nil) != tt.wantErr {
t.Errorf("Options.Validate() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}