mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
a104b2a06d
* feat(whitesource): add config helper this helps to ease & enforce config settings * fix accidential change of class * add todos wrt java download * use existing scanOptions, add option to download jre * update generation * fix generation * allow running UA via go library * correct image, improve logging * add removal of downloaded JVM * update java creation and deletion * refactor and add log output * remove obsolete ToDo * increase test coverage * increase test coverage * adding aliases and tests * make go modules as default * maven: update behavior of projectNaming * add Docker capabilities * correct parameter name * retrieve Docker coordinates * docker coordinates only to provide artifact * add ToDos * add mta capability * add aliases, mvn arguments for settings * clean up groovy part * update defaults * add container for pip * add defaults, add maven specifics, ... * properly download settings * maven: check existence of excluded files * fix reporting * Update CommonStepsTest.groovy * update comment * fix CodeClimate finding * add tests for pip & fix minor issues * fix order of pip build descriptors * update pip container options * fix pip virtualEnv parameter * update report permissions * fix test * update container options * add use fileUtils to load properties file * update parameter description * adding Docker scanning defaults * clean up configHelper * consider also npm tool cache * add todos
89 lines
2.6 KiB
Go
89 lines
2.6 KiB
Go
// +build !release
|
|
|
|
package whitesource
|
|
|
|
import (
|
|
"net/http"
|
|
"os"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
"github.com/SAP/jenkins-library/pkg/piperutils"
|
|
)
|
|
|
|
func newTestScan(config *ScanOptions) *Scan {
|
|
return &Scan{
|
|
AggregateProjectName: config.ProjectName,
|
|
ProductVersion: config.ProductVersion,
|
|
}
|
|
}
|
|
|
|
// NpmInstall records in which directory "npm install" has been invoked and for which package.json files.
|
|
type NpmInstall struct {
|
|
CurrentDir string
|
|
PackageJSON []string
|
|
}
|
|
|
|
// DownloadedFile records what URL has been downloaded to which file.
|
|
type DownloadedFile struct {
|
|
SourceURL string
|
|
FilePath string
|
|
}
|
|
|
|
// ScanUtilsMock is an implementation of the Utils interface that can be used during tests.
|
|
type ScanUtilsMock struct {
|
|
*mock.FilesMock
|
|
*mock.ExecMockRunner
|
|
NpmInstalledModules []NpmInstall
|
|
DownloadedFiles []DownloadedFile
|
|
DownloadError map[string]error
|
|
RemoveAllDirs []string
|
|
RemoveAllError map[string]error
|
|
}
|
|
|
|
// RemoveAll mimics os.RemoveAll().
|
|
func (m *ScanUtilsMock) RemoveAll(dir string) error {
|
|
// Can be removed once implemented in mock.FilesMock.
|
|
m.RemoveAllDirs = append(m.RemoveAllDirs, dir)
|
|
if m.RemoveAllError[dir] != nil {
|
|
return m.RemoveAllError[dir]
|
|
}
|
|
return nil
|
|
}
|
|
|
|
// FindPackageJSONFiles mimics npm.FindPackageJSONFiles() based on the FilesMock setup.
|
|
func (m *ScanUtilsMock) FindPackageJSONFiles(options *ScanOptions) ([]string, error) {
|
|
unfilteredMatches, _ := m.Glob("**/package.json")
|
|
return piperutils.ExcludeFiles(unfilteredMatches, options.BuildDescriptorExcludeList)
|
|
}
|
|
|
|
// InstallAllNPMDependencies mimics npm.InstallAllNPMDependencies() and records the "npm install".
|
|
func (m *ScanUtilsMock) InstallAllNPMDependencies(_ *ScanOptions, packageJSONs []string) error {
|
|
m.NpmInstalledModules = append(m.NpmInstalledModules, NpmInstall{
|
|
CurrentDir: m.CurrentDir,
|
|
PackageJSON: packageJSONs,
|
|
})
|
|
return nil
|
|
}
|
|
|
|
// DownloadFile mimics http.Downloader and records the downloaded file.
|
|
func (m *ScanUtilsMock) DownloadFile(url, filename string, _ http.Header, _ []*http.Cookie) error {
|
|
if m.DownloadError[url] != nil {
|
|
return m.DownloadError[url]
|
|
}
|
|
m.DownloadedFiles = append(m.DownloadedFiles, DownloadedFile{SourceURL: url, FilePath: filename})
|
|
return nil
|
|
}
|
|
|
|
// FileOpen mimics os.FileOpen() based on FilesMock Open().
|
|
func (m *ScanUtilsMock) FileOpen(name string, flag int, perm os.FileMode) (File, error) {
|
|
return m.Open(name, flag, perm)
|
|
}
|
|
|
|
// NewScanUtilsMock returns an initialized ScanUtilsMock instance.
|
|
func NewScanUtilsMock() *ScanUtilsMock {
|
|
return &ScanUtilsMock{
|
|
FilesMock: &mock.FilesMock{},
|
|
ExecMockRunner: &mock.ExecMockRunner{},
|
|
}
|
|
}
|