mirror of
https://github.com/SAP/jenkins-library.git
synced 2025-01-08 04:21:26 +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>
34 lines
730 B
Go
34 lines
730 B
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package github
|
|
|
|
import (
|
|
"encoding/base64"
|
|
"testing"
|
|
|
|
"github.com/google/go-github/v45/github"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRunGithubCreateEncryptedSecret(t *testing.T) {
|
|
t.Parallel()
|
|
|
|
t.Run("Success", func(t *testing.T) {
|
|
mockKeyID := "1"
|
|
mockB64Key := base64.StdEncoding.EncodeToString([]byte("testPublicKey"))
|
|
mockPubKey := github.PublicKey{KeyID: &mockKeyID, Key: &mockB64Key}
|
|
|
|
mockName := "testSecret"
|
|
mockValue := "testValue"
|
|
|
|
// test
|
|
githubSecret, err := CreateEncryptedSecret(mockName, mockValue, &mockPubKey)
|
|
|
|
// assert
|
|
assert.NoError(t, err)
|
|
assert.Equal(t, mockName, githubSecret.Name)
|
|
assert.Equal(t, mockKeyID, githubSecret.KeyID)
|
|
})
|
|
}
|