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

GODRIVER-3445 Move all logic for skipping spec tests by description into one place. #1985

Merged

Conversation

matthewdale
Copy link
Collaborator

@matthewdale matthewdale commented Mar 11, 2025

GODRIVER-3445

Summary

  • Move all logic for skipping spec tests by description into a new function spectest.CheckSkip.
    • Note that many legacy spec tests are still skipped using a modified "skipReason" field in the spec test. We will address those in a separate PR.
  • All spec tests should include the full JSON test filename in the test name.
  • Fix a test name bug in TestAuthSpec introduced by GODRIVER-3175 Add Kubernetes support for OIDC. #1976

Background & Motivation

There are multiple blocks that are responsible for skipping spec tests based on description, but the logic is always the same. Unifying the logic in one place makes it easier to maintain the list of skipped tests and add new skipped tests when necessary.

The reason we should do this now is to facilitate skipping the tests to unblock #1932

Part of a stack of changes that must be reviewed in order:

  1. GODRIVER-3445 Move all logic for skipping spec tests by description into one place. #1985 (this PR)
  2. GODRIVER-3098 Sync SDAM spec tests at 348d2f39. #1986
  3. GODRIVER-3098 Drop support for MongoDB 3.6 #1988

@matthewdale matthewdale force-pushed the godriver3445-refactor-skip-by-desc branch from 2e04897 to 49f6b9e Compare March 11, 2025 04:32
@mongodb-drivers-pr-bot mongodb-drivers-pr-bot bot added the priority-3-low Low Priority PR for Review label Mar 11, 2025
Copy link
Contributor

API Change Report

No changes found!

@matthewdale matthewdale force-pushed the godriver3445-refactor-skip-by-desc branch from 49f6b9e to b177a7b Compare March 11, 2025 17:24
@matthewdale matthewdale marked this pull request as ready for review March 11, 2025 17:54
@matthewdale matthewdale requested a review from Copilot March 12, 2025 01:45
Copy link

@Copilot Copilot AI left a comment

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Pull Request Overview

This PR centralizes the logic for skipping spec tests by introducing a new function, spectest.CheckSkip, and updates several test files to leverage this shared functionality. Key changes include:

  • Adding the unified spectest.CheckSkip function with a consolidated list of tests to be skipped.
  • Refactoring legacy skipping logic in spec test files such as auth_spec_test.go and connstring_spec_test.go.
  • Removing filename trimming and legacy skip mappings in integration, server selector, SDAM, BSON corpus, and topology tests so that full JSON filenames are retained.

Reviewed Changes

Copilot reviewed 9 out of 9 changed files in this pull request and generated no comments.

Show a summary per file
File Description
internal/spectest/skip.go Introduces the centralized skip logic using a map of test names to skip reasons.
x/mongo/driver/auth/auth_spec_test.go Removes legacy skip logic in favor of spectest.CheckSkip and fixes a test naming issue.
x/mongo/driver/connstring/connstring_spec_test.go Updates loop variable capturing and removes outdated filename trimming logic.
internal/integration/unified/unified_spec_runner.go Replaces legacy skip mapping with calls to spectest.CheckSkip in test runners.
internal/integration/unified_spec_test.go Similar updates to use spectest.CheckSkip alongside removal of outdated skip descriptions.
internal/serverselector/server_selector_test.go Removes filename trimming logic in favor of including full test filenames.
x/mongo/driver/topology/sdam_spec_test.go Refactors test name formatting by removing outdated filename adjustments.
bson/bson_corpus_spec_test.go Adjusts test name and renames Test_BsonCorpus to TestBSONCorpus; removes filename trimming logic.
x/mongo/driver/topology/server_rtt_test.go Updates test naming to use the full filename rather than trimming the ".json" extension.

@matthewdale matthewdale force-pushed the godriver3445-refactor-skip-by-desc branch from 443419e to 08c6865 Compare March 14, 2025 02:37
// The timeout causes the eventual clearing of the failpoint in the test runner to fail with an
// i/o timeout.
"Ignore network timeout error on find": godriver2123SkipReason,
"Network error on minPoolSize background creation": godriver2123SkipReason,
Copy link
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Is "Network error on minPoolSize background creation" replaced?

Copy link
Collaborator Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

That test was converted to a unified spec test in #1522 and now passes reliably (see here). Since the new unified test passes, I decided to not skip it.

@matthewdale matthewdale requested a review from qingyang-hu March 19, 2025 01:55
@matthewdale matthewdale merged commit 6a504a3 into mongodb:master Mar 19, 2025
32 of 35 checks passed
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
priority-3-low Low Priority PR for Review
Projects
None yet
Development

Successfully merging this pull request may close these issues.

2 participants