]> Cypherpunks repositories - gostls13.git/commitdiff
[release-branch.go1.16] cmd/go: error out of 'go mod tidy' if the go version is newer...
authorBryan C. Mills <bcmills@google.com>
Thu, 13 May 2021 13:48:40 +0000 (09:48 -0400)
committerCarlos Amedee <carlos@golang.org>
Wed, 2 Jun 2021 19:00:32 +0000 (19:00 +0000)
This backports the test from CL 319669, but — because of extensive
changes to the module loader during the Go 1.17 cycle — the
implementation is entirely different. (This implementation is based on
the addGoStmt function present in init.go in the 1.16 branch.)

Fixes #46144
Updates #46142

Change-Id: Ib7a0a159e53cbe476be6aa9a050add10cc750dec
Reviewed-on: https://go-review.googlesource.com/c/go/+/319671
Trust: Bryan C. Mills <bcmills@google.com>
Run-TryBot: Bryan C. Mills <bcmills@google.com>
TryBot-Result: Go Bot <gobot@golang.org>
Reviewed-by: Jay Conrod <jayconrod@google.com>
src/cmd/go/internal/modcmd/tidy.go
src/cmd/go/internal/modload/buildlist.go
src/cmd/go/testdata/script/mod_tidy_too_new.txt [new file with mode: 0644]

index 8bc9ed50bede7ffcc9069a4b2ff0a4d974a538b8..67f90b123c3721bb2a8b87d64942766e852c7c77 100644 (file)
@@ -61,6 +61,8 @@ func runTidy(ctx context.Context, cmd *base.Command, args []string) {
        modload.ForceUseModules = true
        modload.RootMode = modload.NeedRoot
 
+       modload.CheckTidyVersion(ctx, tidyE)
+
        modload.LoadPackages(ctx, modload.PackageOpts{
                Tags:                     imports.AnyTags(),
                ResolveMissingImports:    true,
index 45f220a6ee6946b510a6bb67cb06b21971d31576..0ed985384d8f8dcf7e6eaf9d95c706f3fed9ffa0 100644 (file)
@@ -11,10 +11,13 @@ import (
        "cmd/go/internal/mvs"
        "context"
        "fmt"
+       "go/build"
        "os"
        "strings"
 
+       "golang.org/x/mod/modfile"
        "golang.org/x/mod/module"
+       "golang.org/x/mod/semver"
 )
 
 // buildList is the list of modules to use for building packages.
@@ -226,6 +229,33 @@ func ReloadBuildList() []module.Version {
        return capVersionSlice(buildList)
 }
 
+// CheckTidyVersion reports an error to stderr if the Go version indicated by
+// the go.mod file is not supported by this version of the 'go' command.
+//
+// If allowError is false, such an error terminates the program.
+func CheckTidyVersion(ctx context.Context, allowError bool) {
+       LoadModFile(ctx)
+       if index.goVersionV == "" {
+               return
+       }
+
+       tags := build.Default.ReleaseTags
+       maxGo := tags[len(tags)-1]
+       if !strings.HasPrefix(maxGo, "go") || !modfile.GoVersionRE.MatchString(maxGo[2:]) {
+               base.Fatalf("go: unrecognized go version %q", maxGo)
+       }
+       max := maxGo[2:]
+
+       if semver.Compare(index.goVersionV, "v"+max) > 0 {
+               have := index.goVersionV[1:]
+               if allowError {
+                       fmt.Fprintf(os.Stderr, "go mod tidy: go.mod file indicates go %s, but maximum supported version is %s\n", have, max)
+               } else {
+                       base.Fatalf("go mod tidy: go.mod file indicates go %s, but maximum supported version is %s\n", have, max)
+               }
+       }
+}
+
 // TidyBuildList trims the build list to the minimal requirements needed to
 // retain the same versions of all packages from the preceding call to
 // LoadPackages.
diff --git a/src/cmd/go/testdata/script/mod_tidy_too_new.txt b/src/cmd/go/testdata/script/mod_tidy_too_new.txt
new file mode 100644 (file)
index 0000000..ca3163e
--- /dev/null
@@ -0,0 +1,48 @@
+# https://golang.org/issue/46142: 'go mod tidy' should error out if the version
+# in the go.mod file is newer than the most recent supported version.
+
+cp go.mod go.mod.orig
+
+
+# If the go.mod file specifies an unsupported Go version, 'go mod tidy' should
+# refuse to edit it: we don't know what a tidy go.mod file for that version
+# would look like.
+
+! go mod tidy
+stderr 'go mod tidy: go.mod file indicates go 2000.0, but maximum supported version is '$goversion'$'
+cmp go.mod go.mod.orig
+
+
+# The -e flag should push past the error and edit the file anyway,
+# but preserve the too-high version.
+
+cp go.mod.orig go.mod
+go mod tidy -e
+stderr 'go mod tidy: go.mod file indicates go 2000.0, but maximum supported version is '$goversion'$'
+cmp go.mod go.mod.tidy
+
+
+-- go.mod --
+module example.net/from/the/future
+
+go 2000.0
+
+replace example.net/m v0.0.0 => ./m
+-- go.mod.tidy --
+module example.net/from/the/future
+
+go 2000.0
+
+replace example.net/m v0.0.0 => ./m
+
+require example.net/m v0.0.0
+-- x.go --
+package x
+
+import "example.net/m"
+-- m/go.mod --
+module example.net/m
+
+go 1.17
+-- m/m.go --
+package m