shithub: hugo

ref: 05102f1b79b94b88b60dfcfc00f66cb30ca912c7
dir: /target/alias_test.go/

View raw version
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"},
		{"/трям.html", "/трям.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)
		}
	}
}