Add Translate to target
authorNoah Campbell <noahcampbell@gmail.com>
Sun, 1 Sep 2013 16:24:03 +0000 (09:24 -0700)
committerNoah Campbell <noahcampbell@gmail.com>
Wed, 4 Sep 2013 03:00:22 +0000 (20:00 -0700)
Translate handles Ugly Urls.

hugolib/planner.go
hugolib/site_show_plan_test.go
target/file.go
target/file_test.go [new file with mode: 0644]

index 826572493aa274f3d82535545e9455a2d08cd4e9..52a54e9bf21d83a8ba8ed4a8b20a05543f7fdeb1 100644 (file)
@@ -1,8 +1,8 @@
 package hugolib
 
 import (
-       "io"
        "fmt"
+       "io"
 )
 
 func (s *Site) ShowPlan(out io.Writer) (err error) {
index 272297940dbbb49b4183f14803b6ce25e8667dc0..40366e6cc109b8fb573b526f756145d71eb8b9bd 100644 (file)
@@ -1,8 +1,8 @@
 package hugolib
 
 import (
-       "testing"
        "bytes"
+       "testing"
 )
 
 func checkShowPlanExpected(t *testing.T, expected, got string) {
@@ -15,7 +15,7 @@ func TestDegenerateNoFiles(t *testing.T) {
        s := new(Site)
        out := new(bytes.Buffer)
        if err := s.ShowPlan(out); err != nil {
-               t.Errorf("ShowPlan unexpectedly returned an error: %s", err) 
+               t.Errorf("ShowPlan unexpectedly returned an error: %s", err)
        }
        expected := "No source files provided.\n"
        got := out.String()
index a80d73dbea2987cd8c8a767be3897fd0d0b8d186..ac7ab105c523ba2a5262082f11216eabe0d122db 100644 (file)
@@ -1,9 +1,53 @@
 package target
 
 import (
+       "fmt"
        "io"
+       "path"
 )
 
 type Publisher interface {
        Publish(string, io.Reader) error
 }
+
+type Translator interface {
+       Translate(string) (string, error)
+}
+
+type Filesystem struct {
+       UglyUrls         bool
+       DefaultExtension string
+}
+
+func (fs *Filesystem) Translate(src string) (dest string, err error) {
+       if fs.UglyUrls {
+               return src, nil
+       }
+
+       dir, file := path.Split(src)
+       ext := fs.extension(path.Ext(file))
+       name := filename(file)
+
+       return path.Join(dir, name, fmt.Sprintf("index%s", ext)), nil
+}
+
+func (fs *Filesystem) extension(ext string) string {
+       if ext != "" {
+               return ext
+       }
+
+       if fs.DefaultExtension != "" {
+               return fs.DefaultExtension
+       }
+
+       return ".html"
+}
+
+func filename(f string) string {
+       ext := path.Ext(f)
+       if ext == "" {
+               return f
+       }
+
+       return f[:len(f)-len(ext)]
+}
diff --git a/target/file_test.go b/target/file_test.go
new file mode 100644 (file)
index 0000000..1c31f5c
--- /dev/null
@@ -0,0 +1,51 @@
+package target
+
+import (
+       "testing"
+)
+
+func TestFileTranslator(t *testing.T) {
+       tests := []struct {
+               content  string
+               expected string
+       }{
+               {"foo", "foo/index.html"},
+               {"foo.html", "foo/index.html"},
+               {"foo.xhtml", "foo/index.xhtml"},
+               {"section/foo", "section/foo/index.html"},
+               {"section/foo.html", "section/foo/index.html"},
+               {"section/foo.rss", "section/foo/index.rss"},
+       }
+
+       for _, test := range tests {
+               f := new(Filesystem)
+               dest, err := f.Translate(test.content)
+               if err != nil {
+                       t.Fatalf("Translate returned and unexpected err: %s", err)
+               }
+
+               if dest != test.expected {
+                       t.Errorf("Tranlate expected return: %s, got: %s", test.expected, dest)
+               }
+       }
+}
+
+func TestTranslateUglyUrls(t *testing.T) {
+       f := &Filesystem{UglyUrls: true}
+       dest, err := f.Translate("foo.html")
+       if err != nil {
+               t.Fatalf("Translate returned an unexpected err: %s", err)
+       }
+
+       if dest != "foo.html" {
+               t.Errorf("Translate expected return: %s, got: %s", "foo.html", dest)
+       }
+}
+
+func TestTranslateDefaultExtension(t *testing.T) {
+       f := &Filesystem{DefaultExtension: ".foobar"}
+       dest, _ := f.Translate("baz")
+       if dest != "baz/index.foobar" {
+               t.Errorf("Translate expected return: %s, got %s", "baz/index.foobar", dest)
+       }
+}