1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-16 11:09:33 +02:00
sap-jenkins-library/pkg/gcs/gcsClient_test.go

50 lines
1.2 KiB
Go
Raw Normal View History

feat(gcs): allow upload to gcs from steps (#3034) * Upload reports to Google Cloud Storage bucket * Added tests. Made fixes * Update step generation. GCS client was moved to GeneralConfig * Code was refactored * Fixed issues * Fixed issues * Code correction due to PR comments * Improved gcs client and integration tests * Integrated gcp config. Updated step metadata * Fixed issues. Added tests * Added cpe, vault, aliases resolving for reporting parameters * Added tests * Uncommented DeferExitHandler. Removed useless comments * fixed cloning of config * Added comments for exported functions. Removed unused mock * minor fix * Implemented setting of report name via paramRef * some refactoring. Writing tests * Update pkg/config/reporting.go * Update cmd/sonarExecuteScan_generated.go * Apply suggestions from code review * Update pkg/config/reporting.go * Update pkg/config/reporting.go * fixed removing valut secret files * Update pkg/config/reporting.go * restore order * restore order * Apply suggestions from code review * go generate * fixed tests * Update resources/metadata/sonarExecuteScan.yaml * Update resources.go * Fixed tests. Code was regenerated * changed somewhere gcp to gcs. Fixed one test * move gcsSubFolder to input parameters * fixed removing valut secret files * minor fix in integration tests * fix integration tests Co-authored-by: Oliver Nocon <33484802+OliverNocon@users.noreply.github.com> Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com> Co-authored-by: Sven Merk <33895725+nevskrem@users.noreply.github.com>
2021-12-15 16:07:47 +02:00
package gcs
import (
"os"
"testing"
)
func Test_gcsClient_prepareEnv(t *testing.T) {
os.Setenv("TESTVAR1", "test1")
gcsClient := gcsClient{envVars: []EnvVar{
{Name: "TESTVAR1", Value: "test1_new"},
{Name: "TESTVAR2", Value: "test2_new"},
}}
gcsClient.prepareEnv()
if gcsClient.envVars[0].Modified {
t.Errorf("%v - expected '%v' was '%v'", gcsClient.envVars[0].Name, false, gcsClient.envVars[0].Modified)
}
if !gcsClient.envVars[1].Modified {
t.Errorf("%v - expected '%v' was '%v'", gcsClient.envVars[1].Name, true, gcsClient.envVars[1].Modified)
}
os.Setenv("TESTVAR1", "")
os.Setenv("TESTVAR2", "")
}
func TestCleanupEnv(t *testing.T) {
os.Setenv("TESTVAR1", "test1")
os.Setenv("TESTVAR2", "test2")
gcsClient := gcsClient{envVars: []EnvVar{
{Name: "TESTVAR1", Modified: false},
{Name: "TESTVAR2", Modified: true},
}}
gcsClient.cleanupEnv()
if os.Getenv("TESTVAR1") != "test1" {
t.Errorf("%v - expected '%v' was '%v'", gcsClient.envVars[0].Name, "test1", os.Getenv("TESTVAR1"))
}
if len(os.Getenv("TESTVAR2")) > 0 {
t.Errorf("%v - expected '%v' was '%v'", gcsClient.envVars[1].Name, "", os.Getenv("TESTVAR2"))
}
os.Setenv("TESTVAR1", "")
os.Setenv("TESTVAR2", "")
}