Skip to content
New issue

Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? # to your account

NH-65713 Add configurator trace exporter tests #225

Merged
merged 9 commits into from
Nov 22, 2023

Conversation

tammy-baylis-swi
Copy link
Contributor

@tammy-baylis-swi tammy-baylis-swi commented Nov 20, 2023

Adds unit tests for configurator's _configure_traces_exporter function. Includes fixtures/ that I'll re-use for other configurator tests in next PRs.

Does a teeny src code change so that the Failed to load message doesn't print out info originating from env var anymore (the ApmConfig agent_enabled method does it this way).

Last test run at 4b35b69 passed with c-lib 14. Then fails again with revert, like #224

@tammy-baylis-swi tammy-baylis-swi marked this pull request as ready for review November 20, 2023 23:49
@tammy-baylis-swi tammy-baylis-swi requested a review from a team as a code owner November 20, 2023 23:49
from solarwinds_apm import configurator

# otel fixtures
from .fixtures.batch_span_processor import fixture_mock_bsprocessor

Check notice

Code scanning / CodeQL

Unused import

Import of 'fixture_mock_bsprocessor' is not used.
Comment on lines +17 to +20
from .fixtures.apm_config import (
fixture_mock_apmconfig_disabled,
fixture_mock_apmconfig_enabled,
)

Check notice

Code scanning / CodeQL

Unused import

Import of 'fixture_mock_apmconfig_disabled' is not used. Import of 'fixture_mock_apmconfig_enabled' is not used.
Comment on lines +21 to +23
from .fixtures.extension import (
fixture_mock_reporter,
)

Check notice

Code scanning / CodeQL

Unused import

Import of 'fixture_mock_reporter' is not used.
from .fixtures.extension import (
fixture_mock_reporter,
)
from .fixtures.fwkv_manager import fixture_mock_fwkv_manager

Check notice

Code scanning / CodeQL

Unused import

Import of 'fixture_mock_fwkv_manager' is not used.
fixture_mock_reporter,
)
from .fixtures.fwkv_manager import fixture_mock_fwkv_manager
from .fixtures.meter_manager import fixture_mock_meter_manager

Check notice

Code scanning / CodeQL

Unused import

Import of 'fixture_mock_meter_manager' is not used.
)
from .fixtures.fwkv_manager import fixture_mock_fwkv_manager
from .fixtures.meter_manager import fixture_mock_meter_manager
from .fixtures.txn_name_manager import fixture_mock_txn_name_manager

Check notice

Code scanning / CodeQL

Unused import

Import of 'fixture_mock_txn_name_manager' is not used.
Copy link
Contributor

@cheempz cheempz left a comment

Choose a reason for hiding this comment

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

LGTM, great to see the foundations you've added for testing @tammy-baylis-swi! Left a question that may be my misreading, but it seems if exporter isn't explicitly set we should default to the solarwinds one?

)
mock_bsprocessor.assert_not_called()
mock_get_tracer_provider.assert_not_called()
mock_add_span_processor.assert_not_called()
Copy link
Contributor

Choose a reason for hiding this comment

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

For this traces_exporter_none test, does it mean if OTEL_TRACES_EXPORTER env var is not set, our custom distro does not configure the solarwinds_exporter either?

Copy link
Contributor Author

Choose a reason for hiding this comment

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

Ooh yes good question.

For _configure_traces_exporter in complete isolation, yes it could be that OTEL_TRACES_EXPORTER is None so this test is for that scenario.

For _configure_traces_exporter running at distro startup, that scenario shouldn't happen. SolarWindsDistro._configure is called first to set env var defaults. Outside lambda the default is the SW exporter. Then SolarWindsConfigurator._configure is called to init the exporters etc. If OTEL_TRACES_EXPORTER wasn't set by user, then default from distro is used instead.

Copy link
Contributor

Choose a reason for hiding this comment

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

Ah gotcha, thanks for the pointers :)

@tammy-baylis-swi tammy-baylis-swi merged commit dc0547c into main Nov 22, 2023
@tammy-baylis-swi tammy-baylis-swi deleted the NH-65713-add-configurator-exporter-tests branch November 22, 2023 00:37
# for free to join this conversation on GitHub. Already have an account? # to comment
Labels
None yet
Development

Successfully merging this pull request may close these issues.

2 participants