mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-07-21 12:21:49 +00:00
* Update GitHub repo references from feedback* to feedBack* * rename: slopsmith -> feedBack, byron -> got-feedBack Renames across the entire codebase: - slopsmith/Slopsmith/SLOPSMITH/SlopSmith -> feedBack/FeedBack/FEEDBACK/FeedBack - byron/Byron/Byrongamatos -> got-feedBack/got-feedBack/got-feedBack - /home/byron/ -> /opt/got-feedBack/ - byron@ougsoft.com -> hi@got-feedBack.org - github.com/byrongamatos/ -> github.com/got-feedback/ - com.byron. -> com.got-feedback. - SLOPSMITH_ env vars -> FEEDBACK_ with backward-compat fallback - Protocol/storage strings migrated with read-old/write-new pattern - window.slopsmith JS API -> window.feedBack (canonical) + backward-compat alias Refs: #rename-slopsmith * rename: complete regen against current main + fix backward-compat alias Regenerated the slopsmith->feedBack / byron->got-feedBack rename on top of current main (3 commits had landed since the branch: #572/#554/#574), resolving the four content conflicts in favour of main's newer content (autoplay/auto-exit, accuracy-badge, Virtuoso re-home, feedpak badge). Completion fixes on top of the mechanical rename: - Re-apply rename to post-branch content the original rename never saw: window.slopsmith(.Tour) consumers in lessons.js / notifications.js / onboarding-tour.js, and the matching JS + python tests (autoplay_exit, progression_*, test_feedpak_extension FEEDBACK_* env vars). The test env vars now match server.py (which reads FEEDBACK_SYNC_STARTUP / FEEDBACK_SKIP_STARTUP_TASKS), so the sync-startup test exercises the real path again. - Restore the window.slopsmith backward-compat alias dropped during conflict resolution, and move the bus aliases to AFTER the _feedBackExisting merge block so they reference the fully-assembled object (also fixes the loop_api.test.js API-surface regex, which the original PR latently broke). - Drop the stray empty data/web_library.db (runtime DB lives in CONFIG_DIR) and gitignore it. - Fix stale tone-source test: feed[dB]ack -> fee[dB]ack to match shipped source labels. Verified locally (org CI billing-blocked): JS 819/819 pass; pytest 1669 passed / 1683 collected with 0 import errors; zero residual slopsmith/byron except the two intentional window.slopsmith aliases. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> * rename: implement advertised backward-compat + prune dead community plugins Address gaps where PR #537's "Backward compatibility" section was advertised but not implemented, and clean up the community plugin list. Env vars (FEEDBACK_* canonical, legacy SLOPSMITH_* honoured): - New lib/env_compat.py (getenv_compat / env_flag_compat) + tests. server.py (_env_flag + all FEEDBACK_* reads), diagnostics_hardware, gp2midi and tailwind_rebuild now resolve the legacy alias, so existing SLOPSMITH_UI / SLOPSMITH_PLUGINS_DIR / etc. deployments keep working. - Fix the rename collapsing plugins/__init__.py and minigames/routes.py from `FEEDBACK_PLUGINS_DIR or SLOPSMITH_PLUGINS_DIR` into a redundant `FEEDBACK_ or FEEDBACK_` (the fallback was silently lost). Storage (app.js update-channel): - Read feedBack-update-channel, fall back to legacy slopsmith-update-channel, and clear the legacy key on write — so a user's update-channel preference survives the rename instead of resetting to "stable". Community plugin list (README): the rename rewrote third-party repo URLs we don't own. Probed every one; their owners never renamed, so: - Restore the 13 live community plugins to their real slopsmith-* names. - Prune 6 that are 404 to the public (topkoa splitscreen/stems, OmikronApex tuner, Jafz2001 nam-rig-builder, DeathlySin song-preview, Erikcb91 shuffle). - Fix a pre-existing Guitar Theory clone-command typo (nam-tone -> guitar-theory). Verified: env_compat 7/7, JS 819/819, pytest 1690 collected / 0 import errors, rename-sensitive + startup suites green. Co-Authored-By: Claude Opus 4.8 (1M context) <noreply@anthropic.com> --------- Co-authored-by: byrongamatos <xasiklas@gmail.com> Co-authored-by: Claude Opus 4.8 (1M context) <noreply@anthropic.com>
239 lines
10 KiB
Python
239 lines
10 KiB
Python
import json
|
|
from pathlib import Path
|
|
|
|
import plugins
|
|
|
|
|
|
ROOT = Path(__file__).resolve().parents[1]
|
|
FIXTURES = ROOT / "tests" / "fixtures" / "plugin_capabilities"
|
|
|
|
|
|
def _fixture(name: str) -> dict:
|
|
return json.loads((FIXTURES / name).read_text(encoding="utf-8"))
|
|
|
|
|
|
def test_published_manifest_schema_contains_capability_contract():
|
|
schema = json.loads((ROOT / "docs" / "plugin-manifest.schema.json").read_text(encoding="utf-8"))
|
|
assert schema["properties"]["capabilities"]["additionalProperties"]["$ref"] == "#/$defs/capabilityDeclaration"
|
|
declaration = schema["$defs"]["capabilityDeclaration"]
|
|
assert "owner" in declaration["properties"]["roles"]["items"]["enum"]
|
|
assert "provider-coordinator" in declaration["properties"]["kind"]["enum"]
|
|
assert declaration["properties"]["operations"]["items"]["type"] == "string"
|
|
assert declaration["properties"]["requests"]["items"]["type"] == "string"
|
|
assert declaration["properties"]["observes"]["items"]["type"] == "string"
|
|
assert "exclusive-owner" in declaration["properties"]["ownership"]["enum"]
|
|
assert "diagnostic-only" in declaration["properties"]["safety"]["enum"]
|
|
|
|
|
|
def test_normalize_string_list_trims_and_drops_blank_entries():
|
|
# Surrounding whitespace must be stripped (so version detection matches)
|
|
# and empty-after-strip entries dropped (so they don't leak into the API).
|
|
assert plugins._normalize_string_list(
|
|
[" capability-pipelines.v1 ", " ", "", "plain", 7, None]
|
|
) == ["capability-pipelines.v1", "plain"]
|
|
assert plugins._normalize_string_list("not-a-list") == []
|
|
|
|
|
|
def test_capability_lists_reject_whitespace_only_and_trim_padded_entries():
|
|
# Whitespace-only command → invalid (warning, declaration dropped), matching
|
|
# the browser runtime which trims/drops such entries.
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"d": {"roles": ["owner"], "commands": [" "]}}},
|
|
"p",
|
|
)
|
|
assert caps == {}
|
|
assert warnings
|
|
# Padded-but-valid command → accepted and stored trimmed, so /api/plugins
|
|
# matches the runtime.
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"d": {"roles": ["owner"], "commands": [" mute ", "restore"]}}},
|
|
"p",
|
|
)
|
|
assert not warnings
|
|
assert caps["d"]["commands"] == ["mute", "restore"]
|
|
|
|
|
|
def test_capability_kind_is_omitted_when_empty_and_kept_when_declared():
|
|
# kind defaults to "" internally, but "" is not a valid schema enum value,
|
|
# so it must not be emitted into /api/plugins / diagnostics.
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"d": {"roles": ["owner"]}}},
|
|
"p",
|
|
)
|
|
assert not warnings
|
|
assert "kind" not in caps["d"]
|
|
# A declared, valid kind is preserved.
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"d": {"roles": ["owner"], "kind": "provider-coordinator"}}},
|
|
"p",
|
|
)
|
|
assert not warnings
|
|
assert caps["d"]["kind"] == "provider-coordinator"
|
|
|
|
|
|
def test_capability_version_coercion_matches_runtime_number_semantics():
|
|
# Numeric-string version "1" must be accepted (the runtime does
|
|
# Number(version) === 1), not dropped as unsupported.
|
|
caps, _w, unsupported = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"d": {"roles": ["owner"], "version": "1"}}},
|
|
"p",
|
|
)
|
|
assert not unsupported
|
|
assert caps["d"]["version"] == 1
|
|
assert not caps["d"].get("incompatible")
|
|
# Any finite version != 1 (here a numeric string "2") is still unsupported,
|
|
# matching the runtime's Number.isFinite(v) && v !== 1 check.
|
|
caps, _w, unsupported = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"d": {"roles": ["owner"], "version": "2"}}},
|
|
"p",
|
|
)
|
|
assert unsupported
|
|
assert caps["d"]["incompatible"] is True
|
|
|
|
|
|
def test_valid_owner_provider_fixture_passes_loader_validation():
|
|
manifest = _fixture("valid_owner_provider.json")
|
|
capabilities, warnings, unsupported = plugins._capability_warnings(manifest, manifest["id"])
|
|
assert not warnings
|
|
assert not unsupported
|
|
assert capabilities["stems"]["roles"] == ["owner", "provider"]
|
|
assert capabilities["stems"]["ownership"] == "exclusive-owner"
|
|
# Human-readable text the runtime/Inspector display must survive
|
|
# sanitization (static/capabilities.js reads declaration.description).
|
|
assert capabilities["stems"]["description"] == manifest["capabilities"]["stems"]["description"]
|
|
|
|
|
|
def test_valid_requester_observer_fixture_passes_loader_validation():
|
|
manifest = _fixture("valid_requester_observer.json")
|
|
capabilities, warnings, unsupported = plugins._capability_warnings(manifest, manifest["id"])
|
|
assert not warnings
|
|
assert not unsupported
|
|
assert capabilities["stems"]["roles"] == ["requester", "observer"]
|
|
assert capabilities["stems"]["compatibility"] == "legacy-window-shim"
|
|
|
|
|
|
def test_invalid_capability_metadata_is_excluded_but_legacy_surfaces_survive():
|
|
manifest = _fixture("invalid_capability_metadata.json")
|
|
capabilities, warnings, unsupported = plugins._capability_warnings(manifest, manifest["id"])
|
|
assert capabilities == {}
|
|
assert warnings
|
|
assert not unsupported
|
|
ui = plugins._normalize_ui_contributions(manifest)
|
|
assert {entry["legacy_source"] for entry in ui["legacy"]} == {"nav", "screen", "settings"}
|
|
|
|
|
|
def test_unsupported_version_is_reported_as_incompatible_not_executed():
|
|
manifest = _fixture("unsupported_capability_version.json")
|
|
capabilities, warnings, unsupported = plugins._capability_warnings(manifest, manifest["id"])
|
|
assert not warnings
|
|
assert unsupported
|
|
assert capabilities["stems"]["incompatible"] is True
|
|
assert capabilities["stems"]["mode"] == "disabled"
|
|
assert capabilities["stems"]["safety"] == "diagnostic-only"
|
|
|
|
|
|
def test_published_schema_declares_generic_settings_descriptors():
|
|
# Per-instance control descriptors (feedBack#849) live on the generic
|
|
# capabilityDeclaration so ANY domain can carry them, not just visualization.
|
|
schema = json.loads((ROOT / "docs" / "plugin-manifest.schema.json").read_text(encoding="utf-8"))
|
|
settings = schema["$defs"]["capabilityDeclaration"]["properties"]["settings"]
|
|
assert settings["type"] == "array"
|
|
item = settings["items"]
|
|
assert set(item["required"]) == {"key", "type"}
|
|
assert set(item["properties"]["type"]["enum"]) == {"toggle", "range", "select"}
|
|
assert item["additionalProperties"] is False
|
|
|
|
|
|
def test_capability_settings_are_validated_and_preserved():
|
|
# A well-formed settings list survives validation verbatim (trimmed key),
|
|
# on an arbitrary domain — it is not visualization-specific.
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"visualization": {"roles": ["provider"], "settings": [
|
|
{"key": " palette ", "label": "Palette", "type": "select",
|
|
"default": "default", "options": [{"id": "neon", "label": "Neon"}]},
|
|
{"key": "cameraSmoothing", "type": "range", "default": 0.5,
|
|
"min": 0, "max": 1, "step": 0.05},
|
|
{"key": "cameraLockLow", "type": "toggle", "default": False},
|
|
]}}},
|
|
"p",
|
|
)
|
|
assert not warnings
|
|
settings = caps["visualization"]["settings"]
|
|
assert [s["key"] for s in settings] == ["palette", "cameraSmoothing", "cameraLockLow"]
|
|
assert settings[0]["options"] == [{"id": "neon", "label": "Neon"}]
|
|
assert settings[1]["min"] == 0 and settings[1]["step"] == 0.05
|
|
assert settings[2]["default"] is False
|
|
|
|
|
|
def test_capability_settings_labels_are_trimmed_and_blank_dropped():
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"visualization": {"roles": ["provider"], "settings": [
|
|
{"key": "a", "label": " Padded ", "type": "toggle"},
|
|
{"key": "b", "label": " ", "type": "toggle"}, # blank → absent
|
|
{"key": "c", "type": "select", "options": [
|
|
{"id": "x", "label": " Opt "}, {"id": "y", "label": " "}]},
|
|
]}}},
|
|
"p",
|
|
)
|
|
assert not warnings
|
|
settings = caps["visualization"]["settings"]
|
|
assert settings[0]["label"] == "Padded"
|
|
assert "label" not in settings[1]
|
|
opts = settings[2]["options"]
|
|
assert opts[0]["label"] == "Opt"
|
|
assert "label" not in opts[1]
|
|
|
|
|
|
def test_capability_settings_absent_emits_no_settings_key():
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"visualization": {"roles": ["provider"]}}},
|
|
"p",
|
|
)
|
|
assert not warnings
|
|
assert "settings" not in caps["visualization"]
|
|
|
|
|
|
def test_capability_settings_malformed_warns_and_drops_declaration():
|
|
# Bad type / missing key / duplicate key each fail the all-or-nothing gate,
|
|
# so the whole declaration is dropped with a warning (matches the strict
|
|
# treatment of every other capability field).
|
|
for bad in (
|
|
[{"key": "x", "type": "slider"}], # unsupported type
|
|
[{"type": "toggle"}], # missing key
|
|
[{"key": "x", "type": "toggle"}, {"key": "x", "type": "range"}], # dup key
|
|
[{"key": "x", "type": "range", "min": "0"}], # non-numeric min
|
|
[{"key": "x", "type": "range", "max": True}], # bool is not a number
|
|
"not-a-list", # wrong container type
|
|
):
|
|
caps, warnings, _ = plugins._capability_warnings(
|
|
{"standards": ["capability-pipelines.v1"],
|
|
"capabilities": {"d": {"roles": ["owner"], "settings": bad}}},
|
|
"p",
|
|
)
|
|
assert caps == {}, bad
|
|
assert warnings, bad
|
|
|
|
|
|
def test_recipe_manifest_examples_are_extractable_json_objects():
|
|
recipes = (ROOT / "docs" / "capability-recipes.md").read_text(encoding="utf-8")
|
|
blocks = []
|
|
parts = recipes.split("```json")
|
|
for part in parts[1:]:
|
|
block, _, _tail = part.partition("```")
|
|
blocks.append(json.loads(block))
|
|
assert blocks, "recipe docs should include JSON manifest examples"
|
|
for manifest in blocks:
|
|
assert "capabilities" in manifest
|
|
_capabilities, warnings, unsupported = plugins._capability_warnings(manifest, manifest.get("id", "recipe"))
|
|
assert not warnings
|
|
assert not unsupported
|