2016-03-21 19:28:42 -04:00
|
|
|
// Copyright 2016 The Hugo Authors. All rights reserved.
|
|
|
|
//
|
|
|
|
// 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 hugofs
|
|
|
|
|
|
|
|
import (
|
2016-10-24 14:56:00 -04:00
|
|
|
"testing"
|
|
|
|
|
2021-06-09 04:58:18 -04:00
|
|
|
"github.com/gohugoio/hugo/config"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
|
|
|
"github.com/gohugoio/hugo/htesting/hqt"
|
2016-03-21 19:28:42 -04:00
|
|
|
"github.com/spf13/afero"
|
|
|
|
)
|
|
|
|
|
2022-03-21 04:35:15 -04:00
|
|
|
func TestIsOsFs(t *testing.T) {
|
|
|
|
c := qt.New(t)
|
|
|
|
|
|
|
|
c.Assert(IsOsFs(Os), qt.Equals, true)
|
|
|
|
c.Assert(IsOsFs(&afero.MemMapFs{}), qt.Equals, false)
|
|
|
|
c.Assert(IsOsFs(afero.NewBasePathFs(&afero.MemMapFs{}, "/public")), qt.Equals, false)
|
|
|
|
c.Assert(IsOsFs(afero.NewBasePathFs(Os, t.TempDir())), qt.Equals, true)
|
|
|
|
|
|
|
|
}
|
|
|
|
|
2017-01-10 04:55:03 -05:00
|
|
|
func TestNewDefault(t *testing.T) {
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
v := config.New()
|
2022-03-21 04:35:15 -04:00
|
|
|
v.Set("workingDir", t.TempDir())
|
2023-01-04 12:24:36 -05:00
|
|
|
v.Set("publishDir", "public")
|
|
|
|
f := NewDefaultOld(v)
|
2016-03-21 19:28:42 -04:00
|
|
|
|
2022-03-21 04:35:15 -04:00
|
|
|
c.Assert(f.Source, qt.IsNotNil)
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(f.Source, hqt.IsSameType, new(afero.OsFs))
|
2022-03-21 04:35:15 -04:00
|
|
|
c.Assert(f.Os, qt.IsNotNil)
|
|
|
|
c.Assert(f.WorkingDirReadOnly, qt.IsNotNil)
|
|
|
|
c.Assert(f.WorkingDirReadOnly, hqt.IsSameType, new(afero.BasePathFs))
|
|
|
|
c.Assert(IsOsFs(f.Source), qt.IsTrue)
|
|
|
|
c.Assert(IsOsFs(f.WorkingDirReadOnly), qt.IsTrue)
|
|
|
|
c.Assert(IsOsFs(f.PublishDir), qt.IsTrue)
|
|
|
|
c.Assert(IsOsFs(f.Os), qt.IsTrue)
|
2016-03-21 19:28:42 -04:00
|
|
|
}
|