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

tests: possible flaky test in mongodb instrumentation package #2757

Open
david-luna opened this issue Mar 14, 2025 · 2 comments
Open

tests: possible flaky test in mongodb instrumentation package #2757

david-luna opened this issue Mar 14, 2025 · 2 comments
Assignees

Comments

@david-luna
Copy link
Contributor

There's been some failures recently in Unit tests workflow. These failures happen in some PRs
and also in main branch

The issue seems to happen for mongodb v3 tests and in node v20 giving the following output.

> @opentelemetry/[email protected] test-v3-run
> nyc --no-clean mocha --require '@opentelemetry/contrib-test-utils' 'test/**/mongodb-v3.test.ts'



  MongoDBInstrumentation-Tracing-v3
(node:10022) [MONGODB DRIVER] Warning: Current Server Discovery and Monitoring engine is deprecated, and will be removed in a future version. To use the new Server Discover and Monitoring engine, pass option { useUnifiedTopology: true } to the MongoClient constructor.
(Use `node --trace-warnings ...` to show where the warning was created)
    Instrumenting query operations
      ✔ should create a child span for insert
      ✔ should create a child span for update
      ✔ should create a child span for remove
    Instrumenting cursor operations
      ✔ should create a child span for find
      ✔ should create a child span for cursor operations
    Instrumenting command operations
      ✔ should create a child span for create index
      ✔ should create a child span for aggregation
    when using enhanced database reporting without db statementSerializer
      ✔ should properly collect db statement (hide attribute values)
      ✔ should properly collect nested db statement (hide attribute values)
    when specifying a dbStatementSerializer configuration
      with a valid function
        ✔ should properly collect db statement
      with an invalid function
        ✔ should not do any harm when throwing an exception
    when specifying a responseHook configuration
      with a valid function
        ✔ should attach response hook data to the resulting span for insert function
        ✔ should attach response hook data to the resulting span for find function
      with an invalid function
        ✔ should not do any harm when throwing an exception
    Mixed operations with callback
      ✔ should create a span for find after callback insert
    MongoDb useUnifiedTopology enabled
      ✔ should generate correct span attributes
    requireParentSpan
      1) should not create spans without parent span when requireParentSpan is explicitly set to true
      ✔ should create spans without parent span when requireParentSpan is false
    Removing Instrumentation
      ✔ should unpatch plugin
      ✔ should not create a child span for query
      ✔ should not create a child span for cursor
      ✔ should not create a child span for command


  21 passing (348ms)
  1 failing

Such tests for v3 were previously executed only for TAV testing but they were introduced in #2681 to increase the number in coverage report.

@trentm
Copy link
Contributor

trentm commented Mar 18, 2025

Throwing out an uneducated, possibly crazy idea:

  • What about dropping mongodb v3 support? (Last release of mongodb@3 was "3.7.4": "2023-06-21T14:07:12.661Z",. Last mongodb@4 was "4.17.2": "2023-12-05T17:23:34.672Z",.)
  • Or, revert (at least that part of) the testing of v3 as part of npm test and leave it to TAV. I understand the desire for more coverage, but I'm not sure it is worth the extra npm test burden (compute time, maint, complexity) for mongodb@3.

@david-luna
Copy link
Contributor Author

the problem is located in v3 testing and removing it makes the CI pass again. I think we could start by removing the test for now and the decide what to do about support in a SIG meeting with the new component owner.

cc: @onurtemizkan

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants