Skip to content

GODRIVER-2336 Skip strict stable API count example #877

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

Merged
merged 1 commit into from
Mar 16, 2022
Merged
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
5 changes: 3 additions & 2 deletions examples/documentation_examples/examples_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -51,11 +51,12 @@ func TestDocumentationExamples(t *testing.T) {
documentation_examples.StableAPIExamples()

// Because it uses RunCommand with an apiVersion, the strict count example can only be
// run on 5.0+ without auth.
// run on 5.0+ without auth. It also cannot be run on 6.0+ since the count command was
// added to API version 1 and no longer results in an error when strict is enabled.
ver, err := getServerVersion(ctx, client)
require.NoError(t, err, "getServerVersion error: %v", err)
auth := os.Getenv("AUTH") == "auth"
if testutil.CompareVersions(t, ver, "5.0") >= 0 && !auth {
if testutil.CompareVersions(t, ver, "5.0") >= 0 && testutil.CompareVersions(t, ver, "6.0") < 0 && !auth {
documentation_examples.StableAPIStrictCountExample(t)
} else {
t.Log("skipping stable API strict count example")
Expand Down