Skip to content

Commit

Permalink
Move admissions tests to tables
Browse files Browse the repository at this point in the history
Signed-off-by: Todd Short <tshort@redhat.com>
  • Loading branch information
tmshort committed Nov 14, 2023
1 parent 097fcf3 commit 9c31974
Showing 1 changed file with 43 additions and 48 deletions.
91 changes: 43 additions & 48 deletions internal/controllers/admission_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -19,45 +19,56 @@ func operator(spec operatorsv1alpha1.OperatorSpec) *operatorsv1alpha1.Operator {
}
}

func TestOperatorSpecIsEmpty(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

cl, err := newClient()
require.NoError(t, err)
require.NotNil(t, cl)
err = cl.Create(ctx, operator(operatorsv1alpha1.OperatorSpec{}))
require.Error(t, err)
require.ErrorContains(t, err, "spec.packageName in body should match '^[a-z0-9]+(-[a-z0-9]+)*$'")
type testData struct {
spec *operatorsv1alpha1.Operator
comment string
errMsg string
}

func TestOperatorLongPackageName(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

cl, err := newClient()
require.NoError(t, err)
require.NotNil(t, cl)
err = cl.Create(ctx, operator(operatorsv1alpha1.OperatorSpec{
PackageName: "this-is-a-really-long-package-name-that-is-greater-than-48-characters",
}))
require.Error(t, err)
require.ErrorContains(t, err, "Too long: may not be longer than 48")
var operatorData = []testData{
{
operator(operatorsv1alpha1.OperatorSpec{}),
"operator spec is empty",
"spec.packageName in body should match '^[a-z0-9]+(-[a-z0-9]+)*$'",
},
{
operator(operatorsv1alpha1.OperatorSpec{
PackageName: "this-is-a-really-long-package-name-that-is-greater-than-48-characters",
}),
"long package name",
"spec.packageName: Too long: may not be longer than 48",
},
{
operator(operatorsv1alpha1.OperatorSpec{
PackageName: "package",
Version: "1234567890.1234567890.12345678901234567890123456789012345678901234",
}),
"long valid semver",
"spec.version: Too long: may not be longer than 64",
},
{
operator(operatorsv1alpha1.OperatorSpec{
PackageName: "package",
Channel: "longname01234567890123456789012345678901234567890",
}),
"long channel name",
"spec.channel: Too long: may not be longer than 48",
},
}

func TestOperatorLongValidSemver(t *testing.T) {
func TestOperatorSpecs(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

cl, err := newClient()
require.NoError(t, err)
require.NotNil(t, cl)
err = cl.Create(ctx, operator(operatorsv1alpha1.OperatorSpec{
PackageName: "package",
Version: "1234567890.1234567890.12345678901234567890123456789012345678901234",
}))
require.Error(t, err)
require.ErrorContains(t, err, "Too long: may not be longer than 64")
for _, d := range operatorData {
t.Logf("Running %s", d.comment)
cl, err := newClient()
require.NoError(t, err)
require.NotNil(t, cl)
err = cl.Create(ctx, d.spec)
require.Error(t, err)
require.ErrorContains(t, err, d.errMsg)
}
}

func TestOperatorInvalidSemver(t *testing.T) {
Expand Down Expand Up @@ -202,19 +213,3 @@ func TestOperatorValidChannel(t *testing.T) {
require.NoErrorf(t, err, "unexpected error deleting valid channel '%q': %w", validChannel, err)
}
}

func TestOperatorLongValidChannel(t *testing.T) {
ctx, cancel := context.WithCancel(context.Background())
defer cancel()

cl, err := newClient()
require.NoError(t, err)
require.NotNil(t, cl)
err = cl.Create(ctx, operator(operatorsv1alpha1.OperatorSpec{
PackageName: "package",
Channel: "longname01234567890123456789012345678901234567890",
}))

require.Error(t, err)
require.ErrorContains(t, err, "spec.channel: Too long: may not be longer than 48")
}

0 comments on commit 9c31974

Please sign in to comment.