mirror of
https://github.com/got-feedBack/feedBack.git
synced 2026-08-11 11:19:24 +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>
179 lines
8.4 KiB
JavaScript
179 lines
8.4 KiB
JavaScript
// Contract test for 3D Highway per-panel control metadata (feedBack#247).
|
|
// The plugin script is evaluated in a vm sandbox so factory statics are
|
|
// tested without constructing a renderer instance or calling init().
|
|
|
|
const { test } = require('node:test');
|
|
const assert = require('node:assert/strict');
|
|
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
const vm = require('node:vm');
|
|
|
|
const SCREEN_JS = path.join(__dirname, '..', '..', 'plugins', 'highway_3d', 'screen.js');
|
|
|
|
// 'palette' was removed — per-string colors are now set via the core
|
|
// "Highway String Colors" UI, which drives both highways by named string.
|
|
const REQUIRED_KEYS = ['cameraSmoothing', 'cameraLockLow', 'cameraLockZoom'];
|
|
const FORBIDDEN_KEYS = ['customImageDataUrl', 'customImageName', 'customVideoName'];
|
|
const VALID_TYPES = new Set(['select', 'range', 'toggle']);
|
|
|
|
function loadHighway3dStatics() {
|
|
const src = fs.readFileSync(SCREEN_JS, 'utf8');
|
|
// Inject test exports right after the factory registration — a stable,
|
|
// semantic anchor inside the IIFE — so harmless footer edits (a trailing
|
|
// sourceMappingURL comment, extra whitespace, a different IIFE close
|
|
// style) do not break this contract test.
|
|
const ANCHOR = 'window.feedBackViz_highway_3d = createFactory;';
|
|
assert.equal(
|
|
src.split(ANCHOR).length - 1,
|
|
1,
|
|
'expected exactly one factory-registration anchor in screen.js',
|
|
);
|
|
const instrumented = src.replace(
|
|
ANCHOR,
|
|
`${ANCHOR}\n window.__h3dTestExports = { BG_DEFAULTS };`,
|
|
);
|
|
assert.notEqual(instrumented, src, 'test export injection anchor not found in screen.js');
|
|
|
|
const sandbox = {
|
|
console: {
|
|
error() {},
|
|
log() {},
|
|
warn() {},
|
|
},
|
|
localStorage: {
|
|
getItem() { return null; },
|
|
setItem() {},
|
|
},
|
|
performance: { now: () => 0 },
|
|
window: {
|
|
feedBackTour: {
|
|
register() {},
|
|
},
|
|
},
|
|
};
|
|
vm.createContext(sandbox);
|
|
vm.runInContext(instrumented, sandbox, { filename: SCREEN_JS });
|
|
return sandbox.window;
|
|
}
|
|
|
|
function cloneJson(value) {
|
|
return JSON.parse(JSON.stringify(value));
|
|
}
|
|
|
|
function optionValue(option) {
|
|
if (option && typeof option === 'object') return option.id;
|
|
return undefined;
|
|
}
|
|
|
|
function assertOptionObject(option, controlKey) {
|
|
assert.equal(
|
|
Object.prototype.toString.call(option),
|
|
'[object Object]',
|
|
`${controlKey}.options entries must be { id, label } objects`,
|
|
);
|
|
assert.equal(typeof option.id, 'string', `${controlKey}.options id must be a string`);
|
|
assert.ok(option.id.length > 0, `${controlKey}.options id must not be blank`);
|
|
assert.equal(typeof option.label, 'string', `${controlKey}.options label must be a string`);
|
|
assert.ok(option.label.trim().length > 0, `${controlKey}.options label must not be blank`);
|
|
}
|
|
|
|
test('3D Highway exposes static panelControls descriptors for per-panel hosts', () => {
|
|
const window = loadHighway3dStatics();
|
|
const factory = window.feedBackViz_highway_3d;
|
|
assert.equal(typeof factory, 'function', 'screen.js must register the 3D Highway factory');
|
|
|
|
assert.ok(
|
|
Object.prototype.hasOwnProperty.call(factory, 'panelControls'),
|
|
'panelControls must be an own static property on the factory',
|
|
);
|
|
assert.ok(Array.isArray(factory.panelControls), 'panelControls must be an array');
|
|
|
|
const controls = cloneJson(factory.panelControls);
|
|
const defaults = cloneJson(window.__h3dTestExports.BG_DEFAULTS);
|
|
const keys = controls.map((control) => control && control.key);
|
|
assert.deepEqual(keys, REQUIRED_KEYS, 'panelControls must expose exactly the issue #247 control set');
|
|
const duplicateKeys = keys.filter((key, index) => keys.indexOf(key) !== index);
|
|
assert.deepEqual(duplicateKeys, [], 'panelControls keys must be unique');
|
|
|
|
const controlsByKey = new Map();
|
|
|
|
for (const control of controls) {
|
|
assert.equal(
|
|
Object.prototype.toString.call(control),
|
|
'[object Object]',
|
|
'each panel control must be a plain descriptor object',
|
|
);
|
|
assert.equal(typeof control.key, 'string', 'descriptor.key must be a string');
|
|
assert.match(control.key, /^[A-Za-z][A-Za-z0-9]*$/, 'descriptor.key must be a BG_DEFAULTS-style key');
|
|
assert.equal(typeof control.label, 'string', `${control.key}.label must be a string`);
|
|
assert.ok(control.label.trim().length > 0, `${control.key}.label must not be blank`);
|
|
assert.equal(typeof control.type, 'string', `${control.key}.type must be a string`);
|
|
assert.ok(VALID_TYPES.has(control.type), `${control.key}.type must be select, range, or toggle`);
|
|
assert.ok(Object.prototype.hasOwnProperty.call(control, 'default'), `${control.key} must declare a default`);
|
|
assert.ok(
|
|
Object.prototype.hasOwnProperty.call(defaults, control.key),
|
|
`${control.key} must map to a BG_DEFAULTS entry`,
|
|
);
|
|
assert.deepEqual(control.default, defaults[control.key], `${control.key}.default must match BG_DEFAULTS`);
|
|
assert.ok(!controlsByKey.has(control.key), `${control.key} appears more than once in panelControls`);
|
|
controlsByKey.set(control.key, control);
|
|
|
|
if (control.type === 'select') {
|
|
assert.ok(Array.isArray(control.options), `${control.key}.options must be an array`);
|
|
assert.ok(control.options.length > 0, `${control.key}.options must not be empty`);
|
|
const values = control.options.map(optionValue);
|
|
assert.equal(values.length, new Set(values).size, `${control.key}.options values must be unique`);
|
|
for (const option of control.options) {
|
|
assertOptionObject(option, control.key);
|
|
}
|
|
for (const value of values) {
|
|
assert.equal(typeof value, 'string', `${control.key}.options values must be strings`);
|
|
}
|
|
assert.ok(values.includes(control.default), `${control.key}.options must include the default`);
|
|
}
|
|
|
|
if (control.type === 'range') {
|
|
assert.equal(typeof control.min, 'number', `${control.key}.min must be a number`);
|
|
assert.equal(typeof control.max, 'number', `${control.key}.max must be a number`);
|
|
assert.ok(Number.isFinite(control.min), `${control.key}.min must be finite`);
|
|
assert.ok(Number.isFinite(control.max), `${control.key}.max must be finite`);
|
|
assert.ok(control.min < control.max, `${control.key}.min must be less than max`);
|
|
assert.equal(typeof control.default, 'number', `${control.key}.default must be numeric`);
|
|
assert.ok(control.default >= control.min, `${control.key}.default must be >= min`);
|
|
assert.ok(control.default <= control.max, `${control.key}.default must be <= max`);
|
|
if (Object.prototype.hasOwnProperty.call(control, 'step')) {
|
|
assert.equal(typeof control.step, 'number', `${control.key}.step must be a number`);
|
|
assert.ok(control.step > 0, `${control.key}.step must be positive`);
|
|
}
|
|
}
|
|
|
|
if (control.type === 'toggle') {
|
|
assert.equal(typeof control.default, 'boolean', `${control.key}.default must be boolean`);
|
|
}
|
|
}
|
|
|
|
for (const key of REQUIRED_KEYS) {
|
|
assert.ok(controlsByKey.has(key), `panelControls must include ${key}`);
|
|
}
|
|
for (const key of FORBIDDEN_KEYS) {
|
|
assert.ok(!controlsByKey.has(key), `panelControls must not expose global-only asset key ${key}`);
|
|
}
|
|
|
|
const cameraSmoothing = controlsByKey.get('cameraSmoothing');
|
|
assert.equal(cameraSmoothing.type, 'range', 'cameraSmoothing must be a range control');
|
|
assert.equal(cameraSmoothing.min, 0);
|
|
assert.equal(cameraSmoothing.max, 1);
|
|
assert.equal(cameraSmoothing.default, defaults.cameraSmoothing);
|
|
|
|
const cameraLockLow = controlsByKey.get('cameraLockLow');
|
|
assert.equal(cameraLockLow.type, 'toggle', 'cameraLockLow must be a toggle control');
|
|
assert.equal(typeof cameraLockLow.default, 'boolean', 'cameraLockLow default must be boolean');
|
|
assert.equal(cameraLockLow.default, defaults.cameraLockLow);
|
|
|
|
const cameraLockZoom = controlsByKey.get('cameraLockZoom');
|
|
assert.equal(cameraLockZoom.type, 'range', 'cameraLockZoom must be a range control');
|
|
assert.equal(cameraLockZoom.min, 0);
|
|
assert.equal(cameraLockZoom.max, 1);
|
|
assert.equal(cameraLockZoom.default, defaults.cameraLockZoom);
|
|
});
|