tests: Intoduce walking skeleton for smoke tests #1326
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.
Summary
Introduces a walking skeleton for fast, deterministic smoke tests in TM1py based on mocked HTTP responses.
The tests run without a TM1 connection.
These smoke tests are intentionally lightweight and are designed to run as part of pull request validation, providing fast feedback and early detection of breaking changes.
Changes
Base test:
SmokeTestBase.pySmoke tests:
tests/smoke/test_connection_smoke.py--> Verifies get server version, server name, and basic connectivitytests/smoke/test_metadata_smoke.py--> VerifiesGET /Dimensions→get_all_names()How To Run