mirror of
https://github.com/kyverno/kyverno.git
synced 2024-12-14 11:57:48 +00:00
23 lines
588 B
Go
23 lines
588 B
Go
package event
|
|
|
|
import (
|
|
"fmt"
|
|
"testing"
|
|
|
|
"gotest.tools/assert"
|
|
)
|
|
|
|
func TestPositive(t *testing.T) {
|
|
resourceName := "test_resource"
|
|
expectedMsg := fmt.Sprintf("Policy applied successfully on the resource '%s'", resourceName)
|
|
msg, err := getEventMsg(SPolicyApply, resourceName)
|
|
assert.NilError(t, err)
|
|
assert.Equal(t, expectedMsg, msg)
|
|
}
|
|
|
|
// passing incorrect args
|
|
func TestIncorrectArgs(t *testing.T) {
|
|
resourceName := "test_resource"
|
|
_, err := getEventMsg(SPolicyApply, resourceName, "extra_args")
|
|
assert.Error(t, err, "message expects 1 arguments, but 2 arguments passed")
|
|
}
|