mirror of
https://github.com/gohugoio/hugo.git
synced 2025-08-13 20:24:00 +02:00
hugolib: Extend the sections API
This commit adds some section related methods that have been asked for: * .CurrentSection * .IsDescendant * .IsAncestor Fixes #3591
This commit is contained in:
@@ -64,6 +64,45 @@ func TestFirstUpper(t *testing.T) {
|
||||
}
|
||||
}
|
||||
|
||||
func TestHasStringsPrefix(t *testing.T) {
|
||||
for i, this := range []struct {
|
||||
s []string
|
||||
prefix []string
|
||||
expect bool
|
||||
}{
|
||||
{[]string{"a"}, []string{"a"}, true},
|
||||
{[]string{}, []string{}, true},
|
||||
{[]string{"a", "b", "c"}, []string{"a", "b"}, true},
|
||||
{[]string{"d", "a", "b", "c"}, []string{"a", "b"}, false},
|
||||
{[]string{"abra", "ca", "dabra"}, []string{"abra", "ca"}, true},
|
||||
{[]string{"abra", "ca"}, []string{"abra", "ca", "dabra"}, false},
|
||||
} {
|
||||
result := HasStringsPrefix(this.s, this.prefix)
|
||||
if result != this.expect {
|
||||
t.Fatalf("[%d] got %t but expected %t", i, result, this.expect)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
func TestHasStringsSuffix(t *testing.T) {
|
||||
for i, this := range []struct {
|
||||
s []string
|
||||
suffix []string
|
||||
expect bool
|
||||
}{
|
||||
{[]string{"a"}, []string{"a"}, true},
|
||||
{[]string{}, []string{}, true},
|
||||
{[]string{"a", "b", "c"}, []string{"b", "c"}, true},
|
||||
{[]string{"abra", "ca", "dabra"}, []string{"abra", "ca"}, false},
|
||||
{[]string{"abra", "ca", "dabra"}, []string{"ca", "dabra"}, true},
|
||||
} {
|
||||
result := HasStringsSuffix(this.s, this.suffix)
|
||||
if result != this.expect {
|
||||
t.Fatalf("[%d] got %t but expected %t", i, result, this.expect)
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
var containsTestText = (`На берегу пустынных волн
|
||||
Стоял он, дум великих полн,
|
||||
И вдаль глядел. Пред ним широко
|
||||
|
Reference in New Issue
Block a user