Fix two tests that are broken on Windows
authorBrian Fitzgerald <neurocline@gmail.com>
Fri, 23 Mar 2018 05:11:35 +0000 (22:11 -0700)
committerBjørn Erik Pedersen <bjorn.erik.pedersen@gmail.com>
Thu, 5 Apr 2018 06:35:06 +0000 (08:35 +0200)
Put guards around TestPageBundlerCaptureSymlinks and
TestPageBundlerSiteWitSymbolicLinksInContent so that they aren't
run on Windows (they both use symbolic links and the Go library
implementation requires administrator mode on Windows).

hugolib/page_bundler_capture_test.go
hugolib/page_bundler_test.go

index 6ef396d29fb73d2c0cfef41f9275b51477bfa9b2..c073837970f80ff435dbaf2111db61cf457c00e1 100644 (file)
@@ -22,6 +22,7 @@ import (
 
        jww "github.com/spf13/jwalterweatherman"
 
+       "runtime"
        "strings"
        "sync"
        "testing"
@@ -82,6 +83,10 @@ func (s *storeFilenames) sortedStr() string {
 }
 
 func TestPageBundlerCaptureSymlinks(t *testing.T) {
+       if runtime.GOOS == "windows" && os.Getenv("CI") == "" {
+               t.Skip("Skip TestPageBundlerCaptureSymlinks as os.Symlink needs administrator rights on Windows")
+       }
+
        assert := require.New(t)
        ps, workDir := newTestBundleSymbolicSources(t)
        sourceSpec := source.NewSourceSpec(ps, ps.BaseFs.ContentFs)
@@ -92,7 +97,7 @@ func TestPageBundlerCaptureSymlinks(t *testing.T) {
 
        assert.NoError(c.capture())
 
-       // Symlik back to content skipped to prevent infinite recursion.
+       // Symlink back to content skipped to prevent infinite recursion.
        assert.Equal(uint64(3), logger.LogCountForLevelsGreaterThanorEqualTo(jww.LevelWarn))
 
        expected := `
index 52b5b830d7b181ed5555068aa93b9d2d6efa274d..34e4ef6e42df476ac7a8f042fff7ef0adf710adf 100644 (file)
@@ -308,6 +308,10 @@ func TestMultilingualDisableLanguage(t *testing.T) {
 }
 
 func TestPageBundlerSiteWitSymbolicLinksInContent(t *testing.T) {
+       if runtime.GOOS == "windows" && os.Getenv("CI") == "" {
+               t.Skip("Skip TestPageBundlerSiteWitSymbolicLinksInContent as os.Symlink needs administrator rights on Windows")
+       }
+
        assert := require.New(t)
        ps, workDir := newTestBundleSymbolicSources(t)
        cfg := ps.Cfg