-
Notifications
You must be signed in to change notification settings - Fork 902
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
GODRIVER-3493 Compile check all support Go versions #1992
Merged
Merged
Changes from all commits
Commits
Show all changes
38 commits
Select commit
Hold shift + click to select a range
3913232
Add test/compilecheck
prestonvasquez dc2134d
GODRIVER-3493 Add testcontainers to compilecheck
prestonvasquez 2349c0f
GODRIVER-3493 Add compile check script
prestonvasquez 94290a1
GODRIVER-3493 Add function to get go versions
prestonvasquez a3532f6
GODRIVER-3493 Add test runner
prestonvasquez 3c9efeb
GODRIVER-3493 Dont build with vcs
prestonvasquez f8026c8
GODRIVER-3493 Move tag to build
prestonvasquez 4df467e
GODRIVER-3493 Target 1.18 for compile check
prestonvasquez 31605d7
GODRIVER-3493 Clean up scripts
prestonvasquez fd37506
GODRIVER-3493 Add licenses
prestonvasquez acbf2b3
GODRIVER-3493 Use semver to compare docker versions to msv
prestonvasquez 2803830
GODRIVER-3493 Clean up script
prestonvasquez 1c16978
GODRIVER-3493 Simplify docker image lookup
prestonvasquez b8e0495
GODRIVER-3493 Add comments to getDockerGolangImages
prestonvasquez 6c92f70
GODRIVER-3493 Clean up errors
prestonvasquez 8cbcd50
GODRIVER-3493 Add compilecheck(s) to workspace
prestonvasquez a35b7c7
Merge branch 'master' into GODRIVER-3493
prestonvasquez f654306
GODRIVER-3493 Test why codeql is breaking
prestonvasquez 3e31d2d
GODRIVER-3493 Test why codeql is breaking
prestonvasquez 8d1251b
GODRIVER-3493 Test why codeql is breaking
prestonvasquez 5a4bc07
GODRIVER-3493 Test why codeql is breaking
prestonvasquez 7437c61
GODRIVER-3493 Test why codeql is breaking
prestonvasquez 4df2f6d
GODRIVER-3493 Test why codeql is breaking
prestonvasquez bd3308e
GODRIVER-3493 Test why codeql is breaking
prestonvasquez 2d0bb21
GODRIVER-3493 Test why codeql is breaking
prestonvasquez c11ddce
GODRIVER-3493 Test why codeql is breaking
prestonvasquez b71065c
GODRIVER-3493 Test why codeql is breaking
prestonvasquez 3a4eaa5
Merge branch 'master' into GODRIVER-3493
prestonvasquez 9bbf4e3
GODRIVER-3493 Update go.work
prestonvasquez 5695e7e
GODRIVER-3493 Remove tc test from go.work
prestonvasquez 6368688
GODRIVER-3493 Unify compile check
prestonvasquez 561f78f
GODRIVER-3493 Download if unavailable
prestonvasquez 79d0945
GODRIVER-3493 unify compile-check scripts
prestonvasquez 4587edc
GODRIVER-3493 Add test comment
prestonvasquez 1dbdd86
GODRIVER-3493 Add a TODO to inclue cc in go workspace
prestonvasquez 28dc92f
GODRIVER-3493 Close response body if decoding fails
prestonvasquez c18385e
Merge branch 'master' into GODRIVER-3493
prestonvasquez 37dcccd
GODRIVER-3493 Update test name
prestonvasquez File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#!/usr/bin/env bash | ||
# run-compile-check-test | ||
# Run compile check tests. | ||
set -eu | ||
set +x | ||
|
||
echo "Running internal/test/compilecheck" | ||
pushd internal/test/compilecheck | ||
GOWORK=off go test -timeout 30m -v ./... >>../../../test.suite | ||
popd |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,151 @@ | ||
// Copyright (C) MongoDB, Inc. 2025-present. | ||
// | ||
// Licensed under the Apache License, Version 2.0 (the "License"); you may | ||
// not use this file except in compliance with the License. You may obtain | ||
// a copy of the License at http://www.apache.org/licenses/LICENSE-2.0 | ||
|
||
package main | ||
|
||
import ( | ||
"context" | ||
"encoding/json" | ||
"fmt" | ||
"io" | ||
"net/http" | ||
"os" | ||
"path/filepath" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
"github.com/stretchr/testify/require" | ||
"github.com/testcontainers/testcontainers-go" | ||
"golang.org/x/mod/semver" | ||
) | ||
|
||
// TODO(GODRIVER-3515): This module cannot be included in the workspace since it | ||
// requires a version of klauspost/compress that is not compatible with the Go | ||
// Driver. Must use GOWORK=off to run this test. | ||
|
||
const minSupportedVersion = "1.18" | ||
|
||
func TestCompileCheck(t *testing.T) { | ||
cwd, err := os.Getwd() | ||
require.NoError(t, err) | ||
|
||
rootDir := filepath.Dir(filepath.Dir(filepath.Dir(cwd))) | ||
|
||
versions, err := getDockerGolangImages() | ||
require.NoError(t, err) | ||
|
||
for _, version := range versions { | ||
version := version // Capture range variable. | ||
|
||
image := fmt.Sprintf("golang:%s", version) | ||
t.Run(image, func(t *testing.T) { | ||
t.Parallel() | ||
|
||
req := testcontainers.ContainerRequest{ | ||
Image: image, | ||
Cmd: []string{"tail", "-f", "/dev/null"}, | ||
Mounts: []testcontainers.ContainerMount{ | ||
testcontainers.BindMount(rootDir, "/workspace"), | ||
}, | ||
WorkingDir: "/workspace", | ||
Env: map[string]string{ | ||
"GC": "go", | ||
// Compilation modules are not part of the workspace as testcontainers requires | ||
// a version of klauspost/compress not supported by the Go Driver / other modules | ||
// in the workspace. | ||
"GOWORK": "off", | ||
}, | ||
} | ||
|
||
genReq := testcontainers.GenericContainerRequest{ | ||
ContainerRequest: req, | ||
Started: true, | ||
} | ||
|
||
container, err := testcontainers.GenericContainer(context.Background(), genReq) | ||
require.NoError(t, err) | ||
|
||
defer func() { | ||
err := container.Terminate(context.Background()) | ||
require.NoError(t, err) | ||
}() | ||
|
||
exitCode, outputReader, err := container.Exec(context.Background(), []string{"bash", "etc/compile_check.sh"}) | ||
require.NoError(t, err) | ||
|
||
output, err := io.ReadAll(outputReader) | ||
require.NoError(t, err) | ||
|
||
t.Logf("output: %s", output) | ||
assert.Equal(t, 0, exitCode) | ||
}) | ||
} | ||
} | ||
|
||
// getDockerGolangImages retrieves the available Golang Docker image tags from | ||
// Docker Hub that are considered valid and meet the specified version | ||
// condition. It returns a slice of version strings in the MajorMinor format and | ||
// an error, if any. | ||
func getDockerGolangImages() ([]string, error) { | ||
// URL to fetch the Golang tags from Docker Hub with a page size of 100 | ||
// records. | ||
var url = "https://hub.docker.com/v2/repositories/library/golang/tags?page_size=100" | ||
|
||
versionSet := map[string]bool{} | ||
versions := []string{} | ||
|
||
// Iteratively fetch and process tags from Docker Hub as long as there is a | ||
// valid next page URL. | ||
for url != "" { | ||
resp, err := http.Get(url) | ||
if err != nil { | ||
return nil, fmt.Errorf("failed to get response from Docker Hub: %w", err) | ||
} | ||
|
||
var data struct { | ||
Results []struct { | ||
Name string `json:"name"` | ||
} `json:"results"` | ||
Next string `json:"next"` // URL of the next page for pagination. | ||
} | ||
|
||
if err := json.NewDecoder(resp.Body).Decode(&data); err != nil { | ||
resp.Body.Close() | ||
|
||
return nil, fmt.Errorf("failed to decode response Body from Docker Hub: %w", err) | ||
} | ||
|
||
resp.Body.Close() | ||
|
||
for _, tag := range data.Results { | ||
// Skip tags that don't start with a digit (typically version numbers). | ||
if len(tag.Name) == 0 || tag.Name[0] < '0' || tag.Name[0] > '9' { | ||
continue | ||
} | ||
|
||
// Split the tag name and extract the base version part. | ||
// This handles tags like `1.18.1-alpine` by extracting `1.18.1`. | ||
base := strings.Split(tag.Name, "-")[0] | ||
|
||
// Reduce the base version to MajorMinor format (e.g., `v1.18`). | ||
baseMajMin := semver.MajorMinor("v" + base) | ||
if !semver.IsValid(baseMajMin) || versionSet[baseMajMin] { | ||
continue | ||
} | ||
|
||
if semver.Compare(baseMajMin, "v"+minSupportedVersion) >= 0 { | ||
versionSet[baseMajMin] = true | ||
versions = append(versions, baseMajMin[1:]) | ||
} | ||
} | ||
|
||
// Move to the next page of results, set by the `Next` field. | ||
url = data.Next | ||
} | ||
|
||
return versions, nil | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,64 @@ | ||
module go.mongodb.go/mongo-driver/internal/test/compilecheck | ||
|
||
go 1.23.0 | ||
|
||
toolchain go1.23.1 | ||
|
||
require ( | ||
github.com/stretchr/testify v1.10.0 | ||
github.com/testcontainers/testcontainers-go v0.35.0 | ||
golang.org/x/mod v0.24.0 | ||
) | ||
|
||
require ( | ||
dario.cat/mergo v1.0.0 // indirect | ||
github.com/Azure/go-ansiterm v0.0.0-20210617225240-d185dfc1b5a1 // indirect | ||
github.com/Microsoft/go-winio v0.6.2 // indirect | ||
github.com/cenkalti/backoff/v4 v4.2.1 // indirect | ||
github.com/containerd/containerd v1.7.18 // indirect | ||
github.com/containerd/log v0.1.0 // indirect | ||
github.com/containerd/platforms v0.2.1 // indirect | ||
github.com/cpuguy83/dockercfg v0.3.2 // indirect | ||
github.com/davecgh/go-spew v1.1.1 // indirect | ||
github.com/distribution/reference v0.6.0 // indirect | ||
github.com/docker/docker v27.1.1+incompatible // indirect | ||
github.com/docker/go-connections v0.5.0 // indirect | ||
github.com/docker/go-units v0.5.0 // indirect | ||
github.com/felixge/httpsnoop v1.0.4 // indirect | ||
github.com/go-logr/logr v1.4.1 // indirect | ||
github.com/go-logr/stdr v1.2.2 // indirect | ||
github.com/go-ole/go-ole v1.2.6 // indirect | ||
github.com/gogo/protobuf v1.3.2 // indirect | ||
github.com/google/uuid v1.6.0 // indirect | ||
github.com/klauspost/compress v1.17.4 // indirect | ||
github.com/kr/text v0.2.0 // indirect | ||
github.com/lufia/plan9stats v0.0.0-20211012122336-39d0f177ccd0 // indirect | ||
github.com/magiconair/properties v1.8.7 // indirect | ||
github.com/moby/docker-image-spec v1.3.1 // indirect | ||
github.com/moby/patternmatcher v0.6.0 // indirect | ||
github.com/moby/sys/sequential v0.5.0 // indirect | ||
github.com/moby/sys/user v0.1.0 // indirect | ||
github.com/moby/term v0.5.0 // indirect | ||
github.com/morikuni/aec v1.0.0 // indirect | ||
github.com/opencontainers/go-digest v1.0.0 // indirect | ||
github.com/opencontainers/image-spec v1.1.0 // indirect | ||
github.com/pkg/errors v0.9.1 // indirect | ||
github.com/pmezard/go-difflib v1.0.0 // indirect | ||
github.com/power-devops/perfstat v0.0.0-20210106213030-5aafc221ea8c // indirect | ||
github.com/shirou/gopsutil/v3 v3.23.12 // indirect | ||
github.com/shoenig/go-m1cpu v0.1.6 // indirect | ||
github.com/sirupsen/logrus v1.9.3 // indirect | ||
github.com/tklauser/go-sysconf v0.3.12 // indirect | ||
github.com/tklauser/numcpus v0.6.1 // indirect | ||
github.com/yusufpapurcu/wmi v1.2.3 // indirect | ||
go.opentelemetry.io/contrib/instrumentation/net/http/otelhttp v0.49.0 // indirect | ||
go.opentelemetry.io/otel v1.24.0 // indirect | ||
go.opentelemetry.io/otel/metric v1.24.0 // indirect | ||
go.opentelemetry.io/otel/trace v1.24.0 // indirect | ||
golang.org/x/crypto v0.31.0 // indirect | ||
golang.org/x/net v0.26.0 // indirect | ||
golang.org/x/sys v0.28.0 // indirect | ||
google.golang.org/genproto/googleapis/api v0.0.0-20240318140521-94a12d6c2237 // indirect | ||
google.golang.org/genproto/googleapis/rpc v0.0.0-20240318140521-94a12d6c2237 // indirect | ||
gopkg.in/yaml.v3 v3.0.1 // indirect | ||
) |
Oops, something went wrong.
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It's better to move the
Body.Close()
immediately after the error check ofhttp.Get()
and wrap it with a defer.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Deferring here (in a loop) will cause body closures to stack. If we closed the body after the error check we wouldn't be able to decode into the data struct.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Right... However, there is a risk that the current implementation may fail during decoding, leaving the body unclosed. Is it possible to wrap the HTTP Get in a separate function?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I can update the code to close the response body if there is an error.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
It is somewhat hacky, but I think it's acceptable in a test...