github.com/graemephi/kahugo@v0.62.3-0.20211121071557-d78c0423784d/hugofs/fs_test.go (about)

     1  // Copyright 2016 The Hugo Authors. All rights reserved.
     2  //
     3  // Licensed under the Apache License, Version 2.0 (the "License");
     4  // you may not use this file except in compliance with the License.
     5  // You may obtain a copy of the License at
     6  // http://www.apache.org/licenses/LICENSE-2.0
     7  //
     8  // Unless required by applicable law or agreed to in writing, software
     9  // distributed under the License is distributed on an "AS IS" BASIS,
    10  // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
    11  // See the License for the specific language governing permissions and
    12  // limitations under the License.
    13  
    14  package hugofs
    15  
    16  import (
    17  	"testing"
    18  
    19  	"github.com/gohugoio/hugo/config"
    20  
    21  	qt "github.com/frankban/quicktest"
    22  	"github.com/gohugoio/hugo/htesting/hqt"
    23  	"github.com/spf13/afero"
    24  )
    25  
    26  func TestNewDefault(t *testing.T) {
    27  	c := qt.New(t)
    28  	v := config.New()
    29  	f := NewDefault(v)
    30  
    31  	c.Assert(f.Source, qt.Not(qt.IsNil))
    32  	c.Assert(f.Source, hqt.IsSameType, new(afero.OsFs))
    33  	c.Assert(f.Os, qt.Not(qt.IsNil))
    34  	c.Assert(f.WorkingDir, qt.IsNil)
    35  }
    36  
    37  func TestNewMem(t *testing.T) {
    38  	c := qt.New(t)
    39  	v := config.New()
    40  	f := NewMem(v)
    41  
    42  	c.Assert(f.Source, qt.Not(qt.IsNil))
    43  	c.Assert(f.Source, hqt.IsSameType, new(afero.MemMapFs))
    44  	c.Assert(f.Destination, qt.Not(qt.IsNil))
    45  	c.Assert(f.Destination, hqt.IsSameType, new(afero.MemMapFs))
    46  	c.Assert(f.Os, hqt.IsSameType, new(afero.OsFs))
    47  	c.Assert(f.WorkingDir, qt.IsNil)
    48  }
    49  
    50  func TestWorkingDir(t *testing.T) {
    51  	c := qt.New(t)
    52  	v := config.New()
    53  
    54  	v.Set("workingDir", "/a/b/")
    55  
    56  	f := NewMem(v)
    57  
    58  	c.Assert(f.WorkingDir, qt.Not(qt.IsNil))
    59  	c.Assert(f.WorkingDir, hqt.IsSameType, new(afero.BasePathFs))
    60  }