Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
32 changes: 32 additions & 0 deletions override/uncity.go
Original file line number Diff line number Diff line change
Expand Up @@ -36,6 +36,7 @@ func init() {
unique["services.*.expose"] = exposeIndexer
unique["services.*.secrets"] = mountIndexer("/run/secrets")
unique["services.*.configs"] = mountIndexer("")
unique["services.*.ports"] = portIndexer
}

// EnforceUnicity removes redefinition of elements declared in a sequence
Expand Down Expand Up @@ -136,3 +137,34 @@ func mountIndexer(defaultPath string) indexer {
}
}
}

func portIndexer(y any, p tree.Path) (string, error) {
switch value := y.(type) {
case int:
return strconv.Itoa(value), nil
case map[string]any:
target, ok := value["target"].(int)
if !ok {
return "", fmt.Errorf("service ports %s is missing a target port", p)
}
published, ok := value["published"].(string)
if !ok {
// try to parse it as an int
if pub, ok := value["published"].(int); ok {
published = fmt.Sprintf("%d", pub)
}
}
host, ok := value["host_ip"].(string)
if !ok {
host = "0.0.0.0"
}
protocol, ok := value["protocol"].(string)
if !ok {
protocol = "tcp"
}
return fmt.Sprintf("%s:%s:%d/%s", host, published, target, protocol), nil
case string:
return value, nil
}
return "", nil
}
66 changes: 66 additions & 0 deletions override/uncity_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -66,6 +66,72 @@ services:
`)
}

func Test_PortsShortUnicity(t *testing.T) {
assertUnicity(t, `
services:
test:
image: foo
ports:
- "9080:80"
- "9081:81"
- "9080:80"
- "5000"
- "6060:6060/udp"
- "9080:6060/udp"
`, `
services:
test:
image: foo
ports:
- "9080:80"
- "9081:81"
- "5000"
- "6060:6060/udp"
- "9080:6060/udp"
`)
}

func Test_PortsLongtUnicity(t *testing.T) {
assertUnicity(t, `
services:
test:
image: foo
ports:
- target: 80
host_ip: 127.0.0.1
published: "8080"
protocol: tcp
mode: host
- target: 81
published: "8080"
protocol: tcp
- target: 80
host_ip: 127.0.0.2
published: "8080"
protocol: tcp
- target: 81
published: "8080"
protocol: tcp
`, `
services:
test:
image: foo
ports:
- target: 80
host_ip: 127.0.0.1
published: "8080"
protocol: tcp
mode: host
- target: 81
published: "8080"
protocol: tcp
- target: 80
host_ip: 127.0.0.2
published: "8080"
protocol: tcp
`)
}

func assertUnicity(t *testing.T, before string, expected string) {
got, err := EnforceUnicity(unmarshall(t, before))
assert.NilError(t, err)
Expand Down