Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

cmd/go/internal/modload: don't infer a /v1 suffix module path #73146

Open
wants to merge 3 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions src/cmd/go/internal/modload/init.go
Original file line number Diff line number Diff line change
Expand Up @@ -1710,6 +1710,15 @@ func findModulePath(dir string) (string, error) {
badPathErr = err
break
}
// Ensure the inferred path is valid.
if _, _, ok := module.SplitPathVersion(path); !ok {
if strings.HasPrefix(path, "gopkg.in/") {
badPathErr = errors.New("module paths beginning with gopkg.in/ must always have a major version suffix in the form of .vN")
} else {
badPathErr = errors.New("major version suffixes must be in the form of /vN and are only allowed for v2 or later")
}
break
}
return path, nil
}
}
Expand Down
23 changes: 23 additions & 0 deletions src/cmd/go/testdata/script/mod_init_empty.txt
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,22 @@ stdout '^example.com$'
go list
stdout '^example.com$'

# Reset $GOPATH
env GOPATH=$WORK/gopath

# 'go mod init' should not create a go.mod file in v0 or v1 directory.
cd $GOPATH/src/example.com/m/v0
! go mod init
stderr '(?s)^go: cannot determine module path for source directory(.*)example.com/m/v0 \(bad module path inferred from directory in GOPATH: major version suffixes must be in the form of /vN and are only allowed for v2 or later\)(.*)Example usage:(.*)''go mod init example.com/m'' to initialize a v0 or v1 module(.*)''go mod init example.com/m/v2'' to initialize a v2 module(.*)Run ''go help mod init'' for more information.$'

cd $GOPATH/src/example.com/m/v1
! go mod init
stderr '(?s)^go: cannot determine module path for source directory(.*)example.com/m/v1 \(bad module path inferred from directory in GOPATH: major version suffixes must be in the form of /vN and are only allowed for v2 or later\)(.*)Example usage:(.*)''go mod init example.com/m'' to initialize a v0 or v1 module(.*)''go mod init example.com/m/v2'' to initialize a v2 module(.*)Run ''go help mod init'' for more information.$'

cd $GOPATH/src/example.com/m/v2
go mod init
stderr '^go: creating new go.mod: module example.com/m/v2$'

-- go.mod --
module example.com

Expand All @@ -19,3 +35,10 @@ func main() {}

-- $WORK/invalid-gopath
This is a text file, not a directory.

-- example.com/m/v0/main.go --
package main
-- example.com/m/v1/main.go --
package main
-- example.com/m/v2/main.go --
package main