rename ss-tools to superset-tools across the entire project

- Replace all occurrences of 'ss-tools' with 'superset-tools' in 104 files
- Rename git bundle file ss-tools.bundle → superset-tools.bundle
- Update .gitignore pattern accordingly
- Preserve variable names (hasSsTools etc.) and code identifiers
This commit is contained in:
2026-06-16 11:15:19 +03:00
parent d75db60343
commit ec6421de35
129 changed files with 467 additions and 467 deletions

View File

@@ -1,6 +1,6 @@
# #region TestSupersetTlsCustomCA [C:3] [TYPE Module] [SEMANTICS test,superset,tls,ssl,integration,ca]
# @BRIEF Integration tests validating the full corporate SSL certificate chain:
# custom CA generation → system store installation → HTTPS via ss-tools HTTP clients.
# custom CA generation → system store installation → HTTPS via superset-tools HTTP clients.
# @RELATION BINDS_TO -> [AsyncAPIClient]
# @RELATION BINDS_TO -> [SupersetClientBase]
# @RELATION BINDS_TO -> [SupersetClientRegistryModule]
@@ -29,7 +29,7 @@ from urllib.parse import urlparse
# #region TestCustomCATrustChain [C:3] [TYPE Class]
# @BRIEF Validate that custom CA certificates installed into the system store
# are trusted by openssl, httpx, and ss-tools patched HTTP clients.
# are trusted by openssl, httpx, and superset-tools patched HTTP clients.
@pytest.mark.parametrize("superset_container", [{"tls": True}], indirect=True)
class TestCustomCATrustChain:
"""Full corporate CA trust chain validation against TLS-protected Superset."""
@@ -160,7 +160,7 @@ class TestCustomCATrustChain:
# #endregion test_httpx_certifi_fails
# ── ss-tools client tests ────────────────────────────────────────
# ── superset-tools client tests ────────────────────────────────────────
# #region test_asyncapiclient_verify_true [C:2] [TYPE Function]
# @BRIEF AsyncAPIClient(verify_ssl=True) authenticates against TLS Superset.

View File

@@ -24,7 +24,7 @@ class TestAuthConfig:
assert config.SECRET_KEY == "test-secret-key"
assert config.ALGORITHM == "HS256"
assert config.ACCESS_TOKEN_EXPIRE_MINUTES == 480
assert config.JWT_AUDIENCE == "ss-tools-api"
assert config.JWT_AUDIENCE == "superset-tools-api"
def test_validates_secret_key_empty(self):
from src.core.auth.config import AuthConfig
@@ -87,8 +87,8 @@ class TestAuthConfig:
"AUTH_DATABASE_URL": "sqlite:///test.db",
}, clear=True):
config = AuthConfig()
assert config.JWT_AUDIENCE == "ss-tools-api"
assert config.JWT_ISSUER == "ss-tools"
assert config.JWT_AUDIENCE == "superset-tools-api"
assert config.JWT_ISSUER == "superset-tools"
# #endregion test_auth_config