-
Notifications
You must be signed in to change notification settings - Fork 153
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Fix gitops check
#4158
Merged
Fix gitops check
#4158
Changes from all commits
Commits
Show all changes
2 commits
Select commit
Hold shift + click to select a range
File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,40 +1,78 @@ | ||
package check | ||
package check_test | ||
|
||
import ( | ||
"github.com/Masterminds/semver/v3" | ||
"errors" | ||
"testing" | ||
|
||
"k8s.io/apimachinery/pkg/runtime" | ||
"k8s.io/apimachinery/pkg/version" | ||
fakediscovery "k8s.io/client-go/discovery/fake" | ||
fakeclientset "k8s.io/client-go/kubernetes/fake" | ||
kubetesting "k8s.io/client-go/testing" | ||
|
||
. "github.com/onsi/ginkgo/v2" | ||
. "github.com/onsi/gomega" | ||
"github.com/weaveworks/weave-gitops/pkg/services/check" | ||
) | ||
|
||
var _ = Describe("Check kubernetes version", func() { | ||
It("should show kuberetes is a valid version", func() { | ||
version, err := semver.NewVersion("1.21.1") | ||
Expect(err).ShouldNot(HaveOccurred()) | ||
|
||
output, err := checkKubernetesVersion(version) | ||
Expect(err).ShouldNot(HaveOccurred()) | ||
func TestKubernetesVersionWithError(t *testing.T) { | ||
g := NewWithT(t) | ||
|
||
Expect(output).To(Equal("✔ Kubernetes 1.21.1 >=1.20.6-0")) | ||
expectedError := errors.New("an error occurred") | ||
fakeClient := fakeclientset.NewSimpleClientset() | ||
fakeClient.Discovery().(*fakediscovery.FakeDiscovery).PrependReactor("*", "*", func(action kubetesting.Action) (handled bool, ret runtime.Object, err error) { | ||
return true, nil, expectedError | ||
}) | ||
|
||
It("should fail with version does not match", func() { | ||
version, err := semver.NewVersion("1.19.1") | ||
Expect(err).ShouldNot(HaveOccurred()) | ||
res, err := check.KubernetesVersion(fakeClient.Discovery()) | ||
|
||
_, err = checkKubernetesVersion(version) | ||
Expect(err.Error()).Should(Equal("✗ kubernetes version 1.19.1 does not match >=1.20.6-0")) | ||
}) | ||
}) | ||
g.Expect(err).To(MatchError(ContainSubstring(expectedError.Error()))) | ||
g.Expect(res).To(BeEmpty()) | ||
} | ||
|
||
var _ = Describe("parse version", func() { | ||
It("should parse version", func() { | ||
expectedVersion, err := semver.NewVersion("1.21.1") | ||
Expect(err).ShouldNot(HaveOccurred()) | ||
func TestKubernetesVersion(t *testing.T) { | ||
tests := []struct { | ||
name string | ||
serverVersion string | ||
expectedErr string | ||
expectedRes string | ||
}{ | ||
{ | ||
name: "server version satisfies constraint", | ||
serverVersion: "v1.28.4", | ||
expectedRes: `^✔ Kubernetes 1.28.4 >=1.`, | ||
}, | ||
{ | ||
name: "server version too low", | ||
serverVersion: "v1.20.5", | ||
expectedErr: `✗ kubernetes version v1\.20\.5 does not match >=1\.`, | ||
}, | ||
{ | ||
name: "server version not semver compliant", | ||
serverVersion: "1.x", | ||
expectedErr: `"1.x".*Invalid Semantic Version`, | ||
}, | ||
} | ||
|
||
output, err := parseVersion("Server Version: v1.21.1") | ||
Expect(err).ShouldNot(HaveOccurred()) | ||
for _, tt := range tests { | ||
t.Run(tt.name, func(t *testing.T) { | ||
g := NewWithT(t) | ||
client := fakeclientset.NewSimpleClientset() | ||
fakeDiscovery, ok := client.Discovery().(*fakediscovery.FakeDiscovery) | ||
if !ok { | ||
t.Fatalf("couldn't convert Discovery() to *FakeDiscovery") | ||
} | ||
|
||
Expect(output).To(Equal(expectedVersion)) | ||
}) | ||
}) | ||
fakeDiscovery.FakedServerVersion = &version.Info{ | ||
GitVersion: tt.serverVersion, | ||
} | ||
|
||
res, err := check.KubernetesVersion(client.Discovery()) | ||
|
||
if tt.expectedErr != "" { | ||
g.Expect(err).To(MatchError(MatchRegexp(tt.expectedErr))) | ||
} | ||
|
||
g.Expect(res).To(MatchRegexp(tt.expectedRes)) | ||
}) | ||
} | ||
} |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
🙇🏻♂️