Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
45 changes: 45 additions & 0 deletions pkg/cli/alpha/command_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,45 @@
/*
Copyright 2023 The Kubernetes 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.
*/

//lint:ignore ST1001 we use dot-imports in tests for brevity

package alpha

import (
"testing"

. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)

// Figuring out ways to test run these tests similar to existing.
// Currently unable to run without this on VSCode. Will remove once done
func TestCommand(t *testing.T) {
RegisterFailHandler(Fail)
RunSpecs(t, "alpha")
}

var _ = Describe("NewScaffoldCommand", func() {
When("NewScaffoldCommand", func() {
It("Testing the NewScaffoldCommand", func() {
cmd := NewScaffoldCommand()
Expect(cmd).NotTo(BeNil())
Expect(cmd.Use).NotTo(Equal(""))
Expect(cmd.Use).To(ContainSubstring("generate"))
Expect(cmd.Short).NotTo(Equal(""))
Expect(cmd.Short).To(ContainSubstring("Re-scaffold a Kubebuilder project from its PROJECT file"))
Expect(cmd.Example).NotTo(Equal(""))
Expect(cmd.Example).To(ContainSubstring("kubebuilder alpha generate"))
})
})
})
34 changes: 34 additions & 0 deletions pkg/cli/alpha/update_test.go
Original file line number Diff line number Diff line change
@@ -0,0 +1,34 @@
/*
Copyright 2023 The Kubernetes 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.
*/

//lint:ignore ST1001 we use dot-imports in tests for brevity

package alpha

import (
. "github.com/onsi/ginkgo/v2"
. "github.com/onsi/gomega"
)

var _ = Describe("NewUpdateCommand", func() {
When("NewUpdateCommand", func() {
It("Testing the NewUpdateCommand", func() {
cmd := NewUpdateCommand()
Expect(cmd).NotTo(BeNil())
Expect(cmd.Use).NotTo(Equal(""))
Expect(cmd.Use).To(ContainSubstring("update"))
Expect(cmd.Short).NotTo(Equal(""))
Expect(cmd.Short).To(ContainSubstring("Update a Kubebuilder project to a newer version"))
})
})
})
Loading