2018-02-19 22:24:10 +00:00
|
|
|
// Copyright 2018 Drone.IO Inc.
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// http://www.apache.org/licenses/LICENSE-2.0
|
2018-03-21 13:02:17 +00:00
|
|
|
//
|
2018-02-19 22:24:10 +00:00
|
|
|
// 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.
|
|
|
|
|
2016-04-21 07:25:30 +00:00
|
|
|
package model
|
|
|
|
|
|
|
|
import (
|
|
|
|
"testing"
|
|
|
|
|
|
|
|
"github.com/franela/goblin"
|
2023-12-31 20:43:24 +00:00
|
|
|
"github.com/stretchr/testify/assert"
|
2016-04-21 07:25:30 +00:00
|
|
|
)
|
|
|
|
|
2023-12-31 20:43:24 +00:00
|
|
|
func TestSecretMatch(t *testing.T) {
|
|
|
|
tcl := []*struct {
|
|
|
|
name string
|
|
|
|
secret Secret
|
|
|
|
event WebhookEvent
|
|
|
|
match bool
|
|
|
|
}{
|
|
|
|
{
|
|
|
|
name: "should match event",
|
|
|
|
secret: Secret{Events: []WebhookEvent{"pull_request"}},
|
|
|
|
event: EventPull,
|
|
|
|
match: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "should not match event",
|
|
|
|
secret: Secret{Events: []WebhookEvent{"pull_request"}},
|
|
|
|
event: EventPush,
|
|
|
|
match: false,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "should match when no event filters defined",
|
|
|
|
secret: Secret{},
|
|
|
|
event: EventPull,
|
|
|
|
match: true,
|
|
|
|
},
|
|
|
|
{
|
|
|
|
name: "pull close should match pull",
|
|
|
|
secret: Secret{Events: []WebhookEvent{"pull_request"}},
|
|
|
|
event: EventPullClosed,
|
|
|
|
match: true,
|
|
|
|
},
|
|
|
|
}
|
|
|
|
|
|
|
|
for _, tc := range tcl {
|
|
|
|
t.Run(tc.name, func(t *testing.T) {
|
|
|
|
assert.Equal(t, tc.match, tc.secret.Match(tc.event))
|
|
|
|
})
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSecretValidate(t *testing.T) {
|
2016-04-21 07:25:30 +00:00
|
|
|
g := goblin.Goblin(t)
|
|
|
|
g.Describe("Secret", func() {
|
2017-07-12 07:29:03 +00:00
|
|
|
g.It("should pass validation", func() {
|
2021-12-30 06:26:36 +00:00
|
|
|
secret := Secret{
|
|
|
|
Name: "secretname",
|
|
|
|
Value: "secretvalue",
|
|
|
|
Events: []WebhookEvent{EventPush},
|
2023-10-31 12:15:13 +00:00
|
|
|
Images: []string{"docker.io/library/mysql:latest", "alpine:latest", "localregistry.test:8443/mysql:latest", "localregistry.test:8443/library/mysql:latest", "docker.io/library/mysql", "alpine", "localregistry.test:8443/mysql", "localregistry.test:8443/library/mysql"},
|
2021-12-30 06:26:36 +00:00
|
|
|
}
|
2017-07-12 07:29:03 +00:00
|
|
|
err := secret.Validate()
|
2021-12-30 06:26:36 +00:00
|
|
|
g.Assert(err).IsNil()
|
2017-07-12 07:29:03 +00:00
|
|
|
})
|
2016-04-21 07:25:30 +00:00
|
|
|
g.Describe("should fail validation", func() {
|
2017-07-12 07:29:03 +00:00
|
|
|
g.It("when no name", func() {
|
2021-12-30 06:26:36 +00:00
|
|
|
secret := Secret{
|
|
|
|
Value: "secretvalue",
|
|
|
|
Events: []WebhookEvent{EventPush},
|
2023-10-31 12:15:13 +00:00
|
|
|
Images: []string{"docker.io/library/mysql:latest", "alpine:latest", "localregistry.test:8443/mysql:latest", "localregistry.test:8443/library/mysql:latest", "docker.io/library/mysql", "alpine", "localregistry.test:8443/mysql", "localregistry.test:8443/library/mysql"},
|
2021-12-30 06:26:36 +00:00
|
|
|
}
|
2017-07-12 07:29:03 +00:00
|
|
|
err := secret.Validate()
|
2021-11-04 13:42:25 +00:00
|
|
|
g.Assert(err).IsNotNil()
|
2017-07-12 07:29:03 +00:00
|
|
|
})
|
|
|
|
g.It("when no value", func() {
|
2021-12-30 06:26:36 +00:00
|
|
|
secret := Secret{
|
|
|
|
Name: "secretname",
|
|
|
|
Events: []WebhookEvent{EventPush},
|
2023-10-31 12:15:13 +00:00
|
|
|
Images: []string{"docker.io/library/mysql:latest", "alpine:latest", "localregistry.test:8443/mysql:latest", "localregistry.test:8443/library/mysql:latest", "docker.io/library/mysql", "alpine", "localregistry.test:8443/mysql", "localregistry.test:8443/library/mysql"},
|
2021-12-30 06:26:36 +00:00
|
|
|
}
|
|
|
|
err := secret.Validate()
|
|
|
|
g.Assert(err).IsNotNil()
|
|
|
|
})
|
|
|
|
g.It("when no events", func() {
|
|
|
|
secret := Secret{
|
|
|
|
Name: "secretname",
|
|
|
|
Value: "secretvalue",
|
2023-10-31 12:15:13 +00:00
|
|
|
Images: []string{"docker.io/library/mysql:latest", "alpine:latest", "localregistry.test:8443/mysql:latest", "localregistry.test:8443/library/mysql:latest", "docker.io/library/mysql", "alpine", "localregistry.test:8443/mysql", "localregistry.test:8443/library/mysql"},
|
2021-12-30 06:26:36 +00:00
|
|
|
}
|
|
|
|
err := secret.Validate()
|
|
|
|
g.Assert(err).IsNotNil()
|
|
|
|
})
|
2023-10-31 12:15:13 +00:00
|
|
|
g.It("wrong image: no value", func() {
|
2021-12-30 06:26:36 +00:00
|
|
|
secret := Secret{
|
|
|
|
Name: "secretname",
|
|
|
|
Value: "secretvalue",
|
|
|
|
Events: []WebhookEvent{EventPush},
|
|
|
|
Images: []string{"wrong image:no"},
|
|
|
|
}
|
2017-07-12 07:29:03 +00:00
|
|
|
err := secret.Validate()
|
2021-11-04 13:42:25 +00:00
|
|
|
g.Assert(err).IsNotNil()
|
2017-07-12 07:29:03 +00:00
|
|
|
})
|
2023-10-31 12:15:13 +00:00
|
|
|
g.It("wrong image: no hostname", func() {
|
|
|
|
secret := Secret{
|
|
|
|
Name: "secretname",
|
|
|
|
Value: "secretvalue",
|
|
|
|
Events: []WebhookEvent{EventPush},
|
|
|
|
Images: []string{"/library/mysql:latest", ":8443/mysql:latest", ":8443/library/mysql:latest", "/library/mysql", ":8443/mysql", ":8443/library/mysql"},
|
|
|
|
}
|
|
|
|
err := secret.Validate()
|
|
|
|
g.Assert(err).IsNotNil()
|
|
|
|
})
|
|
|
|
g.It("wrong image: no port number", func() {
|
|
|
|
secret := Secret{
|
|
|
|
Name: "secretname",
|
|
|
|
Value: "secretvalue",
|
|
|
|
Events: []WebhookEvent{EventPush},
|
|
|
|
Images: []string{"localregistry.test:/mysql:latest", "localregistry.test:/mysql"},
|
|
|
|
}
|
|
|
|
err := secret.Validate()
|
|
|
|
g.Assert(err).IsNotNil()
|
|
|
|
})
|
|
|
|
g.It("wrong image: no tag name", func() {
|
|
|
|
secret := Secret{
|
|
|
|
Name: "secretname",
|
|
|
|
Value: "secretvalue",
|
|
|
|
Events: []WebhookEvent{EventPush},
|
|
|
|
Images: []string{"docker.io/library/mysql:", "alpine:", "localregistry.test:8443/mysql:", "localregistry.test:8443/library/mysql:"},
|
|
|
|
}
|
|
|
|
err := secret.Validate()
|
|
|
|
g.Assert(err).IsNotNil()
|
|
|
|
})
|
2016-04-21 07:25:30 +00:00
|
|
|
})
|
|
|
|
})
|
|
|
|
}
|