1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-12 10:55:20 +02:00
sap-jenkins-library/cmd/shellExecute_test.go
Anil Keshav 2bd49fbe19
feat (shellExecute) extend sources param to download scripts. (#3674)
* first version to download script from git

* unit test adjust

* adding git token

* info messages

* removing extra info message

* changing file permission for scrtips

* modying sources to handle https download

* adding script downloads

* commenting the file permission change

* changing persmission

* adding header to download file

* adding perimssions

* adding perimssions

* not touching file permissions

* adding to pipeline

* return file name

* changing script name

* adding file permission changes

* adding file permission changes

* using current directory

* file permission

* downloading in .pipeline folder

* removing permission handeling

* improving the step docu

* improving the step docu

* unit test and code cleaning

* fix typo

* adding read execute permission

* fix unit test

* fix unit test

* removing negative test

Co-authored-by: anilkeshav27 <you@example.com>
Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com>
2022-03-31 18:18:20 +02:00

104 lines
2.5 KiB
Go

package cmd
import (
"net/http"
"strings"
"testing"
"github.com/stretchr/testify/assert"
"github.com/SAP/jenkins-library/pkg/mock"
)
type shellExecuteMockUtils struct {
t *testing.T
config *shellExecuteOptions
*mock.ExecMockRunner
*mock.FilesMock
*mock.HttpClientMock
downloadError error
filename string
header http.Header
url string
}
type shellExecuteFileMock struct {
*mock.FilesMock
fileReadContent map[string]string
fileReadErr map[string]error
}
func (f *shellExecuteFileMock) FileRead(path string) ([]byte, error) {
if f.fileReadErr[path] != nil {
return []byte{}, f.fileReadErr[path]
}
return []byte(f.fileReadContent[path]), nil
}
func (f *shellExecuteFileMock) FileExists(path string) (bool, error) {
return strings.EqualFold(path, "path/to/script/script.sh"), nil
}
func (f *shellExecuteMockUtils) DownloadFile(url, filename string, header http.Header, cookies []*http.Cookie) error {
if f.downloadError != nil {
return f.downloadError
}
f.url = url
f.filename = filename
f.header = header
return nil
}
func newShellExecuteTestsUtils() *shellExecuteMockUtils {
utils := shellExecuteMockUtils{
ExecMockRunner: &mock.ExecMockRunner{},
FilesMock: &mock.FilesMock{},
}
return &utils
}
func (v *shellExecuteMockUtils) GetConfig() *shellExecuteOptions {
return v.config
}
func TestRunShellExecute(t *testing.T) {
t.Run("negative case - script isn't present", func(t *testing.T) {
c := &shellExecuteOptions{
Sources: []string{"path/to/script.sh"},
}
u := newShellExecuteTestsUtils()
err := runShellExecute(c, nil, u)
assert.EqualError(t, err, "the script 'path/to/script.sh' could not be found")
})
t.Run("success case - script is present", func(t *testing.T) {
o := &shellExecuteOptions{}
u := newShellExecuteTestsUtils()
err := runShellExecute(o, nil, u)
assert.NoError(t, err)
})
t.Run("success case - script run successfully", func(t *testing.T) {
o := &shellExecuteOptions{}
u := newShellExecuteTestsUtils()
err := runShellExecute(o, nil, u)
assert.NoError(t, err)
})
t.Run("success case - download script header", func(t *testing.T) {
o := &shellExecuteOptions{
Sources: []string{"https://myScriptLocation/myScript.sh"},
GithubToken: "dummy@12345",
}
u := newShellExecuteTestsUtils()
runShellExecute(o, nil, u)
assert.Equal(t, http.Header{"Accept": []string{"application/vnd.github.v3.raw"}, "Authorization": []string{"Token dummy@12345"}}, u.header)
})
}