2019-08-01 19:03:12 +03:00
|
|
|
package parser
|
|
|
|
|
|
|
|
import (
|
2019-09-23 16:53:30 +03:00
|
|
|
"os"
|
2019-08-30 00:05:44 +03:00
|
|
|
"path/filepath"
|
2019-08-02 00:35:42 +03:00
|
|
|
"sort"
|
2019-08-01 19:03:12 +03:00
|
|
|
"testing"
|
|
|
|
|
2019-09-20 18:16:57 +03:00
|
|
|
"github.com/markbates/pkger/here"
|
2019-08-01 19:03:12 +03:00
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
)
|
|
|
|
|
2019-10-15 23:40:45 +03:00
|
|
|
func Test_Parser_App(t *testing.T) {
|
|
|
|
r := require.New(t)
|
|
|
|
|
|
|
|
pwd, err := os.Getwd()
|
|
|
|
r.NoError(err)
|
|
|
|
|
2019-10-17 22:08:02 +03:00
|
|
|
ch := filepath.Join(pwd,
|
|
|
|
"..",
|
|
|
|
"internal",
|
|
|
|
"testdata",
|
2019-10-15 23:40:45 +03:00
|
|
|
"app")
|
|
|
|
|
|
|
|
os.RemoveAll(filepath.Join(ch, "pkged.go"))
|
|
|
|
|
|
|
|
info := here.Info{
|
|
|
|
Dir: ch,
|
2019-10-17 22:08:02 +03:00
|
|
|
ImportPath: "github.com/markbates/pkger/internal/testdata/app",
|
2019-10-15 23:40:45 +03:00
|
|
|
}
|
|
|
|
here.Cache(info.ImportPath, func(s string) (here.Info, error) {
|
|
|
|
return info, nil
|
|
|
|
})
|
|
|
|
|
|
|
|
res, err := Parse(info)
|
|
|
|
|
|
|
|
r.NoError(err)
|
|
|
|
|
|
|
|
sort.Strings(inbed)
|
|
|
|
|
|
|
|
act := make([]string, len(res))
|
|
|
|
for i := 0; i < len(res); i++ {
|
|
|
|
act[i] = res[i].String()
|
|
|
|
}
|
|
|
|
|
|
|
|
sort.Strings(act)
|
|
|
|
r.Equal(inbed, act)
|
|
|
|
}
|
|
|
|
|
|
|
|
var inbed = []string{
|
|
|
|
"github.com/gobuffalo/buffalo:/",
|
|
|
|
"github.com/gobuffalo/buffalo:/render",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/auto.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/auto_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/download.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/download_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/func.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/func_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/helpers.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/html.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/html_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/js.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/js_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/json.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/json_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/markdown_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/options.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/partials_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/plain.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/plain_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/render.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/render_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/renderer.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/sse.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/string.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/string_map.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/string_map_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/string_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/template.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/template_engine.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/template_helpers.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/template_helpers_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/template_test.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/xml.go",
|
|
|
|
"github.com/gobuffalo/buffalo:/render/xml_test.go",
|
2019-10-17 22:08:02 +03:00
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/",
|
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/public",
|
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/public/images",
|
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/public/images/mark-small.png",
|
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/public/images/mark.png",
|
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/public/images/mark_250px.png",
|
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/public/images/mark_400px.png",
|
|
|
|
"github.com/markbates/pkger/internal/testdata/app:/public/index.html",
|
2019-10-15 23:40:45 +03:00
|
|
|
}
|