-
Notifications
You must be signed in to change notification settings - Fork 436
/
Copy pathintegration_test.go
59 lines (50 loc) · 1.45 KB
/
integration_test.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
package sdk
import (
"testing"
"github.com/stretchr/testify/require"
)
func TestIntegConfigToJobContext(t *testing.T) {
pi := ProjectIntegration{
Name: "foo",
Config: IntegrationConfig{},
Model: ArtifactoryIntegration,
}
pi.Config["build.info.prefix"] = IntegrationConfigValue{
Value: "pref",
}
pi.Config["build.info.toto"] = IntegrationConfigValue{
Value: "tata",
}
pi.Config["url"] = IntegrationConfigValue{
Value: "myurl",
}
pi.Config["token"] = IntegrationConfigValue{
Value: "mytoken",
}
pi.Config["token.name"] = IntegrationConfigValue{
Value: "myuser",
}
pi.Config["my_token"] = IntegrationConfigValue{
Value: PasswordPlaceholder,
Type: SecretVariable,
}
pi.Model.PublicConfigurations = make(IntegrationConfigMap)
pi.Model.PublicConfigurations["foo"] = IntegrationConfig{
"my_token": IntegrationConfigValue{
Value: "the_value_token",
Type: IntegrationConfigTypePassword,
},
}
result := pi.ToJobRunContextConfig()
require.Equal(t, result["url"], "myurl")
require.NotNil(t, result["build"])
buildMap := result["build"].(map[string]interface{})
require.NotNil(t, buildMap["info"])
infoMap := buildMap["info"].(map[string]interface{})
require.Equal(t, "pref", infoMap["prefix"])
require.Equal(t, "tata", infoMap["toto"])
require.Equal(t, "mytoken", result["token"])
require.Equal(t, "myuser", result["token_name"])
t.Logf("result: %+v", result)
require.Equal(t, "the_value_token", result["my_token"])
}