2015-12-10 17:19:38 -05:00
|
|
|
// Copyright 2015 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.
|
|
|
|
|
2015-03-12 15:50:44 -04:00
|
|
|
package source
|
|
|
|
|
|
|
|
import (
|
2016-12-31 11:46:11 -05:00
|
|
|
"path/filepath"
|
2016-05-07 17:34:53 -04:00
|
|
|
"strings"
|
2015-03-12 15:50:44 -04:00
|
|
|
"testing"
|
2016-05-07 17:34:53 -04:00
|
|
|
|
2017-06-13 12:42:45 -04:00
|
|
|
"github.com/gohugoio/hugo/hugofs"
|
2017-02-04 22:20:06 -05:00
|
|
|
"github.com/spf13/viper"
|
|
|
|
|
2016-05-07 17:34:53 -04:00
|
|
|
"github.com/stretchr/testify/assert"
|
2015-03-12 15:50:44 -04:00
|
|
|
)
|
|
|
|
|
|
|
|
func TestFileUniqueID(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
ss := newTestSourceSpec()
|
|
|
|
|
2015-03-12 15:50:44 -04:00
|
|
|
f1 := File{uniqueID: "123"}
|
2017-02-04 22:20:06 -05:00
|
|
|
f2 := ss.NewFile("a")
|
2015-03-12 15:50:44 -04:00
|
|
|
|
|
|
|
assert.Equal(t, "123", f1.UniqueID())
|
|
|
|
assert.Equal(t, "0cc175b9c0f1b6a831c399e269772661", f2.UniqueID())
|
2016-12-31 11:46:11 -05:00
|
|
|
|
2017-02-04 22:20:06 -05:00
|
|
|
f3 := ss.NewFile(filepath.FromSlash("test1/index.md"))
|
|
|
|
f4 := ss.NewFile(filepath.FromSlash("test2/index.md"))
|
2016-12-31 11:46:11 -05:00
|
|
|
|
|
|
|
assert.NotEqual(t, f3.UniqueID(), f4.UniqueID())
|
2015-03-12 15:50:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileString(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
ss := newTestSourceSpec()
|
|
|
|
assert.Equal(t, "abc", ss.NewFileWithContents("a", strings.NewReader("abc")).String())
|
|
|
|
assert.Equal(t, "", ss.NewFile("a").String())
|
2015-03-12 15:50:44 -04:00
|
|
|
}
|
|
|
|
|
|
|
|
func TestFileBytes(t *testing.T) {
|
2017-02-04 22:20:06 -05:00
|
|
|
ss := newTestSourceSpec()
|
|
|
|
assert.Equal(t, []byte("abc"), ss.NewFileWithContents("a", strings.NewReader("abc")).Bytes())
|
|
|
|
assert.Equal(t, []byte(""), ss.NewFile("a").Bytes())
|
|
|
|
}
|
|
|
|
|
|
|
|
func newTestSourceSpec() SourceSpec {
|
|
|
|
v := viper.New()
|
|
|
|
return SourceSpec{Fs: hugofs.NewMem(v), Cfg: v}
|
2015-03-12 15:50:44 -04:00
|
|
|
}
|