scorecard/options/options_test.go
dependabot[bot] b31449017e
🌱 Bump github.com/golangci/golangci-lint from 1.55.2 to 1.56.1 in /tools (#3867)
* 🌱 Bump github.com/golangci/golangci-lint in /tools

Bumps [github.com/golangci/golangci-lint](https://github.com/golangci/golangci-lint) from 1.55.2 to 1.56.1.
- [Release notes](https://github.com/golangci/golangci-lint/releases)
- [Changelog](https://github.com/golangci/golangci-lint/blob/master/CHANGELOG.md)
- [Commits](https://github.com/golangci/golangci-lint/compare/v1.55.2...v1.56.1)

---
updated-dependencies:
- dependency-name: github.com/golangci/golangci-lint
  dependency-type: direct:production
  update-type: version-update:semver-minor
...

Signed-off-by: dependabot[bot] <support@github.com>

* autofix linter errors with make fix-linter

Signed-off-by: Spencer Schrock <sschrock@google.com>

* move musttag nolint directives to encode location

this was changed in v0.8.0 of the musttag linter.

Signed-off-by: Spencer Schrock <sschrock@google.com>

---------

Signed-off-by: dependabot[bot] <support@github.com>
Signed-off-by: Spencer Schrock <sschrock@google.com>
Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com>
Co-authored-by: Spencer Schrock <sschrock@google.com>
2024-02-09 10:53:24 -08:00

119 lines
3.1 KiB
Go

// 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 (
"testing"
)
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 {
t.Setenv(EnvVarEnableSarif, "1")
}
if err := o.Validate(); (err != nil) != tt.wantErr {
t.Errorf("Options.Validate() error = %v, wantErr %v", err, tt.wantErr)
}
})
}
}