mirror of
https://github.com/woodpecker-ci/woodpecker.git
synced 2024-11-19 16:31:01 +00:00
40 lines
784 B
Go
40 lines
784 B
Go
|
package agent
|
||
|
|
||
|
import (
|
||
|
"testing"
|
||
|
|
||
|
"github.com/drone/drone/model"
|
||
|
"github.com/franela/goblin"
|
||
|
)
|
||
|
|
||
|
const testString = "This is SECRET: secret_value"
|
||
|
|
||
|
func TestSecret(t *testing.T) {
|
||
|
g := goblin.Goblin(t)
|
||
|
g.Describe("SecretReplacer", func() {
|
||
|
g.It("Should conceal secret", func() {
|
||
|
secrets := []*model.Secret{
|
||
|
{
|
||
|
Name: "SECRET",
|
||
|
Value: "secret_value",
|
||
|
Conceal: true,
|
||
|
},
|
||
|
}
|
||
|
r := NewSecretReplacer(secrets)
|
||
|
g.Assert(r.Replace(testString)).Equal("This is SECRET: *****")
|
||
|
})
|
||
|
|
||
|
g.It("Should not conceal secret", func() {
|
||
|
secrets := []*model.Secret{
|
||
|
{
|
||
|
Name: "SECRET",
|
||
|
Value: "secret_value",
|
||
|
Conceal: false,
|
||
|
},
|
||
|
}
|
||
|
r := NewSecretReplacer(secrets)
|
||
|
g.Assert(r.Replace(testString)).Equal(testString)
|
||
|
})
|
||
|
})
|
||
|
}
|