Skip to content

Commit

Permalink
Fix some of the "new site" tests
Browse files Browse the repository at this point in the history
  • Loading branch information
spf13 committed Dec 8, 2015
1 parent b81fc1b commit e29ede7
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 6 deletions.
2 changes: 1 addition & 1 deletion commands/new.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,12 +15,12 @@ package commands

import (
"bytes"
"errors"
"os"
"path/filepath"
"strings"
"time"

"errors"
"github.com/spf13/cobra"
"github.com/spf13/hugo/create"
"github.com/spf13/hugo/helpers"
Expand Down
20 changes: 15 additions & 5 deletions commands/new_test.go
Original file line number Diff line number Diff line change
@@ -1,12 +1,13 @@
package commands

import (
"github.com/spf13/afero"
"github.com/spf13/hugo/hugofs"
"github.com/stretchr/testify/assert"
"os"
"path/filepath"
"testing"

"github.com/spf13/afero"
"github.com/spf13/hugo/hugofs"
"github.com/stretchr/testify/assert"
)

// Issue #1133
Expand Down Expand Up @@ -41,10 +42,20 @@ func TestDoNewSite(t *testing.T) {
checkNewSiteInited(basepath, t)
}

func TestDoNewSite_noerror_base_exists_but_empty(t *testing.T) {
basepath := filepath.Join(os.TempDir(), "blog")
hugofs.SourceFs = new(afero.MemMapFs)
hugofs.SourceFs.MkdirAll(basepath, 777)
err := doNewSite(basepath, false)
assert.Nil(t, err)
}

func TestDoNewSite_error_base_exists(t *testing.T) {
basepath := filepath.Join(os.TempDir(), "blog")
hugofs.SourceFs = new(afero.MemMapFs)
hugofs.SourceFs.MkdirAll(basepath, 777)
hugofs.SourceFs.Create(filepath.Join(basepath, "foo"))
// Since the directory already exists and isn't empty, expect an error
err := doNewSite(basepath, false)
assert.NotNil(t, err)
}
Expand All @@ -59,8 +70,7 @@ func TestDoNewSite_force_empty_dir(t *testing.T) {
checkNewSiteInited(basepath, t)
}

// TODO(spf13): Fix and re-enable this.
func _TestDoNewSite_error_force_dir_inside_exists(t *testing.T) {
func TestDoNewSite_error_force_dir_inside_exists(t *testing.T) {
basepath := filepath.Join(os.TempDir(), "blog")
contentPath := filepath.Join(basepath, "content")
hugofs.SourceFs = new(afero.MemMapFs)
Expand Down

0 comments on commit e29ede7

Please sign in to comment.