forked from mirror/pkger
64 lines
1.5 KiB
Go
64 lines
1.5 KiB
Go
package here_test
|
|
|
|
import (
|
|
"os"
|
|
"path/filepath"
|
|
"strings"
|
|
"testing"
|
|
|
|
"github.com/markbates/pkger/here"
|
|
"github.com/markbates/pkger/pkging/pkgtest"
|
|
"github.com/stretchr/testify/require"
|
|
)
|
|
|
|
func Test_Info_Parse(t *testing.T) {
|
|
const name = "/public/index.html"
|
|
|
|
r := require.New(t)
|
|
|
|
app, err := pkgtest.NewRef()
|
|
r.NoError(err)
|
|
defer os.RemoveAll(app.Dir)
|
|
|
|
ip := app.Info.ImportPath
|
|
ip2 := "another/app"
|
|
|
|
table := []struct {
|
|
in string
|
|
exp here.Path
|
|
err bool
|
|
}{
|
|
{in: name, exp: here.Path{Pkg: ip, Name: name}},
|
|
{in: "", exp: here.Path{Pkg: ip, Name: "/"}},
|
|
{in: "/", exp: here.Path{Pkg: ip, Name: "/"}},
|
|
{in: filepath.Join(app.Info.Dir, name), exp: here.Path{Pkg: ip, Name: name}},
|
|
{in: ":" + name, exp: here.Path{Pkg: ip, Name: name}},
|
|
{in: ip + ":" + name, exp: here.Path{Pkg: ip, Name: name}},
|
|
{in: ip, exp: here.Path{Pkg: ip, Name: "/"}},
|
|
{in: ":", exp: here.Path{Pkg: ip, Name: "/"}},
|
|
{in: ip2 + ":" + name, exp: here.Path{Pkg: ip2, Name: name}},
|
|
{in: ip2, exp: here.Path{Pkg: ip2, Name: "/"}},
|
|
{in: ip2 + ":", exp: here.Path{Pkg: ip2, Name: "/"}},
|
|
{in: filepath.Join(app.Info.Dir, "public"), exp: here.Path{Pkg: ip, Name: "/public"}},
|
|
}
|
|
|
|
for _, tt := range table {
|
|
for _, in := range []string{tt.in, strings.ReplaceAll(tt.in, "/", "\\")} {
|
|
t.Run(in, func(st *testing.T) {
|
|
r := require.New(st)
|
|
|
|
pt, err := app.Info.Parse(in)
|
|
|
|
if tt.err {
|
|
r.Error(err)
|
|
return
|
|
}
|
|
r.NoError(err)
|
|
|
|
r.Equal(tt.exp, pt)
|
|
|
|
})
|
|
}
|
|
}
|
|
}
|