forked from hashicorp/nomad-driver-podman
-
Notifications
You must be signed in to change notification settings - Fork 0
/
config_test.go
139 lines (115 loc) · 2.6 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
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
// Copyright (c) HashiCorp, Inc.
// SPDX-License-Identifier: MPL-2.0
package main
import (
"testing"
"github.com/hashicorp/nomad-driver-podman/ci"
"github.com/hashicorp/nomad/helper/pluginutils/hclutils"
"github.com/shoenig/test/must"
)
func TestConfig_Ports(t *testing.T) {
ci.Parallel(t)
parser := hclutils.NewConfigParser(taskConfigSpec)
expectedPorts := []string{"redis"}
validHCL := `
config {
image = "docker://redis"
ports = ["redis"]
}
`
var tc *TaskConfig
parser.ParseHCL(t, validHCL, &tc)
must.SliceContainsAll(t, expectedPorts, tc.Ports)
}
func TestConfig_Logging(t *testing.T) {
ci.Parallel(t)
parser := hclutils.NewConfigParser(taskConfigSpec)
expectedDriver := "journald"
expectedTag := "redis"
validHCL := `
config {
image = "docker://redis"
logging = {
driver = "journald"
options = [
{
"tag" = "redis"
}
]
}
}
`
var tc *TaskConfig
parser.ParseHCL(t, validHCL, &tc)
must.Eq(t, expectedDriver, tc.Logging.Driver)
must.Eq(t, expectedTag, tc.Logging.Options["tag"])
}
func TestConfig_Labels(t *testing.T) {
ci.Parallel(t)
parser := hclutils.NewConfigParser(taskConfigSpec)
validHCL := `
config {
image = "docker://redis"
labels = {
"nomad" = "job"
}
}
`
var tc *TaskConfig
parser.ParseHCL(t, validHCL, &tc)
must.Eq(t, "job", tc.Labels["nomad"])
}
func TestConfig_ForcePull(t *testing.T) {
ci.Parallel(t)
parser := hclutils.NewConfigParser(taskConfigSpec)
validHCL := `
config {
image = "docker://redis"
force_pull = true
}
`
var tc *TaskConfig
parser.ParseHCL(t, validHCL, &tc)
must.Eq(t, true, tc.ForcePull)
}
func TestConfig_CPUHardLimit(t *testing.T) {
ci.Parallel(t)
parser := hclutils.NewConfigParser(taskConfigSpec)
validHCL := `
config {
image = "docker://redis"
cpu_hard_limit = true
cpu_cfs_period = 200000
}
`
var tc *TaskConfig
parser.ParseHCL(t, validHCL, &tc)
must.True(t, tc.CPUHardLimit)
must.Eq(t, 200000, tc.CPUCFSPeriod)
}
func TestConfig_ImagePullTimeout(t *testing.T) {
ci.Parallel(t)
parser := hclutils.NewConfigParser(taskConfigSpec)
validHCL := `
config {
image = "docker://redis"
image_pull_timeout = "10m"
}
`
var tc *TaskConfig
parser.ParseHCL(t, validHCL, &tc)
must.Eq(t, "10m", tc.ImagePullTimeout)
}
func TestConfig_ExtraHosts(t *testing.T) {
ci.Parallel(t)
parser := hclutils.NewConfigParser(taskConfigSpec)
validHCL := `
config {
image = "docker://redis"
extra_hosts = ["myhost:127.0.0.2", "example.com:10.0.0.1"]
}
`
var tc *TaskConfig
parser.ParseHCL(t, validHCL, &tc)
must.Eq(t, []string{"myhost:127.0.0.2", "example.com:10.0.0.1"}, tc.ExtraHosts)
}