mirror of
https://github.com/gohugoio/hugo.git
synced 2024-11-07 20:30:36 -05:00
d45fb72f67
Bring code to be better in line with documentation.
35 lines
678 B
Go
35 lines
678 B
Go
package target
|
|
|
|
import (
|
|
"testing"
|
|
)
|
|
|
|
func TestHTMLRedirectAlias(t *testing.T) {
|
|
var o Translator
|
|
o = new(HTMLRedirectAlias)
|
|
|
|
tests := []struct {
|
|
value string
|
|
expected string
|
|
}{
|
|
{"", ""},
|
|
{"s", "s/index.html"},
|
|
{"/", "/index.html"},
|
|
{"alias 1", "alias-1/index.html"},
|
|
{"alias 2/", "alias-2/index.html"},
|
|
{"alias 3.html", "alias-3.html"},
|
|
{"alias4.html", "alias4.html"},
|
|
{"/alias 5.html", "/alias-5.html"},
|
|
}
|
|
|
|
for _, test := range tests {
|
|
path, err := o.Translate(test.value)
|
|
if err != nil {
|
|
t.Fatalf("Translate returned an error: %s", err)
|
|
}
|
|
|
|
if path != test.expected {
|
|
t.Errorf("Expected: %s, got: %s", test.expected, path)
|
|
}
|
|
}
|
|
}
|