mirror of
https://github.com/caddyserver/xcaddy.git
synced 2024-11-03 07:50:30 +00:00
3d8622df25
* Parse JSON output of 'go list' It's more robust in this way * Handle all possible replacements properly for runDev() 1. Handle all possible replacements properly for runDev() Replacement targets are not always paths. Reference: https://pkg.go.dev/cmd/go/internal/list#pkg-variables 2. Parse replacement info from 'go list -m -json all' It's more robust in this way * Test the 'go list -m -json all' parsing logic * Call 'go list' command only once `go list -m -json all` contains all informations we need so we don't need extra `go list -m -json` call. * main_windows_test.go: Make tests for Windows * Support Go 1.16 * Use struct instead of map[string]interface{} * extract and unexport the `module` struct Co-authored-by: Mohammed Al Sahaf <msaa1990@gmail.com>
113 lines
3.6 KiB
Go
113 lines
3.6 KiB
Go
//go:build windows
|
|
// +build windows
|
|
|
|
package xcaddycmd
|
|
|
|
import (
|
|
"reflect"
|
|
"testing"
|
|
|
|
"github.com/caddyserver/xcaddy"
|
|
)
|
|
|
|
func TestParseGoListJson(t *testing.T) {
|
|
currentModule, moduleDir, replacements, err := parseGoListJson([]byte(`
|
|
{
|
|
"Path": "replacetest1",
|
|
"Version": "v1.2.3",
|
|
"Replace": {
|
|
"Path": "golang.org/x/example",
|
|
"Version": "v0.0.0-20210811190340-787a929d5a0d",
|
|
"Time": "2021-08-11T19:03:40Z",
|
|
"Dir": "C:\\Users\\simna\\go\\pkg\\mod\\golang.org\\x\\example@v0.0.0-20210811190340-787a929d5a0d",
|
|
"GoMod": "C:\\Users\\simna\\go\\pkg\\mod\\cache\\download\\golang.org\\x\\example\\@v\\v0.0.0-20210811190340-787a929d5a0d.mod",
|
|
"GoVersion": "1.15"
|
|
},
|
|
"Dir": "C:\\Users\\simna\\go\\pkg\\mod\\golang.org\\x\\example@v0.0.0-20210811190340-787a929d5a0d",
|
|
"GoMod": "C:\\Users\\simna\\go\\pkg\\mod\\cache\\download\\golang.org\\x\\example\\@v\\v0.0.0-20210811190340-787a929d5a0d.mod",
|
|
"GoVersion": "1.15"
|
|
}
|
|
{
|
|
"Path": "replacetest2",
|
|
"Version": "v0.0.1",
|
|
"Replace": {
|
|
"Path": "golang.org/x/example",
|
|
"Version": "v0.0.0-20210407023211-09c3a5e06b5d",
|
|
"Time": "2021-04-07T02:32:11Z",
|
|
"Dir": "C:\\Users\\simna\\go\\pkg\\mod\\golang.org\\x\\example@v0.0.0-20210407023211-09c3a5e06b5d",
|
|
"GoMod": "C:\\Users\\simna\\go\\pkg\\mod\\cache\\download\\golang.org\\x\\example\\@v\\v0.0.0-20210407023211-09c3a5e06b5d.mod",
|
|
"GoVersion": "1.15"
|
|
},
|
|
"Dir": "C:\\Users\\simna\\go\\pkg\\mod\\golang.org\\x\\example@v0.0.0-20210407023211-09c3a5e06b5d",
|
|
"GoMod": "C:\\Users\\simna\\go\\pkg\\mod\\cache\\download\\golang.org\\x\\example\\@v\\v0.0.0-20210407023211-09c3a5e06b5d.mod",
|
|
"GoVersion": "1.15"
|
|
}
|
|
{
|
|
"Path": "replacetest3",
|
|
"Version": "v1.2.3",
|
|
"Replace": {
|
|
"Path": "./fork1",
|
|
"Dir": "C:\\Users\\work\\module\\fork1",
|
|
"GoMod": "C:\\Users\\work\\module\\fork1\\go.mod",
|
|
"GoVersion": "1.17"
|
|
},
|
|
"Dir": "C:\\Users\\work\\module\\fork1",
|
|
"GoMod": "C:\\Users\\work\\module\\fork1\\go.mod",
|
|
"GoVersion": "1.17"
|
|
}
|
|
{
|
|
"Path": "github.com/simnalamburt/module",
|
|
"Main": true,
|
|
"Dir": "C:\\Users\\work\\module",
|
|
"GoMod": "C:\\Users\\work\\module\\go.mod",
|
|
"GoVersion": "1.17"
|
|
}
|
|
{
|
|
"Path": "replacetest4",
|
|
"Version": "v0.0.1",
|
|
"Replace": {
|
|
"Path": "C:\\go\\fork2",
|
|
"Dir": "C:\\Users\\work\\module\\fork2",
|
|
"GoMod": "C:\\Users\\work\\module\\fork2\\go.mod",
|
|
"GoVersion": "1.17"
|
|
},
|
|
"Dir": "C:\\Users\\work\\module\\fork2",
|
|
"GoMod": "C:\\Users\\work\\module\\fork2\\go.mod",
|
|
"GoVersion": "1.17"
|
|
}
|
|
{
|
|
"Path": "replacetest5",
|
|
"Version": "v1.2.3",
|
|
"Replace": {
|
|
"Path": "./fork3",
|
|
"Dir": "C:\\Users\\work\\module\\fork3",
|
|
"GoMod": "C:\\Users\\work\\module\\fork1\\go.mod",
|
|
"GoVersion": "1.17"
|
|
},
|
|
"Dir": "C:\\Users\\work\\module\\fork3",
|
|
"GoMod": "C:\\Users\\work\\module\\fork3\\go.mod",
|
|
"GoVersion": "1.17"
|
|
}
|
|
`))
|
|
if err != nil {
|
|
t.Errorf("Error occured during JSON parsing")
|
|
}
|
|
if currentModule != "github.com/simnalamburt/module" {
|
|
t.Errorf("Unexpected module name")
|
|
}
|
|
if moduleDir != "C:\\Users\\work\\module" {
|
|
t.Errorf("Unexpected module path")
|
|
}
|
|
expected := []xcaddy.Replace{
|
|
xcaddy.NewReplace("replacetest1@v1.2.3", "golang.org/x/example@v0.0.0-20210811190340-787a929d5a0d"),
|
|
xcaddy.NewReplace("replacetest2@v0.0.1", "golang.org/x/example@v0.0.0-20210407023211-09c3a5e06b5d"),
|
|
xcaddy.NewReplace("replacetest3@v1.2.3", "C:\\Users\\work\\module\\fork1"),
|
|
xcaddy.NewReplace("github.com/simnalamburt/module", "C:\\Users\\work\\module"),
|
|
xcaddy.NewReplace("replacetest4@v0.0.1", "C:\\go\\fork2"),
|
|
xcaddy.NewReplace("replacetest5@v1.2.3", "C:\\Users\\work\\module\\fork3"),
|
|
}
|
|
if !reflect.DeepEqual(replacements, expected) {
|
|
t.Errorf("Expected replacements '%v' but got '%v'", expected, replacements)
|
|
}
|
|
}
|