mirror of
https://github.com/project-zot/zot.git
synced 2026-06-16 04:17:55 +08:00
refactor(cli): Move cmdflags package under pkg/cli/client (#1840)
Signed-off-by: Alexei Dodon <adodon@cisco.com>
This commit is contained in:
@@ -0,0 +1,48 @@
|
||||
//go:build search
|
||||
// +build search
|
||||
|
||||
package client_test
|
||||
|
||||
import (
|
||||
"testing"
|
||||
|
||||
. "github.com/smartystreets/goconvey/convey"
|
||||
|
||||
. "zotregistry.io/zot/pkg/cli/client"
|
||||
gql_gen "zotregistry.io/zot/pkg/extensions/search/gql_generated"
|
||||
)
|
||||
|
||||
func TestSortFlagsMapping(t *testing.T) {
|
||||
// We do this to not import the whole gql_gen in the CLI
|
||||
Convey("Make sure the sort-by values map correctly to the gql enum type", t, func() {
|
||||
So(Flag2SortCriteria(SortByRelevance), ShouldResemble, string(gql_gen.SortCriteriaRelevance))
|
||||
So(Flag2SortCriteria(SortByUpdateTime), ShouldResemble, string(gql_gen.SortCriteriaUpdateTime))
|
||||
So(Flag2SortCriteria(SortByAlphabeticAsc), ShouldResemble, string(gql_gen.SortCriteriaAlphabeticAsc))
|
||||
So(Flag2SortCriteria(SortByAlphabeticDsc), ShouldResemble, string(gql_gen.SortCriteriaAlphabeticDsc))
|
||||
So(Flag2SortCriteria(SortBySeverity), ShouldResemble, string(gql_gen.SortCriteriaSeverity))
|
||||
})
|
||||
}
|
||||
|
||||
func TestSortFlags(t *testing.T) {
|
||||
Convey("Flags", t, func() {
|
||||
cveSortFlag := CVEListSortFlag("")
|
||||
err := cveSortFlag.Set("bad-flag")
|
||||
So(err, ShouldNotBeNil)
|
||||
|
||||
imageListSortFlag := ImageListSortFlag("")
|
||||
err = imageListSortFlag.Set("bad-flag")
|
||||
So(err, ShouldNotBeNil)
|
||||
|
||||
imageSearchSortFlag := ImageSearchSortFlag("")
|
||||
err = imageSearchSortFlag.Set("bad-flag")
|
||||
So(err, ShouldNotBeNil)
|
||||
|
||||
repoListSearchFlag := RepoListSortFlag("")
|
||||
err = repoListSearchFlag.Set("bad-flag")
|
||||
So(err, ShouldNotBeNil)
|
||||
})
|
||||
|
||||
Convey("Flag2SortCriteria", t, func() {
|
||||
So(Flag2SortCriteria("bad-flag"), ShouldResemble, "BAD_SORT_CRITERIA")
|
||||
})
|
||||
}
|
||||
Reference in New Issue
Block a user