2018-11-27 13:17:35 -05:00
|
|
|
// Copyright 2018 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 path
|
|
|
|
|
|
|
|
import (
|
|
|
|
"path/filepath"
|
|
|
|
"testing"
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
qt "github.com/frankban/quicktest"
|
2022-12-30 03:20:58 -05:00
|
|
|
"github.com/gohugoio/hugo/common/paths"
|
2023-01-04 12:24:36 -05:00
|
|
|
"github.com/gohugoio/hugo/config/testconfig"
|
2018-11-27 13:17:35 -05:00
|
|
|
)
|
|
|
|
|
2023-01-04 12:24:36 -05:00
|
|
|
func newNs() *Namespace {
|
|
|
|
return New(testconfig.GetTestDeps(nil, nil))
|
|
|
|
}
|
2018-11-27 13:17:35 -05:00
|
|
|
|
|
|
|
type tstNoStringer struct{}
|
|
|
|
|
|
|
|
func TestBase(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := newNs()
|
2018-11-27 13:17:35 -05:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
path any
|
|
|
|
expect any
|
2018-11-27 13:17:35 -05:00
|
|
|
}{
|
|
|
|
{filepath.FromSlash(`foo/bar.txt`), `bar.txt`},
|
|
|
|
{filepath.FromSlash(`foo/bar/txt `), `txt `},
|
|
|
|
{filepath.FromSlash(`foo/bar.t`), `bar.t`},
|
|
|
|
{`foo.bar.txt`, `foo.bar.txt`},
|
|
|
|
{`.x`, `.x`},
|
|
|
|
{``, `.`},
|
|
|
|
// errors
|
|
|
|
{tstNoStringer{}, false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Base(test.path)
|
2022-06-04 16:40:32 -04:00
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestBaseName(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := newNs()
|
2022-06-04 16:40:32 -04:00
|
|
|
|
|
|
|
for _, test := range []struct {
|
|
|
|
path any
|
|
|
|
expect any
|
|
|
|
}{
|
|
|
|
{filepath.FromSlash(`foo/bar.txt`), `bar`},
|
|
|
|
{filepath.FromSlash(`foo/bar/txt `), `txt `},
|
|
|
|
{filepath.FromSlash(`foo/bar.t`), `bar`},
|
|
|
|
{`foo.bar.txt`, `foo.bar`},
|
|
|
|
{`.x`, ``},
|
|
|
|
{``, `.`},
|
|
|
|
// errors
|
|
|
|
{tstNoStringer{}, false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.BaseName(test.path)
|
2018-11-27 13:17:35 -05:00
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2018-11-27 13:17:35 -05:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2018-11-27 13:17:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestDir(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := newNs()
|
2018-11-27 13:17:35 -05:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
path any
|
|
|
|
expect any
|
2018-11-27 13:17:35 -05:00
|
|
|
}{
|
|
|
|
{filepath.FromSlash(`foo/bar.txt`), `foo`},
|
|
|
|
{filepath.FromSlash(`foo/bar/txt `), `foo/bar`},
|
|
|
|
{filepath.FromSlash(`foo/bar.t`), `foo`},
|
|
|
|
{`foo.bar.txt`, `.`},
|
|
|
|
{`.x`, `.`},
|
|
|
|
{``, `.`},
|
|
|
|
// errors
|
|
|
|
{tstNoStringer{}, false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Dir(test.path)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2018-11-27 13:17:35 -05:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2018-11-27 13:17:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestExt(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := newNs()
|
2018-11-27 13:17:35 -05:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
path any
|
|
|
|
expect any
|
2018-11-27 13:17:35 -05:00
|
|
|
}{
|
|
|
|
{filepath.FromSlash(`foo/bar.json`), `.json`},
|
|
|
|
{`foo.bar.txt `, `.txt `},
|
|
|
|
{``, ``},
|
|
|
|
{`.x`, `.x`},
|
|
|
|
// errors
|
|
|
|
{tstNoStringer{}, false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Ext(test.path)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2018-11-27 13:17:35 -05:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2018-11-27 13:17:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestJoin(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := newNs()
|
2018-11-27 13:17:35 -05:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
elements any
|
|
|
|
expect any
|
2018-11-27 13:17:35 -05:00
|
|
|
}{
|
|
|
|
{
|
|
|
|
[]string{"", "baz", filepath.FromSlash(`foo/bar.txt`)},
|
|
|
|
`baz/foo/bar.txt`,
|
|
|
|
},
|
|
|
|
{
|
2022-12-30 03:20:58 -05:00
|
|
|
[]any{"", "baz", paths.DirFile{Dir: "big", File: "john"}, filepath.FromSlash(`foo/bar.txt`)},
|
2018-11-27 13:17:35 -05:00
|
|
|
`baz/big|john/foo/bar.txt`,
|
|
|
|
},
|
|
|
|
{nil, ""},
|
|
|
|
// errors
|
|
|
|
{tstNoStringer{}, false},
|
2022-03-17 17:03:27 -04:00
|
|
|
{[]any{"", tstNoStringer{}}, false},
|
2018-11-27 13:17:35 -05:00
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Join(test.elements)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2018-11-27 13:17:35 -05:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2018-11-27 13:17:35 -05:00
|
|
|
}
|
|
|
|
}
|
|
|
|
|
|
|
|
func TestSplit(t *testing.T) {
|
|
|
|
t.Parallel()
|
2019-08-10 15:05:17 -04:00
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := newNs()
|
2018-11-27 13:17:35 -05:00
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
path any
|
|
|
|
expect any
|
2018-11-27 13:17:35 -05:00
|
|
|
}{
|
2022-12-30 03:20:58 -05:00
|
|
|
{filepath.FromSlash(`foo/bar.txt`), paths.DirFile{Dir: `foo/`, File: `bar.txt`}},
|
|
|
|
{filepath.FromSlash(`foo/bar/txt `), paths.DirFile{Dir: `foo/bar/`, File: `txt `}},
|
|
|
|
{`foo.bar.txt`, paths.DirFile{Dir: ``, File: `foo.bar.txt`}},
|
|
|
|
{``, paths.DirFile{Dir: ``, File: ``}},
|
2018-11-27 13:17:35 -05:00
|
|
|
// errors
|
|
|
|
{tstNoStringer{}, false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Split(test.path)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
2018-11-27 13:17:35 -05:00
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
2019-08-10 15:05:17 -04:00
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
2018-11-27 13:17:35 -05:00
|
|
|
}
|
|
|
|
}
|
2021-10-05 10:15:10 -04:00
|
|
|
|
|
|
|
func TestClean(t *testing.T) {
|
|
|
|
t.Parallel()
|
|
|
|
c := qt.New(t)
|
2023-01-04 12:24:36 -05:00
|
|
|
ns := newNs()
|
2021-10-05 10:15:10 -04:00
|
|
|
|
|
|
|
for _, test := range []struct {
|
2022-03-17 17:03:27 -04:00
|
|
|
path any
|
|
|
|
expect any
|
2021-10-05 10:15:10 -04:00
|
|
|
}{
|
|
|
|
{filepath.FromSlash(`foo/bar.txt`), `foo/bar.txt`},
|
|
|
|
{filepath.FromSlash(`foo/bar/txt`), `foo/bar/txt`},
|
|
|
|
{filepath.FromSlash(`foo/bar`), `foo/bar`},
|
|
|
|
{filepath.FromSlash(`foo/bar.t`), `foo/bar.t`},
|
|
|
|
{``, `.`},
|
|
|
|
// errors
|
|
|
|
{tstNoStringer{}, false},
|
|
|
|
} {
|
|
|
|
|
|
|
|
result, err := ns.Clean(test.path)
|
|
|
|
|
|
|
|
if b, ok := test.expect.(bool); ok && !b {
|
|
|
|
c.Assert(err, qt.Not(qt.IsNil))
|
|
|
|
continue
|
|
|
|
}
|
|
|
|
|
|
|
|
c.Assert(err, qt.IsNil)
|
|
|
|
c.Assert(result, qt.Equals, test.expect)
|
|
|
|
}
|
|
|
|
}
|