mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
bf59a28aba
Co-authored-by: sumeet patil <sumeet.patil@sap.com>
874 lines
35 KiB
Go
874 lines
35 KiB
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package cmd
|
|
|
|
import (
|
|
"strings"
|
|
"testing"
|
|
"time"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/codeql"
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
"github.com/SAP/jenkins-library/pkg/orchestrator"
|
|
"github.com/pkg/errors"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
type codeqlExecuteScanMockUtils struct {
|
|
*mock.ExecMockRunner
|
|
*mock.FilesMock
|
|
*mock.HttpClientMock
|
|
}
|
|
|
|
func newCodeqlExecuteScanTestsUtils() codeqlExecuteScanMockUtils {
|
|
utils := codeqlExecuteScanMockUtils{
|
|
ExecMockRunner: &mock.ExecMockRunner{},
|
|
FilesMock: &mock.FilesMock{},
|
|
HttpClientMock: &mock.HttpClientMock{},
|
|
}
|
|
return utils
|
|
}
|
|
|
|
func TestRunCodeqlExecuteScan(t *testing.T) {
|
|
|
|
influx := &codeqlExecuteScanInflux{}
|
|
|
|
t.Run("Valid CodeqlExecuteScan", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ModulePath: "./"}
|
|
_, err := runCodeqlExecuteScan(&config, nil, newCodeqlExecuteScanTestsUtils(), influx)
|
|
assert.NoError(t, err)
|
|
})
|
|
|
|
t.Run("No auth token passed on upload results", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", UploadResults: true, ModulePath: "./"}
|
|
_, err := runCodeqlExecuteScan(&config, nil, newCodeqlExecuteScanTestsUtils(), influx)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("GitCommitID is NA on upload results", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", UploadResults: true, ModulePath: "./", CommitID: "NA"}
|
|
_, err := runCodeqlExecuteScan(&config, nil, newCodeqlExecuteScanTestsUtils(), influx)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("Custom buildtool", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "custom", Language: "javascript", ModulePath: "./"}
|
|
_, err := runCodeqlExecuteScan(&config, nil, newCodeqlExecuteScanTestsUtils(), influx)
|
|
assert.NoError(t, err)
|
|
})
|
|
|
|
t.Run("Custom buildtool but no language specified", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "custom", ModulePath: "./", GithubToken: "test"}
|
|
_, err := runCodeqlExecuteScan(&config, nil, newCodeqlExecuteScanTestsUtils(), influx)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("Invalid buildtool and no language specified", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "test", ModulePath: "./", GithubToken: "test"}
|
|
_, err := runCodeqlExecuteScan(&config, nil, newCodeqlExecuteScanTestsUtils(), influx)
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("Invalid buildtool but language specified", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "test", Language: "javascript", ModulePath: "./", GithubToken: "test"}
|
|
_, err := runCodeqlExecuteScan(&config, nil, newCodeqlExecuteScanTestsUtils(), influx)
|
|
assert.NoError(t, err)
|
|
})
|
|
}
|
|
|
|
func TestGetGitRepoInfo(t *testing.T) {
|
|
t.Run("Valid https URL1", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("https://github.hello.test/Testing/fortify.git", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
|
|
t.Run("Valid https URL2", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("https://github.hello.test/Testing/fortify", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
t.Run("Valid https URL1 with dots", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("https://github.hello.test/Testing/com.sap.fortify.git", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "com.sap.fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
|
|
t.Run("Valid https URL2 with dots", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("https://github.hello.test/Testing/com.sap.fortify", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "com.sap.fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
t.Run("Valid https URL1 with username and token", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("https://username:token@github.hello.test/Testing/fortify.git", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
|
|
t.Run("Valid https URL2 with username and token", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("https://username:token@github.hello.test/Testing/fortify", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
|
|
t.Run("Invalid https URL as no org/Owner passed", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
assert.Error(t, getGitRepoInfo("https://github.com/fortify", &repoInfo))
|
|
})
|
|
|
|
t.Run("Invalid URL as no protocol passed", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
assert.Error(t, getGitRepoInfo("github.hello.test/Testing/fortify", &repoInfo))
|
|
})
|
|
|
|
t.Run("Valid ssh URL1", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("git@github.hello.test/Testing/fortify.git", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
|
|
t.Run("Valid ssh URL2", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("git@github.hello.test/Testing/fortify", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
t.Run("Valid ssh URL1 with dots", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("git@github.hello.test/Testing/com.sap.fortify.git", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "com.sap.fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
|
|
t.Run("Valid ssh URL2 with dots", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
err := getGitRepoInfo("git@github.hello.test/Testing/com.sap.fortify", &repoInfo)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
assert.Equal(t, "com.sap.fortify", repoInfo.Repo)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
})
|
|
|
|
t.Run("Invalid ssh URL as no org/Owner passed", func(t *testing.T) {
|
|
var repoInfo codeql.RepoInfo
|
|
assert.Error(t, getGitRepoInfo("git@github.com/fortify", &repoInfo))
|
|
})
|
|
}
|
|
|
|
func TestInitGitInfo(t *testing.T) {
|
|
t.Run("Valid URL1", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{Repository: "https://github.hello.test/Testing/codeql.git", AnalyzedRef: "refs/head/branch", CommitID: "abcd1234"}
|
|
repoInfo, err := initGitInfo(&config)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "abcd1234", repoInfo.CommitId)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
assert.Equal(t, "codeql", repoInfo.Repo)
|
|
assert.Equal(t, "refs/head/branch", repoInfo.Ref)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
})
|
|
|
|
t.Run("Valid URL2", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{Repository: "https://github.hello.test/Testing/codeql", AnalyzedRef: "refs/head/branch", CommitID: "abcd1234"}
|
|
repoInfo, err := initGitInfo(&config)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "abcd1234", repoInfo.CommitId)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
assert.Equal(t, "codeql", repoInfo.Repo)
|
|
assert.Equal(t, "refs/head/branch", repoInfo.Ref)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
})
|
|
|
|
t.Run("Valid url with dots URL1", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{Repository: "https://github.hello.test/Testing/com.sap.codeql.git", AnalyzedRef: "refs/head/branch", CommitID: "abcd1234"}
|
|
repoInfo, err := initGitInfo(&config)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "abcd1234", repoInfo.CommitId)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
assert.Equal(t, "com.sap.codeql", repoInfo.Repo)
|
|
assert.Equal(t, "refs/head/branch", repoInfo.Ref)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
})
|
|
|
|
t.Run("Valid url with dots URL2", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{Repository: "https://github.hello.test/Testing/com.sap.codeql", AnalyzedRef: "refs/head/branch", CommitID: "abcd1234"}
|
|
repoInfo, err := initGitInfo(&config)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "abcd1234", repoInfo.CommitId)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
assert.Equal(t, "com.sap.codeql", repoInfo.Repo)
|
|
assert.Equal(t, "refs/head/branch", repoInfo.Ref)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
})
|
|
|
|
t.Run("Valid url with username and token URL1", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{Repository: "https://username:token@github.hello.test/Testing/codeql.git", AnalyzedRef: "refs/head/branch", CommitID: "abcd1234"}
|
|
repoInfo, err := initGitInfo(&config)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "abcd1234", repoInfo.CommitId)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
assert.Equal(t, "codeql", repoInfo.Repo)
|
|
assert.Equal(t, "refs/head/branch", repoInfo.Ref)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
})
|
|
|
|
t.Run("Valid url with username and token URL2", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{Repository: "https://username:token@github.hello.test/Testing/codeql", AnalyzedRef: "refs/head/branch", CommitID: "abcd1234"}
|
|
repoInfo, err := initGitInfo(&config)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "abcd1234", repoInfo.CommitId)
|
|
assert.Equal(t, "Testing", repoInfo.Owner)
|
|
assert.Equal(t, "codeql", repoInfo.Repo)
|
|
assert.Equal(t, "refs/head/branch", repoInfo.Ref)
|
|
assert.Equal(t, "https://github.hello.test", repoInfo.ServerUrl)
|
|
})
|
|
|
|
t.Run("Invalid URL with no org/reponame", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{Repository: "https://github.hello.test", AnalyzedRef: "refs/head/branch", CommitID: "abcd1234"}
|
|
repoInfo, err := initGitInfo(&config)
|
|
assert.NoError(t, err)
|
|
_, err = orchestrator.GetOrchestratorConfigProvider(nil)
|
|
assert.Equal(t, "abcd1234", repoInfo.CommitId)
|
|
assert.Equal(t, "refs/head/branch", repoInfo.Ref)
|
|
if err != nil {
|
|
assert.Equal(t, "", repoInfo.Owner)
|
|
assert.Equal(t, "", repoInfo.Repo)
|
|
assert.Equal(t, "", repoInfo.ServerUrl)
|
|
}
|
|
})
|
|
}
|
|
|
|
func TestWaitSarifUploaded(t *testing.T) {
|
|
t.Parallel()
|
|
config := codeqlExecuteScanOptions{SarifCheckRetryInterval: 1, SarifCheckMaxRetries: 5}
|
|
t.Run("Fast complete upload", func(t *testing.T) {
|
|
codeqlScanAuditMock := CodeqlSarifUploaderMock{counter: 0}
|
|
timerStart := time.Now()
|
|
err := waitSarifUploaded(&config, &codeqlScanAuditMock)
|
|
assert.Less(t, time.Now().Sub(timerStart), time.Second)
|
|
assert.NoError(t, err)
|
|
})
|
|
t.Run("Long completed upload", func(t *testing.T) {
|
|
codeqlScanAuditMock := CodeqlSarifUploaderMock{counter: 2}
|
|
timerStart := time.Now()
|
|
err := waitSarifUploaded(&config, &codeqlScanAuditMock)
|
|
assert.GreaterOrEqual(t, time.Now().Sub(timerStart), time.Second*2)
|
|
assert.NoError(t, err)
|
|
})
|
|
t.Run("Failed upload", func(t *testing.T) {
|
|
codeqlScanAuditMock := CodeqlSarifUploaderMock{counter: -1}
|
|
err := waitSarifUploaded(&config, &codeqlScanAuditMock)
|
|
assert.Error(t, err)
|
|
assert.ErrorContains(t, err, "failed to upload sarif file")
|
|
})
|
|
t.Run("Error while checking sarif uploading", func(t *testing.T) {
|
|
codeqlScanAuditErrorMock := CodeqlSarifUploaderErrorMock{counter: -1}
|
|
err := waitSarifUploaded(&config, &codeqlScanAuditErrorMock)
|
|
assert.Error(t, err)
|
|
assert.ErrorContains(t, err, "test error")
|
|
})
|
|
t.Run("Completed upload after getting errors from server", func(t *testing.T) {
|
|
codeqlScanAuditErrorMock := CodeqlSarifUploaderErrorMock{counter: 3}
|
|
err := waitSarifUploaded(&config, &codeqlScanAuditErrorMock)
|
|
assert.NoError(t, err)
|
|
})
|
|
t.Run("Max retries reached", func(t *testing.T) {
|
|
codeqlScanAuditErrorMock := CodeqlSarifUploaderErrorMock{counter: 6}
|
|
err := waitSarifUploaded(&config, &codeqlScanAuditErrorMock)
|
|
assert.Error(t, err)
|
|
assert.ErrorContains(t, err, "max retries reached")
|
|
})
|
|
}
|
|
|
|
func TestGetMavenSettings(t *testing.T) {
|
|
t.Parallel()
|
|
t.Run("No maven", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "npm"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "", params)
|
|
})
|
|
|
|
t.Run("No build command", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven"}
|
|
params := getMavenSettings("", &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "", params)
|
|
})
|
|
|
|
t.Run("Project Settings file", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --settings=test.xml", params)
|
|
})
|
|
|
|
t.Run("Skip Project Settings file in case already used", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "test.xml"}
|
|
buildCmd := "mvn clean install --settings=project.xml"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "", params)
|
|
})
|
|
|
|
t.Run("Global Settings file", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "global.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=global.xml", params)
|
|
})
|
|
|
|
t.Run("Project and Global Settings file", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "test.xml", GlobalSettingsFile: "global.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=global.xml --settings=test.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile https url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "https://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --settings=.pipeline/mavenProjectSettings.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile http url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "http://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --settings=.pipeline/mavenProjectSettings.xml", params)
|
|
})
|
|
|
|
t.Run("GlobalSettingsFile https url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "https://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=.pipeline/mavenGlobalSettings.xml", params)
|
|
})
|
|
|
|
t.Run("GlobalSettingsFile http url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "http://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=.pipeline/mavenGlobalSettings.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile and GlobalSettingsFile https url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "https://jenkins-sap-test.com/test.xml", ProjectSettingsFile: "http://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=.pipeline/mavenGlobalSettings.xml --settings=.pipeline/mavenProjectSettings.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile and GlobalSettingsFile http url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "http://jenkins-sap-test.com/test.xml", ProjectSettingsFile: "http://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=.pipeline/mavenGlobalSettings.xml --settings=.pipeline/mavenProjectSettings.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile file and GlobalSettingsFile https url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "https://jenkins-sap-test.com/test.xml", ProjectSettingsFile: "test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=.pipeline/mavenGlobalSettings.xml --settings=test.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile file and GlobalSettingsFile https url", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "http://jenkins-sap-test.com/test.xml", ProjectSettingsFile: "test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=.pipeline/mavenGlobalSettings.xml --settings=test.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile https url and GlobalSettingsFile file", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "global.xml", ProjectSettingsFile: "http://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=global.xml --settings=.pipeline/mavenProjectSettings.xml", params)
|
|
})
|
|
|
|
t.Run("ProjectSettingsFile http url and GlobalSettingsFile file", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", GlobalSettingsFile: "global.xml", ProjectSettingsFile: "http://jenkins-sap-test.com/test.xml"}
|
|
buildCmd := "mvn clean install"
|
|
params := getMavenSettings(buildCmd, &config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, " --global-settings=global.xml --settings=.pipeline/mavenProjectSettings.xml", params)
|
|
})
|
|
}
|
|
|
|
func TestUpdateCmdFlag(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("No maven", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "npm"}
|
|
customFlags := map[string]string{
|
|
"--command": "mvn clean install",
|
|
}
|
|
updateCmdFlag(&config, customFlags, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "mvn clean install", customFlags["--command"])
|
|
assert.Equal(t, "", customFlags["-c"])
|
|
})
|
|
|
|
t.Run("No custom flags with build command provided", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "test.xml", GlobalSettingsFile: "global.xml"}
|
|
customFlags := map[string]string{}
|
|
updateCmdFlag(&config, customFlags, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "", customFlags["--command"])
|
|
assert.Equal(t, "", customFlags["-c"])
|
|
})
|
|
|
|
t.Run("Both --command and -c flags are set, no settings file provided", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven"}
|
|
customFlags := map[string]string{
|
|
"--command": "mvn clean install",
|
|
"-c": "mvn clean install -DskipTests",
|
|
}
|
|
updateCmdFlag(&config, customFlags, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "mvn clean install", customFlags["--command"])
|
|
assert.Equal(t, "", customFlags["-c"])
|
|
})
|
|
|
|
t.Run("Only -c flag is set, no settings file provided", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven"}
|
|
customFlags := map[string]string{
|
|
"-c": "mvn clean install -DskipTests",
|
|
}
|
|
updateCmdFlag(&config, customFlags, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "mvn clean install -DskipTests", customFlags["--command"])
|
|
assert.Equal(t, "", customFlags["-c"])
|
|
})
|
|
|
|
t.Run("Update custom command with GlobalSettingsFile and ProjectSettingsFile", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "test.xml", GlobalSettingsFile: "global.xml"}
|
|
customFlags := map[string]string{
|
|
"--command": "mvn clean install",
|
|
}
|
|
updateCmdFlag(&config, customFlags, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "mvn clean install --global-settings=global.xml --settings=test.xml", customFlags["--command"])
|
|
assert.Equal(t, "", customFlags["-c"])
|
|
})
|
|
|
|
t.Run("Custom command has --global-settings and --settings", func(t *testing.T) {
|
|
config := codeqlExecuteScanOptions{BuildTool: "maven", ProjectSettingsFile: "test.xml", GlobalSettingsFile: "global.xml"}
|
|
customFlags := map[string]string{
|
|
"--command": "mvn clean install --settings=test1.xml --global-settings=global1.xml",
|
|
}
|
|
updateCmdFlag(&config, customFlags, newCodeqlExecuteScanTestsUtils())
|
|
assert.Equal(t, "mvn clean install --settings=test1.xml --global-settings=global1.xml", customFlags["--command"])
|
|
assert.Equal(t, "", customFlags["-c"])
|
|
})
|
|
}
|
|
|
|
func TestAddDataToInfluxDB(t *testing.T) {
|
|
repoUrl := "https://github.htllo.test/Testing/codeql"
|
|
repoRef := "https://github.htllo.test/Testing/codeql/tree/branch"
|
|
repoScanUrl := "https://github.htllo.test/Testing/codeql/security/code-scanning"
|
|
querySuite := "security.ql"
|
|
|
|
t.Run("No findings", func(t *testing.T) {
|
|
scanResults := []codeql.CodeqlFindings{}
|
|
influx := &codeqlExecuteScanInflux{}
|
|
addDataToInfluxDB(repoUrl, repoRef, repoScanUrl, querySuite, scanResults, influx)
|
|
assert.Equal(t, repoUrl, influx.codeql_data.fields.repositoryURL)
|
|
assert.Equal(t, repoRef, influx.codeql_data.fields.repositoryReferenceURL)
|
|
assert.Equal(t, repoScanUrl, influx.codeql_data.fields.codeScanningLink)
|
|
assert.Equal(t, querySuite, influx.codeql_data.fields.querySuite)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.auditAllTotal)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.auditAllAudited)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.optionalTotal)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.optionalAudited)
|
|
})
|
|
|
|
t.Run("Audit All findings category only", func(t *testing.T) {
|
|
scanResults := []codeql.CodeqlFindings{
|
|
{
|
|
ClassificationName: codeql.AuditAll,
|
|
Total: 100,
|
|
Audited: 50,
|
|
},
|
|
}
|
|
influx := &codeqlExecuteScanInflux{}
|
|
addDataToInfluxDB(repoUrl, repoRef, repoScanUrl, querySuite, scanResults, influx)
|
|
assert.Equal(t, repoUrl, influx.codeql_data.fields.repositoryURL)
|
|
assert.Equal(t, repoRef, influx.codeql_data.fields.repositoryReferenceURL)
|
|
assert.Equal(t, repoScanUrl, influx.codeql_data.fields.codeScanningLink)
|
|
assert.Equal(t, querySuite, influx.codeql_data.fields.querySuite)
|
|
assert.Equal(t, scanResults[0].Total, influx.codeql_data.fields.auditAllTotal)
|
|
assert.Equal(t, scanResults[0].Audited, influx.codeql_data.fields.auditAllAudited)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.optionalTotal)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.optionalAudited)
|
|
})
|
|
|
|
t.Run("Optional findings category only", func(t *testing.T) {
|
|
scanResults := []codeql.CodeqlFindings{
|
|
{
|
|
ClassificationName: codeql.Optional,
|
|
Total: 100,
|
|
Audited: 50,
|
|
},
|
|
}
|
|
influx := &codeqlExecuteScanInflux{}
|
|
addDataToInfluxDB(repoUrl, repoRef, repoScanUrl, querySuite, scanResults, influx)
|
|
assert.Equal(t, repoUrl, influx.codeql_data.fields.repositoryURL)
|
|
assert.Equal(t, repoRef, influx.codeql_data.fields.repositoryReferenceURL)
|
|
assert.Equal(t, repoScanUrl, influx.codeql_data.fields.codeScanningLink)
|
|
assert.Equal(t, querySuite, influx.codeql_data.fields.querySuite)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.auditAllTotal)
|
|
assert.Equal(t, 0, influx.codeql_data.fields.auditAllAudited)
|
|
assert.Equal(t, scanResults[0].Total, influx.codeql_data.fields.optionalTotal)
|
|
assert.Equal(t, scanResults[0].Audited, influx.codeql_data.fields.optionalAudited)
|
|
})
|
|
|
|
t.Run("Both findings category", func(t *testing.T) {
|
|
scanResults := []codeql.CodeqlFindings{
|
|
{
|
|
ClassificationName: codeql.AuditAll,
|
|
Total: 100,
|
|
Audited: 50,
|
|
},
|
|
{
|
|
ClassificationName: codeql.Optional,
|
|
Total: 100,
|
|
Audited: 50,
|
|
},
|
|
}
|
|
influx := &codeqlExecuteScanInflux{}
|
|
addDataToInfluxDB(repoUrl, repoRef, repoScanUrl, querySuite, scanResults, influx)
|
|
assert.Equal(t, repoUrl, influx.codeql_data.fields.repositoryURL)
|
|
assert.Equal(t, repoRef, influx.codeql_data.fields.repositoryReferenceURL)
|
|
assert.Equal(t, repoScanUrl, influx.codeql_data.fields.codeScanningLink)
|
|
assert.Equal(t, querySuite, influx.codeql_data.fields.querySuite)
|
|
assert.Equal(t, scanResults[0].Total, influx.codeql_data.fields.auditAllTotal)
|
|
assert.Equal(t, scanResults[0].Audited, influx.codeql_data.fields.auditAllAudited)
|
|
assert.Equal(t, scanResults[1].Total, influx.codeql_data.fields.optionalTotal)
|
|
assert.Equal(t, scanResults[1].Audited, influx.codeql_data.fields.optionalAudited)
|
|
})
|
|
}
|
|
|
|
func TestPrepareCmdForDatabaseCreate(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("No custom flags", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
ModulePath: "./",
|
|
BuildTool: "maven",
|
|
BuildCommand: "mvn clean install",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseCreate(map[string]string{}, config, newCodeqlExecuteScanTestsUtils())
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 10, len(cmd))
|
|
assert.Equal(t, "database create codeqlDB --overwrite --source-root . --working-dir ./ --language=java --command=mvn clean install",
|
|
strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("No custom flags, custom build tool", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
ModulePath: "./",
|
|
BuildTool: "custom",
|
|
Language: "javascript",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseCreate(map[string]string{}, config, newCodeqlExecuteScanTestsUtils())
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 9, len(cmd))
|
|
assert.Equal(t, "database create codeqlDB --overwrite --source-root . --working-dir ./ --language=javascript",
|
|
strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("No custom flags, custom build tool, no language specified", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
ModulePath: "./",
|
|
BuildTool: "custom",
|
|
}
|
|
_, err := prepareCmdForDatabaseCreate(map[string]string{}, config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("No custom flags, invalid build tool, no language specified", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
ModulePath: "./",
|
|
BuildTool: "test",
|
|
}
|
|
_, err := prepareCmdForDatabaseCreate(map[string]string{}, config, newCodeqlExecuteScanTestsUtils())
|
|
assert.Error(t, err)
|
|
})
|
|
|
|
t.Run("No custom flags, invalid build tool, language specified", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
ModulePath: "./",
|
|
BuildTool: "test",
|
|
Language: "javascript",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseCreate(map[string]string{}, config, newCodeqlExecuteScanTestsUtils())
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 9, len(cmd))
|
|
assert.Equal(t, "database create codeqlDB --overwrite --source-root . --working-dir ./ --language=javascript",
|
|
strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("Custom flags, overwriting source-root", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
ModulePath: "./",
|
|
Language: "javascript",
|
|
}
|
|
customFlags := map[string]string{
|
|
"--source-root": "--source-root=customSrcRoot/",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseCreate(customFlags, config, newCodeqlExecuteScanTestsUtils())
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 8, len(cmd))
|
|
assert.Equal(t, "database create codeqlDB --overwrite --working-dir ./ --language=javascript --source-root=customSrcRoot/",
|
|
strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("Custom flags, overwriting threads from config", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
ModulePath: "./",
|
|
Language: "javascript",
|
|
Threads: "0",
|
|
Ram: "2000",
|
|
}
|
|
customFlags := map[string]string{
|
|
"--source-root": "--source-root=customSrcRoot/",
|
|
"-j": "-j=1",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseCreate(customFlags, config, newCodeqlExecuteScanTestsUtils())
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 10, len(cmd))
|
|
assert.True(t, "database create codeqlDB --overwrite --working-dir ./ --language=javascript --ram=2000 -j=1 --source-root=customSrcRoot/" == strings.Join(cmd, " ") ||
|
|
"database create codeqlDB --overwrite --working-dir ./ --language=javascript --ram=2000 --source-root=customSrcRoot/ -j=1" == strings.Join(cmd, " "))
|
|
})
|
|
|
|
}
|
|
|
|
func TestPrepareCmdForDatabaseAnalyze(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("No additional flags, no querySuite, sarif format", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseAnalyze(map[string]string{}, config, "sarif-latest", "codeqlReport.sarif")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 5, len(cmd))
|
|
assert.Equal(t, "database analyze --format=sarif-latest --output=target/codeqlReport.sarif codeqlDB", strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("No additional flags, no querySuite, csv format", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseAnalyze(map[string]string{}, config, "csv", "codeqlReport.csv")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 5, len(cmd))
|
|
assert.Equal(t, "database analyze --format=csv --output=target/codeqlReport.csv codeqlDB", strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("No additional flags, set querySuite", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
QuerySuite: "security.ql",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseAnalyze(map[string]string{}, config, "sarif-latest", "codeqlReport.sarif")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 6, len(cmd))
|
|
assert.Equal(t, "database analyze --format=sarif-latest --output=target/codeqlReport.sarif codeqlDB security.ql", strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("No custom flags, flags from config", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
QuerySuite: "security.ql",
|
|
Threads: "1",
|
|
Ram: "2000",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseAnalyze(map[string]string{}, config, "sarif-latest", "codeqlReport.sarif")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 8, len(cmd))
|
|
assert.Equal(t, "database analyze --format=sarif-latest --output=target/codeqlReport.sarif codeqlDB --threads=1 --ram=2000 security.ql", strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("Custom flags, overwriting threads", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
QuerySuite: "security.ql",
|
|
Threads: "1",
|
|
Ram: "2000",
|
|
}
|
|
customFlags := map[string]string{
|
|
"--threads": "--threads=2",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseAnalyze(customFlags, config, "sarif-latest", "codeqlReport.sarif")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 8, len(cmd))
|
|
assert.Equal(t, "database analyze --format=sarif-latest --output=target/codeqlReport.sarif codeqlDB --ram=2000 --threads=2 security.ql", strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("Custom flags, overwriting threads (-j)", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
QuerySuite: "security.ql",
|
|
Threads: "1",
|
|
Ram: "2000",
|
|
}
|
|
customFlags := map[string]string{
|
|
"-j": "-j=2",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseAnalyze(customFlags, config, "sarif-latest", "codeqlReport.sarif")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 8, len(cmd))
|
|
assert.Equal(t, "database analyze --format=sarif-latest --output=target/codeqlReport.sarif codeqlDB --ram=2000 -j=2 security.ql", strings.Join(cmd, " "))
|
|
})
|
|
|
|
t.Run("Custom flags, no overwriting", func(t *testing.T) {
|
|
config := &codeqlExecuteScanOptions{
|
|
Database: "codeqlDB",
|
|
QuerySuite: "security.ql",
|
|
Threads: "1",
|
|
Ram: "2000",
|
|
}
|
|
customFlags := map[string]string{
|
|
"--no-download": "--no-download",
|
|
}
|
|
cmd, err := prepareCmdForDatabaseAnalyze(customFlags, config, "sarif-latest", "codeqlReport.sarif")
|
|
assert.NoError(t, err)
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 9, len(cmd))
|
|
assert.Equal(t, "database analyze --format=sarif-latest --output=target/codeqlReport.sarif codeqlDB --threads=1 --ram=2000 --no-download security.ql", strings.Join(cmd, " "))
|
|
})
|
|
}
|
|
|
|
func TestPrepareCmdForUploadResults(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
config := &codeqlExecuteScanOptions{
|
|
ModulePath: "./",
|
|
}
|
|
|
|
t.Run("All configs are set", func(t *testing.T) {
|
|
repoInfo := &codeql.RepoInfo{
|
|
CommitId: "commitId",
|
|
ServerUrl: "http://github.com",
|
|
Repo: "repo",
|
|
Owner: "owner",
|
|
Ref: "refs/heads/branch",
|
|
}
|
|
cmd := prepareCmdForUploadResults(config, repoInfo, "token")
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 8, len(cmd))
|
|
})
|
|
|
|
t.Run("Configs are set partially", func(t *testing.T) {
|
|
repoInfo := &codeql.RepoInfo{
|
|
CommitId: "commitId",
|
|
ServerUrl: "http://github.com",
|
|
Repo: "repo",
|
|
}
|
|
cmd := prepareCmdForUploadResults(config, repoInfo, "token")
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 6, len(cmd))
|
|
})
|
|
|
|
t.Run("Empty token", func(t *testing.T) {
|
|
repoInfo := &codeql.RepoInfo{
|
|
CommitId: "commitId",
|
|
ServerUrl: "http://github.com",
|
|
Repo: "repo",
|
|
Owner: "owner",
|
|
Ref: "refs/heads/branch",
|
|
}
|
|
cmd := prepareCmdForUploadResults(config, repoInfo, "")
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 7, len(cmd))
|
|
})
|
|
|
|
t.Run("Empty configs and token", func(t *testing.T) {
|
|
repoInfo := &codeql.RepoInfo{}
|
|
cmd := prepareCmdForUploadResults(config, repoInfo, "")
|
|
assert.NotEmpty(t, cmd)
|
|
assert.Equal(t, 3, len(cmd))
|
|
})
|
|
}
|
|
|
|
type CodeqlSarifUploaderMock struct {
|
|
counter int
|
|
}
|
|
|
|
func (c *CodeqlSarifUploaderMock) GetSarifStatus() (codeql.SarifFileInfo, error) {
|
|
if c.counter == 0 {
|
|
return codeql.SarifFileInfo{
|
|
ProcessingStatus: "complete",
|
|
Errors: nil,
|
|
}, nil
|
|
}
|
|
if c.counter == -1 {
|
|
return codeql.SarifFileInfo{
|
|
ProcessingStatus: "failed",
|
|
Errors: []string{"upload error"},
|
|
}, nil
|
|
}
|
|
c.counter--
|
|
return codeql.SarifFileInfo{
|
|
ProcessingStatus: "pending",
|
|
Errors: nil,
|
|
}, nil
|
|
}
|
|
|
|
type CodeqlSarifUploaderErrorMock struct {
|
|
counter int
|
|
}
|
|
|
|
func (c *CodeqlSarifUploaderErrorMock) GetSarifStatus() (codeql.SarifFileInfo, error) {
|
|
if c.counter == -1 {
|
|
return codeql.SarifFileInfo{}, errors.New("test error")
|
|
}
|
|
if c.counter == 0 {
|
|
return codeql.SarifFileInfo{
|
|
ProcessingStatus: "complete",
|
|
Errors: nil,
|
|
}, nil
|
|
}
|
|
c.counter--
|
|
return codeql.SarifFileInfo{ProcessingStatus: "Service unavailable"}, nil
|
|
}
|