forked from nscuro/dtrack-client
-
-
Notifications
You must be signed in to change notification settings - Fork 22
/
Copy pathconfig_test.go
97 lines (80 loc) · 2.91 KB
/
config_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
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
package dtrack
import (
"context"
"github.com/stretchr/testify/require"
"testing"
)
const TEST_URL = "https://localhost"
func TestGetConfigProperty(t *testing.T) {
client := setUpContainer(t, testContainerOptions{
APIPermissions: []string{
PermissionSystemConfiguration,
},
})
property, err := client.Config.Get(context.Background(), "general", "base.url")
require.NoError(t, err)
require.Equal(t, property.GroupName, "general")
require.Equal(t, property.Name, "base.url")
require.Equal(t, property.Type, "URL")
require.Equal(t, property.Description, "URL used to construct links back to Dependency-Track from external systems")
}
func TestUpdateConfigProperty(t *testing.T) {
client := setUpContainer(t, testContainerOptions{
APIPermissions: []string{
PermissionSystemConfiguration,
},
})
property, err := client.Config.Get(context.Background(), "general", "base.url")
require.NoError(t, err)
require.Empty(t, property.Value)
property.Value = TEST_URL
property, err = client.Config.Update(context.Background(), property)
require.NoError(t, err)
require.Equal(t, property.GroupName, "general")
require.Equal(t, property.Name, "base.url")
require.Equal(t, property.Type, "URL")
require.Equal(t, property.Description, "URL used to construct links back to Dependency-Track from external systems")
require.Equal(t, property.Value, TEST_URL)
}
func TestUpdateAllConfigProperty(t *testing.T) {
client := setUpContainer(t, testContainerOptions{
APIPermissions: []string{
PermissionSystemConfiguration,
},
})
baseUrl, err := client.Config.Get(context.Background(), "general", "base.url")
require.NoError(t, err)
badgeEnabled, err := client.Config.Get(context.Background(), "general", "badge.enabled")
require.NoError(t, err)
defaultLocale, err := client.Config.Get(context.Background(), "general", "default.locale")
require.NoError(t, err)
require.Empty(t, baseUrl.Value)
require.Equal(t, badgeEnabled.Value, "false")
require.Empty(t, defaultLocale.Value)
baseUrl.Value = TEST_URL
badgeEnabled.Value = "true"
defaultLocale.Value = "de"
cps, err := client.Config.UpdateAll(context.Background(), []ConfigProperty{baseUrl, badgeEnabled, defaultLocale})
require.NoError(t, err)
require.Equal(t, len(cps), 3)
require.Equal(t, cps[0], baseUrl)
require.Equal(t, cps[1], badgeEnabled)
require.Equal(t, cps[2], defaultLocale)
}
func TestUnsetConfigProperty(t *testing.T) {
client := setUpContainer(t, testContainerOptions{
APIPermissions: []string{
PermissionSystemConfiguration,
},
})
baseUrl, err := client.Config.Get(context.Background(), "general", "base.url")
require.NoError(t, err)
baseUrl.Value = TEST_URL
baseUrl, err = client.Config.Update(context.Background(), baseUrl)
require.NoError(t, err)
require.Equal(t, baseUrl.Value, TEST_URL)
baseUrl.Value = ""
baseUrl, err = client.Config.Update(context.Background(), baseUrl)
require.NoError(t, err)
require.Empty(t, baseUrl.Value)
}