summaryrefslogtreecommitdiff
path: root/generator/app_test.go
diff options
context:
space:
mode:
authorJamie Hannaford <jamie.hannaford@rackspace.com>2017-06-15 14:25:20 +0200
committerJamie Hannaford <jamie.hannaford@rackspace.com>2017-06-26 11:35:35 +0200
commiteab658607d41550c3cad7e7a83c7da3752a01eb9 (patch)
tree509c18db30ff00ba16a9fdd4cf8126754055fd50 /generator/app_test.go
parentf3375f168e247c570d32e2b12639af671fa64ab9 (diff)
Add tests
Diffstat (limited to 'generator/app_test.go')
-rw-r--r--generator/app_test.go136
1 files changed, 136 insertions, 0 deletions
diff --git a/generator/app_test.go b/generator/app_test.go
new file mode 100644
index 00000000..1ef3a574
--- /dev/null
+++ b/generator/app_test.go
@@ -0,0 +1,136 @@
+/*
+Copyright 2017 The Kubernetes Authors.
+
+Licensed under the Apache License, Version 2.0 (the "License");
+you may not use this file except in compliance with the License.
+You may obtain a copy of the License at
+
+ http://www.apache.org/licenses/LICENSE-2.0
+
+Unless required by applicable law or agreed to in writing, software
+distributed under the License is distributed on an "AS IS" BASIS,
+WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+See the License for the specific language governing permissions and
+limitations under the License.
+*/
+
+package main
+
+import (
+ "io/ioutil"
+ "strings"
+ "testing"
+)
+
+func TestNonExistantDirIsCreated(t *testing.T) {
+ dir := "/tmp/nonexistent"
+ err := createDirIfNotExists(dir)
+ if err != nil {
+ t.Fatalf("Received error creating dir: %v", err)
+ }
+ if !pathExists(dir) {
+ t.Fatalf("%s should exist", dir)
+ }
+}
+
+func TestGetExistingData(t *testing.T) {
+ cases := []struct {
+ path string
+ expected string
+ expectErr bool
+ }{
+ {
+ path: "./testdata/custom_content.md",
+ expected: "FOO BAR BAZ",
+ expectErr: false,
+ },
+ {
+ path: "./testdata/no_custom_content.md",
+ expected: "",
+ expectErr: false,
+ },
+ {
+ path: "./testdata/foo.md",
+ expected: "",
+ expectErr: true,
+ },
+ }
+
+ for _, c := range cases {
+ content, err := getExistingContent(c.path)
+ if err != nil && c.expectErr == false {
+ t.Fatalf("Received unexpected error for %s: %v", c.path, err)
+ }
+ if err == nil && c.expectErr == true {
+ t.Fatalf("Expected error for %s but received none", c.path)
+ }
+ if content != c.expected {
+ t.Fatalf("Expected %s but received %s", c.expected, content)
+ }
+ }
+}
+
+func TestWriteTemplate(t *testing.T) {
+ customContent := `
+<!-- BEGIN CUSTOM CONTENT -->
+Example
+custom
+content!
+
+<!-- END CUSTOM CONTENT -->
+`
+
+ cases := []struct {
+ templatePath string
+ outputPath string
+ data map[string]string
+ expectErr bool
+ expected string
+ }{
+ {
+ templatePath: "./testdata/non_existent_template.tmpl",
+ expectErr: true,
+ },
+ {
+ templatePath: "./testdata/example.tmpl",
+ outputPath: "/tmp/non_existing_path.md",
+ expectErr: false,
+ data: map[string]string{"Message": "Hello!"},
+ expected: "Hello!",
+ },
+ {
+ templatePath: "./testdata/example.tmpl",
+ outputPath: "./testdata/example.md",
+ expectErr: false,
+ data: map[string]string{"Message": "Hello!"},
+ expected: customContent,
+ },
+ {
+ templatePath: "./testdata/example.tmpl",
+ outputPath: "/tmp/non_existing_path.md",
+ expectErr: false,
+ data: map[string]string{"Message": "Hello!"},
+ expected: "Last generated: ",
+ },
+ }
+
+ for _, c := range cases {
+ err := writeTemplate(c.templatePath, c.outputPath, c.data)
+ if err != nil && c.expectErr == false {
+ t.Fatalf("Received unexpected error for %s: %v", c.templatePath, err)
+ }
+ if c.expectErr {
+ if err == nil {
+ t.Fatalf("Expected error for %s but received none", c.templatePath)
+ }
+ continue
+ }
+ content, err := ioutil.ReadFile(c.outputPath)
+ if err != nil {
+ t.Fatalf("%s should exist", c.outputPath)
+ }
+ if strings.Contains(string(content), c.expected) == false {
+ t.Fatalf("%s was not found in %s", c.expected, c.outputPath)
+ }
+ }
+}