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>
155 lines
7.2 KiB
JavaScript
155 lines
7.2 KiB
JavaScript
// Verify the v3 Pedalboard Plugins page (static/v3/plugins-page.js) pure
|
|
// helpers: category resolution (manifest override > curated > derive > other),
|
|
// thumbnail URL building, click-target selection (settings vs screen vs none),
|
|
// drag clamping, default-flow slots, and the localStorage layout round-trip.
|
|
//
|
|
// The page exposes these helpers on window.v3PluginsPage._test, so we load the
|
|
// IIFE in a vm sandbox with a minimal window/document and read them back —
|
|
// no brace-extraction needed.
|
|
|
|
const { test } = require('node:test');
|
|
// Non-strict assert on purpose: helpers return objects created inside the vm
|
|
// realm, whose Object.prototype differs from this realm's — strict deepEqual
|
|
// would fail the prototype check even when the structure matches.
|
|
const assert = require('node:assert');
|
|
const fs = require('node:fs');
|
|
const path = require('node:path');
|
|
const vm = require('node:vm');
|
|
|
|
const SRC = path.join(__dirname, '..', '..', 'static', 'v3', 'plugins-page.js');
|
|
|
|
function loadPage(opts) {
|
|
opts = opts || {};
|
|
const store = opts.store || {};
|
|
const win = { feedBack: null };
|
|
win.localStorage = {
|
|
getItem: (k) => (k in store ? store[k] : null),
|
|
setItem: (k, v) => { if (opts.throwOnSet) throw new Error('quota'); store[k] = String(v); },
|
|
removeItem: (k) => { delete store[k]; },
|
|
};
|
|
win.addEventListener = () => {};
|
|
win.matchMedia = () => ({ matches: false });
|
|
const doc = {
|
|
readyState: 'complete',
|
|
getElementById: () => null, // render() bails: no #v3-plugins
|
|
querySelector: () => null,
|
|
addEventListener: () => {},
|
|
};
|
|
const ctx = {
|
|
window: win, document: doc, console,
|
|
fetch: () => Promise.reject(new Error('no fetch in test')),
|
|
requestAnimationFrame: () => 0,
|
|
setTimeout: () => 0, clearTimeout: () => {},
|
|
};
|
|
vm.createContext(ctx);
|
|
vm.runInContext(fs.readFileSync(SRC, 'utf8'), ctx, { filename: 'plugins-page.js' });
|
|
return { api: win.v3PluginsPage, t: win.v3PluginsPage._test, store, win };
|
|
}
|
|
|
|
test('categoryOf: manifest category is authoritative (lowercased)', () => {
|
|
const { t } = loadPage();
|
|
assert.equal(t.categoryOf({ id: 'whatever', category: 'Audio' }), 'audio');
|
|
// Even an unknown manifest category wins over the curated map.
|
|
assert.equal(t.categoryOf({ id: 'nam_tone', category: 'Custom' }), 'custom');
|
|
});
|
|
|
|
test('categoryOf: curated map, then type-derive, then other', () => {
|
|
const { t } = loadPage();
|
|
assert.equal(t.categoryOf({ id: 'nam_tone' }), 'audio');
|
|
assert.equal(t.categoryOf({ id: 'flappy_bend' }), 'game');
|
|
assert.equal(t.categoryOf({ id: 'editor' }), 'tools');
|
|
assert.equal(t.categoryOf({ id: 'unknown_x', type: 'visualization' }), 'creation');
|
|
assert.equal(t.categoryOf({ id: 'unknown_x' }), 'other');
|
|
assert.equal(t.categoryOf(null), 'other');
|
|
});
|
|
|
|
test('thumbUrl: manifest icon routes through the asset endpoint; else default', () => {
|
|
const { t } = loadPage();
|
|
assert.equal(t.thumbUrl({ id: 'flappy_bend', icon: 'assets/thumb.png' }),
|
|
'/api/plugins/flappy_bend/assets/thumb.png');
|
|
// Leading assets/ is stripped (route path is relative to assets/).
|
|
assert.equal(t.thumbUrl({ id: 'x', icon: 'assets/img/p.svg' }), '/api/plugins/x/assets/img/p.svg');
|
|
assert.equal(t.thumbUrl({ id: 'x' }), '/static/v3/pedal-default.svg');
|
|
assert.equal(t.thumbUrl({ id: 'x', icon: '' }), '/static/v3/pedal-default.svg');
|
|
});
|
|
|
|
test('settingsTarget: screen > settings > none', () => {
|
|
const { t } = loadPage();
|
|
// A screen wins even when the plugin also has settings (e.g. audio_engine):
|
|
// the pedal opens the plugin's page, not its settings panel.
|
|
assert.deepEqual(t.settingsTarget({ id: 'a', has_settings: true, nav: true }), { kind: 'screen', id: 'a' });
|
|
assert.deepEqual(t.settingsTarget({ id: 'b', has_settings: false, nav: true }), { kind: 'screen', id: 'b' });
|
|
assert.deepEqual(t.settingsTarget({ id: 'c', has_settings: false, has_screen: true }), { kind: 'screen', id: 'c' });
|
|
// Settings-only plugin (no screen) falls back to its settings panel.
|
|
assert.deepEqual(t.settingsTarget({ id: 'e', has_settings: true }), { kind: 'settings', id: 'e' });
|
|
assert.deepEqual(t.settingsTarget({ id: 'd' }), { kind: 'none', id: 'd' });
|
|
});
|
|
|
|
test('clampToBoard: x clamped to [0, boardW-pedalW]; y floored at 0', () => {
|
|
const { t } = loadPage();
|
|
assert.deepEqual(t.clampToBoard({ x: 999, y: 50 }, 800, 150), { x: 650, y: 50 });
|
|
assert.deepEqual(t.clampToBoard({ x: -40, y: -10 }, 800, 150), { x: 0, y: 0 });
|
|
// Board narrower than a pedal → maxX floors at 0.
|
|
assert.deepEqual(t.clampToBoard({ x: 30, y: 5 }, 100, 150), { x: 0, y: 5 });
|
|
});
|
|
|
|
test('defaultSlot: padding origin; column count adapts to board width', () => {
|
|
const { t } = loadPage();
|
|
const s0 = t.defaultSlot(0, 1200);
|
|
assert.equal(s0.x, 24);
|
|
assert.equal(s0.y, 24);
|
|
// 2nd pedal is to the right on the same row (≥2 columns at this width).
|
|
const s1 = t.defaultSlot(1, 1200);
|
|
assert.ok(s1.x > s0.x);
|
|
assert.equal(s1.y, s0.y);
|
|
// Number of columns = index where the row first wraps. Wider board → more.
|
|
const cols = (bw) => { const y0 = t.defaultSlot(0, bw).y; let i = 1; while (i < 50 && t.defaultSlot(i, bw).y === y0) i++; return i; };
|
|
assert.ok(cols(2200) > cols(700), 'more columns on a wider board');
|
|
assert.ok(cols(700) >= 1);
|
|
});
|
|
|
|
test('loadLayout/saveLayout: round-trip + corruption tolerance', () => {
|
|
const { t, store } = loadPage();
|
|
assert.deepEqual(t.loadLayout(), {});
|
|
t.saveLayout({ audio: { nam_tone: { x: 10, y: 20 } } });
|
|
assert.deepEqual(t.loadLayout(), { audio: { nam_tone: { x: 10, y: 20 } } });
|
|
assert.ok(store[t.LS_KEY]);
|
|
// Corrupt JSON → empty object, no throw.
|
|
store[t.LS_KEY] = '{not json';
|
|
assert.deepEqual(t.loadLayout(), {});
|
|
});
|
|
|
|
test('saveLayout: swallows storage exceptions (quota / private mode)', () => {
|
|
const { t } = loadPage({ throwOnSet: true });
|
|
assert.doesNotThrow(() => t.saveLayout({ a: 1 }));
|
|
});
|
|
|
|
test('frameFor: assigns a pool skin, persists it, and sticks across calls', () => {
|
|
const { t } = loadPage();
|
|
const frames = {};
|
|
const f1 = t.frameFor('alpha', frames);
|
|
assert.ok(t.PEDAL_FRAMES.includes(f1), 'assigned skin is from the pool');
|
|
assert.equal(frames.alpha, f1, 'assignment recorded for persistence');
|
|
assert.equal(t.frameFor('alpha', frames), f1, 'same plugin keeps the same skin');
|
|
// A stale/invalid saved skin (e.g. removed from the pool) is re-picked.
|
|
frames.beta = 'gone.png';
|
|
const f3 = t.frameFor('beta', frames);
|
|
assert.ok(t.PEDAL_FRAMES.includes(f3), 're-picked a valid skin');
|
|
assert.ok(t.frameUrl('pedal-002.png').startsWith('/static/v3/pedals/pedal-002.png'));
|
|
});
|
|
|
|
test('loadCollapsed/saveCollapsed: round-trip + corruption tolerance', () => {
|
|
const { t, store } = loadPage();
|
|
assert.deepEqual(t.loadCollapsed(), {});
|
|
t.saveCollapsed({ audio: true });
|
|
assert.deepEqual(t.loadCollapsed(), { audio: true });
|
|
store[t.COLLAPSE_KEY] = '{bad';
|
|
assert.deepEqual(t.loadCollapsed(), {});
|
|
});
|
|
|
|
test('DRAG_THRESHOLD is a small positive pixel budget', () => {
|
|
const { t } = loadPage();
|
|
assert.equal(typeof t.DRAG_THRESHOLD, 'number');
|
|
assert.ok(t.DRAG_THRESHOLD > 0 && t.DRAG_THRESHOLD < 20);
|
|
});
|