mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
resources/page: Let GroupByParam return nil instead of error
Closes #12578
This commit is contained in:
parent
9c4e14eb4f
commit
cba2de6ec9
3 changed files with 13 additions and 19 deletions
|
@ -787,9 +787,12 @@ func TestGroupedPages(t *testing.T) {
|
||||||
t.Errorf("PageGroup has unexpected number of pages. First group should have '%d' pages, got '%d' pages", 2, len(byparam[0].Pages))
|
t.Errorf("PageGroup has unexpected number of pages. First group should have '%d' pages, got '%d' pages", 2, len(byparam[0].Pages))
|
||||||
}
|
}
|
||||||
|
|
||||||
_, err = s.RegularPages().GroupByParam("not_exist")
|
byNonExistentParam, err := s.RegularPages().GroupByParam("not_exist")
|
||||||
if err == nil {
|
if err != nil {
|
||||||
t.Errorf("GroupByParam didn't return an expected error")
|
t.Errorf("GroupByParam returned an error when it shouldn't")
|
||||||
|
}
|
||||||
|
if len(byNonExistentParam) != 0 {
|
||||||
|
t.Errorf("PageGroup array has unexpected elements. Group length should be '%d', got '%d'", 0, len(byNonExistentParam))
|
||||||
}
|
}
|
||||||
|
|
||||||
byOnlyOneParam, err := s.RegularPages().GroupByParam("only_one")
|
byOnlyOneParam, err := s.RegularPages().GroupByParam("only_one")
|
||||||
|
|
|
@ -205,7 +205,7 @@ func (p Pages) GroupByParam(key string, order ...string) (PagesGroup, error) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
if !tmp.IsValid() {
|
if !tmp.IsValid() {
|
||||||
return nil, errors.New("there is no such param")
|
return nil, nil
|
||||||
}
|
}
|
||||||
|
|
||||||
for _, e := range p {
|
for _, e := range p {
|
||||||
|
|
|
@ -142,15 +142,6 @@ func TestGroupByCalledWithEmptyPages(t *testing.T) {
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestGroupByParamCalledWithUnavailableKey(t *testing.T) {
|
|
||||||
t.Parallel()
|
|
||||||
pages := preparePageGroupTestPages(t)
|
|
||||||
_, err := pages.GroupByParam("UnavailableKey")
|
|
||||||
if err == nil {
|
|
||||||
t.Errorf("GroupByParam should return an error but didn't")
|
|
||||||
}
|
|
||||||
}
|
|
||||||
|
|
||||||
func TestReverse(t *testing.T) {
|
func TestReverse(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
pages := preparePageGroupTestPages(t)
|
pages := preparePageGroupTestPages(t)
|
||||||
|
@ -256,8 +247,8 @@ func TestGroupByParamCalledWithUnavailableParam(t *testing.T) {
|
||||||
t.Parallel()
|
t.Parallel()
|
||||||
pages := preparePageGroupTestPages(t)
|
pages := preparePageGroupTestPages(t)
|
||||||
_, err := pages.GroupByParam("unavailable_param")
|
_, err := pages.GroupByParam("unavailable_param")
|
||||||
if err == nil {
|
if err != nil {
|
||||||
t.Errorf("GroupByParam should return an error but didn't")
|
t.Errorf("GroupByParam returned an error when it shouldn't")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue