mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-12 10:55:20 +02:00
ffc931aad1
* Added unit tag as argument. Added description to runTests command. Changed code generator to have unit build tag in generated unit test files. * Added unit build tag to all unit test files. * added to new unit test unit build tag * Update verify-go.yml * small fix --------- Co-authored-by: Muhammadali Nazarov <Muhammadali.Nazarov@acronis.com> Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
60 lines
2.2 KiB
Go
60 lines
2.2 KiB
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package cnbutils_test
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/cnbutils"
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestGenerateCnbAuth(t *testing.T) {
|
|
var mockUtils = &cnbutils.MockUtils{
|
|
ExecMockRunner: &mock.ExecMockRunner{},
|
|
FilesMock: &mock.FilesMock{},
|
|
}
|
|
|
|
t.Run("successfully generates cnb auth env variable", func(t *testing.T) {
|
|
mockUtils.AddFile("/test/valid_config.json", []byte("{\"auths\":{\"example.com\":{\"auth\":\"dXNlcm5hbWU6cGFzc3dvcmQ=\"}}}"))
|
|
auth, err := cnbutils.GenerateCnbAuth("/test/valid_config.json", mockUtils)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "{\"example.com\":\"Basic dXNlcm5hbWU6cGFzc3dvcmQ=\"}", auth)
|
|
})
|
|
|
|
t.Run("successfully generates cnb auth env variable from username and password", func(t *testing.T) {
|
|
mockUtils.AddFile("/test/valid_config.json", []byte("{\"auths\":{\"example.com\":{\"username\":\"username\",\"password\":\"password\"}}}"))
|
|
auth, err := cnbutils.GenerateCnbAuth("/test/valid_config.json", mockUtils)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "{\"example.com\":\"Basic dXNlcm5hbWU6cGFzc3dvcmQ=\"}", auth)
|
|
})
|
|
|
|
t.Run("skips registry with empty credentials", func(t *testing.T) {
|
|
mockUtils.AddFile("/test/valid_config.json", []byte("{\"auths\":{\"example.com\":{}}}"))
|
|
auth, err := cnbutils.GenerateCnbAuth("/test/valid_config.json", mockUtils)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "{}", auth)
|
|
})
|
|
|
|
t.Run("successfully generates cnb auth env variable if docker config is not present", func(t *testing.T) {
|
|
auth, err := cnbutils.GenerateCnbAuth("", mockUtils)
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, "{}", auth)
|
|
})
|
|
|
|
t.Run("fails if file not found", func(t *testing.T) {
|
|
_, err := cnbutils.GenerateCnbAuth("/not/found", mockUtils)
|
|
assert.Error(t, err)
|
|
assert.Equal(t, "could not read '/not/found'", err.Error())
|
|
})
|
|
|
|
t.Run("fails if file is invalid json", func(t *testing.T) {
|
|
mockUtils.AddFile("/test/invalid_config.json", []byte("not a json"))
|
|
_, err := cnbutils.GenerateCnbAuth("/test/invalid_config.json", mockUtils)
|
|
assert.Error(t, err)
|
|
assert.Equal(t, "invalid character 'o' in literal null (expecting 'u')", err.Error())
|
|
})
|
|
}
|