2023-08-07 19:13:26 +00:00
|
|
|
// Copyright 2022 Woodpecker Authors
|
|
|
|
//
|
|
|
|
// Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
// you may not use this file except in compliance with the License.
|
|
|
|
// You may obtain a copy of the License at
|
|
|
|
//
|
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
//
|
|
|
|
// Unless required by applicable law or agreed to in writing, software
|
|
|
|
// distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
// See the License for the specific language governing permissions and
|
|
|
|
// limitations under the License.
|
|
|
|
|
2022-09-05 04:01:14 +00:00
|
|
|
package kubernetes
|
|
|
|
|
|
|
|
import (
|
|
|
|
"encoding/json"
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/stretchr/testify/assert"
|
2024-01-14 17:22:06 +00:00
|
|
|
|
2023-12-19 03:53:52 +00:00
|
|
|
"go.woodpecker-ci.org/woodpecker/v2/pipeline/backend/types"
|
2022-09-05 04:01:14 +00:00
|
|
|
)
|
|
|
|
|
2023-12-19 03:53:52 +00:00
|
|
|
func TestServiceName(t *testing.T) {
|
2024-02-17 11:30:06 +00:00
|
|
|
name, err := serviceName(&types.Step{Name: "database", UUID: "01he8bebctabr3kgk0qj36d2me"})
|
2023-12-19 03:53:52 +00:00
|
|
|
assert.NoError(t, err)
|
2024-02-17 11:30:06 +00:00
|
|
|
assert.Equal(t, "wp-svc-01he8bebctabr3kgk0qj36d2me-database", name)
|
2023-12-19 03:53:52 +00:00
|
|
|
|
2024-02-17 11:30:06 +00:00
|
|
|
name, err = serviceName(&types.Step{Name: "wp-01he8bebctabr3kgk0qj36d2me-0-services-0.woodpecker-runtime.svc.cluster.local", UUID: "01he8bebctabr3kgk0qj36d2me"})
|
2023-12-19 03:53:52 +00:00
|
|
|
assert.NoError(t, err)
|
2024-02-17 11:30:06 +00:00
|
|
|
assert.Equal(t, "wp-svc-01he8bebctabr3kgk0qj36d2me-wp-01he8bebctabr3kgk0qj36d2me-0-services-0.woodpecker-runtime.svc.cluster.local", name)
|
2023-12-19 03:53:52 +00:00
|
|
|
|
2024-02-17 11:30:06 +00:00
|
|
|
name, err = serviceName(&types.Step{Name: "awesome_service", UUID: "01he8bebctabr3kgk0qj36d2me"})
|
2024-01-11 15:32:37 +00:00
|
|
|
assert.NoError(t, err)
|
2024-02-17 11:30:06 +00:00
|
|
|
assert.Equal(t, "wp-svc-01he8bebctabr3kgk0qj36d2me-awesome-service", name)
|
2023-12-19 03:53:52 +00:00
|
|
|
}
|
|
|
|
|
2022-09-05 04:01:14 +00:00
|
|
|
func TestService(t *testing.T) {
|
|
|
|
expected := `
|
|
|
|
{
|
|
|
|
"metadata": {
|
2024-02-17 11:30:06 +00:00
|
|
|
"name": "wp-svc-01he8bebctabr3kgk0qj36d2me-0-bar",
|
2022-09-05 04:01:14 +00:00
|
|
|
"namespace": "foo",
|
|
|
|
"creationTimestamp": null
|
|
|
|
},
|
|
|
|
"spec": {
|
|
|
|
"ports": [
|
|
|
|
{
|
2023-12-19 01:38:18 +00:00
|
|
|
"name": "port-1",
|
2022-09-05 04:01:14 +00:00
|
|
|
"port": 1,
|
|
|
|
"targetPort": 1
|
|
|
|
},
|
|
|
|
{
|
2023-12-19 01:38:18 +00:00
|
|
|
"name": "port-2",
|
2024-01-12 22:57:24 +00:00
|
|
|
"protocol": "TCP",
|
2022-09-05 04:01:14 +00:00
|
|
|
"port": 2,
|
|
|
|
"targetPort": 2
|
|
|
|
},
|
|
|
|
{
|
2023-12-19 01:38:18 +00:00
|
|
|
"name": "port-3",
|
2024-01-12 22:57:24 +00:00
|
|
|
"protocol": "UDP",
|
2022-09-05 04:01:14 +00:00
|
|
|
"port": 3,
|
|
|
|
"targetPort": 3
|
|
|
|
}
|
|
|
|
],
|
|
|
|
"selector": {
|
2024-02-17 11:30:06 +00:00
|
|
|
"service": "wp-svc-01he8bebctabr3kgk0qj36d2me-0-bar"
|
2022-09-05 04:01:14 +00:00
|
|
|
},
|
|
|
|
"type": "ClusterIP"
|
|
|
|
},
|
|
|
|
"status": {
|
|
|
|
"loadBalancer": {}
|
|
|
|
}
|
|
|
|
}`
|
2024-01-12 22:57:24 +00:00
|
|
|
ports := []types.Port{
|
|
|
|
{Number: 1},
|
|
|
|
{Number: 2, Protocol: "tcp"},
|
|
|
|
{Number: 3, Protocol: "udp"},
|
|
|
|
}
|
2024-01-11 15:32:37 +00:00
|
|
|
s, err := mkService(&types.Step{
|
|
|
|
Name: "bar",
|
2024-02-17 11:30:06 +00:00
|
|
|
UUID: "01he8bebctabr3kgk0qj36d2me-0",
|
2024-01-12 22:57:24 +00:00
|
|
|
Ports: ports,
|
2024-01-15 02:59:08 +00:00
|
|
|
}, &config{Namespace: "foo"})
|
2024-01-11 15:32:37 +00:00
|
|
|
assert.NoError(t, err)
|
2022-09-05 04:01:14 +00:00
|
|
|
j, err := json.Marshal(s)
|
2023-10-28 11:37:54 +00:00
|
|
|
assert.NoError(t, err)
|
2022-09-05 04:01:14 +00:00
|
|
|
assert.JSONEq(t, expected, string(j))
|
|
|
|
}
|