fix: background-script fetch (CSP/mixed-content), prefer-Spotify links, toolbar icon (task/fix-extension-and-linkui)
The extension linked nothing and the resolver saw no requests: the content script fetched http://localhost:8787 directly from the HTTPS reddit page, which reddit's CSP / mixed-content blocks. Move the network call to a background script (extension origin, exempt) and add stage logging so failures are visible. - extension/background.js (new): does the resolver fetch on message; sets the toolbar badge. - extension/content.js: talks to background via runtime messaging (no page-context fetch); [rsl] console logs at boot/root/candidates/resolve/scan; single primary link. - extension/manifest.json: background.scripts + browser_action (icon.svg, title). - extension/{styles.css,icon.svg}: platform-coloured link (green=spotify, teal=bandcamp) + toolbar icon. - service/lib.js: primaryOf()/isSearchUrl() — link Spotify when the artist is on Spotify, else Bandcamp, else Spotify search; spotifyResult/mbResult attach `primary` (unit-tested). - README: link behaviour, toolbar, Troubleshooting. Verified: scripts/check.sh green (10 tests); resolver returns `primary` end-to-end. The in-browser fix is logic-verified only (no headless Firefox here) — reload the temp add-on and watch the page console `[rsl]` logs to confirm. Source: project human-feedback 2026-06-16 (notes 01KV8VC58QMYBDY6VVVJHR8YNY + 01KV91AMJCN2C4GFCKMKQRGNXE). Co-Authored-By: Claude Opus 4.8 <noreply@anthropic.com>
This commit is contained in:
@@ -26,10 +26,12 @@ service/ tiny Node.js resolver (one file, zero npm deps)
|
|||||||
resolver.js
|
resolver.js
|
||||||
package.json
|
package.json
|
||||||
.env.example
|
.env.example
|
||||||
extension/ Firefox MV2 extension (content script only)
|
extension/ Firefox MV2 extension
|
||||||
manifest.json
|
manifest.json
|
||||||
|
background.js (does the resolver fetch; talks to the content script)
|
||||||
content.js
|
content.js
|
||||||
styles.css
|
styles.css
|
||||||
|
icon.svg
|
||||||
```
|
```
|
||||||
|
|
||||||
## 1. Run the resolver service
|
## 1. Run the resolver service
|
||||||
@@ -91,9 +93,26 @@ with `xpinstall.signatures.required = false`.)
|
|||||||
|
|
||||||
1. Make sure the resolver service is running.
|
1. Make sure the resolver service is running.
|
||||||
2. Open any Reddit comments thread (a URL with `/comments/` in it).
|
2. Open any Reddit comments thread (a URL with `/comments/` in it).
|
||||||
3. Artist names in the comments become links: the name links to **Spotify**, with
|
3. Artist names become a single link — to **Spotify** if the artist is on Spotify,
|
||||||
a small superscript **`bc`** link to **Bandcamp** beside it. New comments loaded
|
otherwise to **Bandcamp** — colour-coded (green = Spotify, teal = Bandcamp). New
|
||||||
as you scroll are linked automatically.
|
comments loaded as you scroll are linked automatically.
|
||||||
|
4. The toolbar icon shows the extension is active; its badge shows how many links were
|
||||||
|
added on the current page.
|
||||||
|
|
||||||
|
## Troubleshooting
|
||||||
|
|
||||||
|
If nothing gets linked:
|
||||||
|
|
||||||
|
1. Confirm the resolver is running — `curl localhost:8787/health` should return
|
||||||
|
`{"ok":true,...}`.
|
||||||
|
2. On the reddit thread, open the browser console (F12) and look for `[rsl]` logs: they
|
||||||
|
report the root element, candidate count, and resolver responses on each scan. A
|
||||||
|
`resolve failed` line means the background script can't reach the resolver (is it on
|
||||||
|
`:8787`?); `candidates found: 0` means the comment text wasn't matched (please report
|
||||||
|
the thread).
|
||||||
|
3. The content script reaches the resolver **through the extension's background script**
|
||||||
|
— a page-context fetch to `http://localhost` is blocked by reddit's CSP — so make sure
|
||||||
|
the add-on loaded without errors in `about:debugging`.
|
||||||
|
|
||||||
## Configuration
|
## Configuration
|
||||||
|
|
||||||
|
|||||||
@@ -0,0 +1,48 @@
|
|||||||
|
// Background script: performs the cross-origin fetch to the resolver, and drives the
|
||||||
|
// toolbar badge.
|
||||||
|
//
|
||||||
|
// Why this exists: a content script running in the HTTPS reddit page CANNOT reach
|
||||||
|
// http://localhost:8787 — reddit's Content-Security-Policy (and mixed-content rules)
|
||||||
|
// block the request, so it never leaves the browser. The background page runs in the
|
||||||
|
// extension origin (moz-extension://), which is exempt, and may fetch any host listed
|
||||||
|
// in `permissions`. The content script therefore asks us to do the request.
|
||||||
|
|
||||||
|
const api = globalThis.browser ?? globalThis.chrome;
|
||||||
|
|
||||||
|
// Keep in sync with manifest.json `permissions` if you change host/port.
|
||||||
|
const RESOLVER_URL = "http://localhost:8787";
|
||||||
|
|
||||||
|
async function resolveCandidates(candidates) {
|
||||||
|
const r = await fetch(`${RESOLVER_URL}/resolve`, {
|
||||||
|
method: "POST",
|
||||||
|
headers: { "content-type": "application/json" },
|
||||||
|
body: JSON.stringify({ candidates }),
|
||||||
|
});
|
||||||
|
if (!r.ok) throw new Error(`resolver http ${r.status}`);
|
||||||
|
return r.json();
|
||||||
|
}
|
||||||
|
|
||||||
|
api.runtime.onMessage.addListener((msg, sender) => {
|
||||||
|
if (!msg || typeof msg !== "object") return;
|
||||||
|
|
||||||
|
if (msg.type === "resolve") {
|
||||||
|
// Returning a Promise makes sendMessage() in the content script resolve with it.
|
||||||
|
return resolveCandidates(msg.candidates)
|
||||||
|
.then((data) => ({ ok: true, data }))
|
||||||
|
.catch((e) => {
|
||||||
|
console.warn("[rsl/bg] resolve failed:", e && e.message);
|
||||||
|
return { ok: false, error: String((e && e.message) || e) };
|
||||||
|
});
|
||||||
|
}
|
||||||
|
|
||||||
|
if (msg.type === "badge") {
|
||||||
|
const tabId = sender.tab && sender.tab.id;
|
||||||
|
if (tabId != null) {
|
||||||
|
const n = msg.count | 0;
|
||||||
|
try {
|
||||||
|
api.browserAction.setBadgeBackgroundColor({ color: "#1db954", tabId });
|
||||||
|
api.browserAction.setBadgeText({ text: n > 0 ? String(n) : "", tabId });
|
||||||
|
} catch (e) { /* badge is best-effort */ }
|
||||||
|
}
|
||||||
|
}
|
||||||
|
});
|
||||||
+29
-32
@@ -8,9 +8,8 @@
|
|||||||
(() => {
|
(() => {
|
||||||
"use strict";
|
"use strict";
|
||||||
|
|
||||||
// If you run the resolver on a different host/port, change this AND the matching
|
const api = globalThis.browser ?? globalThis.chrome;
|
||||||
// host entry in manifest.json `permissions`.
|
const log = (...a) => console.log("[rsl]", ...a);
|
||||||
const RESOLVER_URL = "http://localhost:8787";
|
|
||||||
|
|
||||||
// ---- candidate extraction -------------------------------------------------
|
// ---- candidate extraction -------------------------------------------------
|
||||||
// A token is a Capitalized or ALL-CAPS word; a candidate is 1-4 tokens joined by
|
// A token is a Capitalized or ALL-CAPS word; a candidate is 1-4 tokens joined by
|
||||||
@@ -80,37 +79,25 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
// ---- link building / rewriting --------------------------------------------
|
// ---- link building / rewriting --------------------------------------------
|
||||||
|
// Per the user's "if on spotify, link that, else bandcamp" rule: one link to the
|
||||||
|
// primary platform, colour-coded so you can tell which at a glance.
|
||||||
function makeLink(label, links) {
|
function makeLink(label, links) {
|
||||||
const frag = document.createDocumentFragment();
|
const primary = links.primary || { platform: "spotify", url: links.spotify };
|
||||||
const a = document.createElement("a");
|
const a = document.createElement("a");
|
||||||
a.className = "rsl-link";
|
a.className = `rsl-link rsl-${primary.platform}`;
|
||||||
a.textContent = label;
|
a.textContent = label;
|
||||||
a.href = links.spotify;
|
a.href = primary.url;
|
||||||
a.target = "_blank";
|
a.target = "_blank";
|
||||||
a.rel = "noopener noreferrer";
|
a.rel = "noopener noreferrer";
|
||||||
a.title = "Open on Spotify";
|
a.title = `Open on ${primary.platform === "spotify" ? "Spotify" : "Bandcamp"}`;
|
||||||
frag.appendChild(a);
|
return a;
|
||||||
if (links.bandcamp) {
|
|
||||||
const sup = document.createElement("sup");
|
|
||||||
sup.className = "rsl-sup";
|
|
||||||
const b = document.createElement("a");
|
|
||||||
b.className = "rsl-bc";
|
|
||||||
b.textContent = "bc";
|
|
||||||
b.href = links.bandcamp;
|
|
||||||
b.target = "_blank";
|
|
||||||
b.rel = "noopener noreferrer";
|
|
||||||
b.title = "Search on Bandcamp";
|
|
||||||
sup.appendChild(b);
|
|
||||||
frag.appendChild(sup);
|
|
||||||
}
|
|
||||||
return frag;
|
|
||||||
}
|
}
|
||||||
|
|
||||||
function wrapNode(node) {
|
function wrapNode(node) {
|
||||||
const text = node.nodeValue;
|
const text = node.nodeValue;
|
||||||
const ms = matchesIn(text).filter((m) => {
|
const ms = matchesIn(text).filter((m) => {
|
||||||
const links = resolved.get(m.name);
|
const links = resolved.get(m.name);
|
||||||
return links && links.spotify;
|
return links && ((links.primary && links.primary.url) || links.spotify);
|
||||||
});
|
});
|
||||||
if (!ms.length) return;
|
if (!ms.length) return;
|
||||||
const frag = document.createDocumentFragment();
|
const frag = document.createDocumentFragment();
|
||||||
@@ -128,17 +115,19 @@
|
|||||||
// ---- resolver client ------------------------------------------------------
|
// ---- resolver client ------------------------------------------------------
|
||||||
const resolved = new Map(); // candidate string -> { spotify, bandcamp } | null
|
const resolved = new Map(); // candidate string -> { spotify, bandcamp } | null
|
||||||
|
|
||||||
|
// The network call goes through the background script — a page-context fetch to
|
||||||
|
// http://localhost is blocked by reddit's CSP / mixed-content rules.
|
||||||
async function resolve(names) {
|
async function resolve(names) {
|
||||||
|
log("resolving", names.length, "candidate(s) via background:", names.slice(0, 8));
|
||||||
try {
|
try {
|
||||||
const r = await fetch(`${RESOLVER_URL}/resolve`, {
|
const resp = await api.runtime.sendMessage({ type: "resolve", candidates: names });
|
||||||
method: "POST",
|
if (!resp) throw new Error("no response from background script");
|
||||||
headers: { "content-type": "application/json" },
|
if (!resp.ok) throw new Error(resp.error || "resolve failed");
|
||||||
body: JSON.stringify({ candidates: names }),
|
const hits = Object.values(resp.data).filter(Boolean).length;
|
||||||
});
|
log("resolver returned", hits, "artist(s) of", names.length);
|
||||||
if (!r.ok) throw new Error(`http ${r.status}`);
|
return resp.data;
|
||||||
return await r.json();
|
|
||||||
} catch (e) {
|
} catch (e) {
|
||||||
console.warn("[rsl] resolver unreachable:", e.message);
|
console.warn("[rsl] resolve failed (is the resolver running on :8787?):", e.message);
|
||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
@@ -152,11 +141,14 @@
|
|||||||
}
|
}
|
||||||
|
|
||||||
async function scan() {
|
async function scan() {
|
||||||
const nodes = collectTextNodes(getRoot());
|
const root = getRoot();
|
||||||
|
const nodes = collectTextNodes(root);
|
||||||
|
log("scan: root", root.tagName || root.nodeName, "| text nodes", nodes.length);
|
||||||
if (!nodes.length) return;
|
if (!nodes.length) return;
|
||||||
|
|
||||||
const seen = new Set();
|
const seen = new Set();
|
||||||
for (const node of nodes) for (const m of matchesIn(node.nodeValue)) seen.add(m.name);
|
for (const node of nodes) for (const m of matchesIn(node.nodeValue)) seen.add(m.name);
|
||||||
|
log("candidates found:", seen.size);
|
||||||
|
|
||||||
const ask = [...seen].filter((c) => !resolved.has(c));
|
const ask = [...seen].filter((c) => !resolved.has(c));
|
||||||
if (ask.length) {
|
if (ask.length) {
|
||||||
@@ -164,6 +156,10 @@
|
|||||||
if (res) for (const c of ask) resolved.set(c, res[c] || null); // negative-cache misses
|
if (res) for (const c of ask) resolved.set(c, res[c] || null); // negative-cache misses
|
||||||
}
|
}
|
||||||
for (const node of nodes) if (node.isConnected) wrapNode(node);
|
for (const node of nodes) if (node.isConnected) wrapNode(node);
|
||||||
|
|
||||||
|
const total = document.querySelectorAll("a.rsl-link").length;
|
||||||
|
api.runtime.sendMessage({ type: "badge", count: total }).catch(() => {});
|
||||||
|
log("scan done; links on page:", total);
|
||||||
}
|
}
|
||||||
|
|
||||||
// serialize scans; coalesce overlapping triggers
|
// serialize scans; coalesce overlapping triggers
|
||||||
@@ -187,6 +183,7 @@
|
|||||||
|
|
||||||
const onThread = () => /\/comments\//.test(location.pathname);
|
const onThread = () => /\/comments\//.test(location.pathname);
|
||||||
|
|
||||||
|
log("content script loaded:", location.href, "| thread page:", onThread());
|
||||||
if (onThread()) schedule();
|
if (onThread()) schedule();
|
||||||
new MutationObserver(debounce(() => { if (onThread()) schedule(); }, 600))
|
new MutationObserver(debounce(() => { if (onThread()) schedule(); }, 600))
|
||||||
.observe(document.documentElement, { childList: true, subtree: true });
|
.observe(document.documentElement, { childList: true, subtree: true });
|
||||||
|
|||||||
@@ -0,0 +1,8 @@
|
|||||||
|
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 32 32" width="32" height="32">
|
||||||
|
<rect width="32" height="32" rx="7" fill="#1db954"/>
|
||||||
|
<g fill="none" stroke="#ffffff" stroke-width="2.2" stroke-linecap="round" stroke-linejoin="round">
|
||||||
|
<path d="M12 22V10l9-2v12"/>
|
||||||
|
</g>
|
||||||
|
<circle cx="10" cy="22" r="3" fill="#ffffff"/>
|
||||||
|
<circle cx="19" cy="20" r="3" fill="#ffffff"/>
|
||||||
|
</svg>
|
||||||
|
After Width: | Height: | Size: 385 B |
@@ -13,6 +13,13 @@
|
|||||||
"http://localhost:8787/*",
|
"http://localhost:8787/*",
|
||||||
"http://127.0.0.1:8787/*"
|
"http://127.0.0.1:8787/*"
|
||||||
],
|
],
|
||||||
|
"background": {
|
||||||
|
"scripts": ["background.js"]
|
||||||
|
},
|
||||||
|
"browser_action": {
|
||||||
|
"default_icon": "icon.svg",
|
||||||
|
"default_title": "Reddit → Spotify/Bandcamp linker (active on reddit threads)"
|
||||||
|
},
|
||||||
"content_scripts": [
|
"content_scripts": [
|
||||||
{
|
{
|
||||||
"matches": ["*://*.reddit.com/*"],
|
"matches": ["*://*.reddit.com/*"],
|
||||||
|
|||||||
+10
-17
@@ -1,23 +1,16 @@
|
|||||||
/* Injected links — kept subtle so reddit comments stay readable. */
|
/* Injected links — kept subtle so reddit comments stay readable. One link per artist,
|
||||||
|
coloured by platform: green = Spotify, teal = Bandcamp. */
|
||||||
.rsl-link {
|
.rsl-link {
|
||||||
text-decoration: underline dotted #1db954 !important; /* spotify green */
|
text-decoration: underline dotted;
|
||||||
text-underline-offset: 2px;
|
text-underline-offset: 2px;
|
||||||
cursor: pointer;
|
cursor: pointer;
|
||||||
}
|
}
|
||||||
|
.rsl-spotify {
|
||||||
|
text-decoration-color: #1db954 !important; /* spotify green */
|
||||||
|
}
|
||||||
|
.rsl-bandcamp {
|
||||||
|
text-decoration-color: #629aa9 !important; /* bandcamp teal */
|
||||||
|
}
|
||||||
.rsl-link:hover {
|
.rsl-link:hover {
|
||||||
text-decoration: underline solid #1db954 !important;
|
text-decoration-style: solid !important;
|
||||||
}
|
|
||||||
.rsl-sup {
|
|
||||||
font-size: 0.7em;
|
|
||||||
margin-left: 1px;
|
|
||||||
vertical-align: super;
|
|
||||||
line-height: 0;
|
|
||||||
}
|
|
||||||
.rsl-bc {
|
|
||||||
color: #629aa9 !important; /* bandcamp teal */
|
|
||||||
text-decoration: none !important;
|
|
||||||
font-weight: 600;
|
|
||||||
}
|
|
||||||
.rsl-bc:hover {
|
|
||||||
text-decoration: underline !important;
|
|
||||||
}
|
}
|
||||||
|
|||||||
+21
-6
@@ -19,12 +19,26 @@ export function pickArtist(name, items, { minScore = null } = {}) {
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// A "/search" url means we don't have a direct artist page (just a search fallback).
|
||||||
|
export const isSearchUrl = (url) => typeof url === "string" && url.includes("/search");
|
||||||
|
|
||||||
|
// Choose the single best link to show: prefer Spotify when the artist is actually ON
|
||||||
|
// Spotify (a direct, non-search url); else a direct Bandcamp; else the Spotify search.
|
||||||
|
export function primaryOf({ spotify, bandcamp }) {
|
||||||
|
if (spotify && !isSearchUrl(spotify)) return { platform: "spotify", url: spotify };
|
||||||
|
if (bandcamp && !isSearchUrl(bandcamp)) return { platform: "bandcamp", url: bandcamp };
|
||||||
|
return { platform: "spotify", url: spotify };
|
||||||
|
}
|
||||||
|
|
||||||
// Link object for a confirmed Spotify hit (direct artist url when present, else search).
|
// Link object for a confirmed Spotify hit (direct artist url when present, else search).
|
||||||
export const spotifyResult = (hit) => ({
|
export function spotifyResult(hit) {
|
||||||
name: hit.name,
|
const r = {
|
||||||
spotify: hit.external_urls?.spotify ?? spotifySearch(hit.name),
|
name: hit.name,
|
||||||
bandcamp: bandcampSearch(hit.name),
|
spotify: hit.external_urls?.spotify ?? spotifySearch(hit.name),
|
||||||
});
|
bandcamp: bandcampSearch(hit.name),
|
||||||
|
};
|
||||||
|
return { ...r, primary: primaryOf(r) };
|
||||||
|
}
|
||||||
|
|
||||||
// Extract direct links from a MusicBrainz artist's url-relations (zero-cred: MB stores
|
// Extract direct links from a MusicBrainz artist's url-relations (zero-cred: MB stores
|
||||||
// official Bandcamp / streaming URLs). Either field may be null.
|
// official Bandcamp / streaming URLs). Either field may be null.
|
||||||
@@ -37,9 +51,10 @@ export function relUrls(relations) {
|
|||||||
// Link object for a confirmed MusicBrainz hit: prefer the direct url-rel links, fall back
|
// Link object for a confirmed MusicBrainz hit: prefer the direct url-rel links, fall back
|
||||||
// to search urls when MB has no relation for that platform.
|
// to search urls when MB has no relation for that platform.
|
||||||
export function mbResult(hit, links) {
|
export function mbResult(hit, links) {
|
||||||
return {
|
const r = {
|
||||||
name: hit.name,
|
name: hit.name,
|
||||||
spotify: links?.spotify ?? spotifySearch(hit.name),
|
spotify: links?.spotify ?? spotifySearch(hit.name),
|
||||||
bandcamp: links?.bandcamp ?? bandcampSearch(hit.name),
|
bandcamp: links?.bandcamp ?? bandcampSearch(hit.name),
|
||||||
};
|
};
|
||||||
|
return { ...r, primary: primaryOf(r) };
|
||||||
}
|
}
|
||||||
|
|||||||
+22
-1
@@ -1,7 +1,7 @@
|
|||||||
// Unit tests for the resolver's pure logic (run with `node --test`). Zero-dep.
|
// Unit tests for the resolver's pure logic (run with `node --test`). Zero-dep.
|
||||||
import { test } from "node:test";
|
import { test } from "node:test";
|
||||||
import assert from "node:assert/strict";
|
import assert from "node:assert/strict";
|
||||||
import { norm, bandcampSearch, spotifySearch, pickArtist, spotifyResult, relUrls, mbResult } from "./lib.js";
|
import { norm, bandcampSearch, spotifySearch, pickArtist, spotifyResult, relUrls, mbResult, primaryOf, isSearchUrl } from "./lib.js";
|
||||||
|
|
||||||
test("norm lowercases, trims, NFKC-normalizes", () => {
|
test("norm lowercases, trims, NFKC-normalizes", () => {
|
||||||
assert.equal(norm(" Cerebral Bore "), "cerebral bore");
|
assert.equal(norm(" Cerebral Bore "), "cerebral bore");
|
||||||
@@ -35,8 +35,28 @@ test("spotifyResult prefers the direct url, falls back to search", () => {
|
|||||||
assert.equal(direct.spotify, "https://open.spotify.com/artist/abc");
|
assert.equal(direct.spotify, "https://open.spotify.com/artist/abc");
|
||||||
assert.match(direct.bandcamp, /^https:\/\/bandcamp\.com\/search\?q=Devourment/);
|
assert.match(direct.bandcamp, /^https:\/\/bandcamp\.com\/search\?q=Devourment/);
|
||||||
|
|
||||||
|
assert.deepEqual(direct.primary, { platform: "spotify", url: "https://open.spotify.com/artist/abc" });
|
||||||
|
|
||||||
const noUrl = spotifyResult({ name: "Devourment" });
|
const noUrl = spotifyResult({ name: "Devourment" });
|
||||||
assert.equal(noUrl.spotify, "https://open.spotify.com/search/Devourment");
|
assert.equal(noUrl.spotify, "https://open.spotify.com/search/Devourment");
|
||||||
|
assert.equal(noUrl.primary.platform, "spotify"); // search fallback still points at spotify
|
||||||
|
});
|
||||||
|
|
||||||
|
test("primaryOf / isSearchUrl: prefer direct spotify, else direct bandcamp, else spotify search", () => {
|
||||||
|
assert.equal(isSearchUrl("https://open.spotify.com/search/X"), true);
|
||||||
|
assert.equal(isSearchUrl("https://open.spotify.com/artist/abc"), false);
|
||||||
|
assert.deepEqual(
|
||||||
|
primaryOf({ spotify: "https://open.spotify.com/artist/abc", bandcamp: "https://bandcamp.com/search?q=X&item_type=b" }),
|
||||||
|
{ platform: "spotify", url: "https://open.spotify.com/artist/abc" },
|
||||||
|
);
|
||||||
|
assert.deepEqual(
|
||||||
|
primaryOf({ spotify: "https://open.spotify.com/search/X", bandcamp: "https://x.bandcamp.com/" }),
|
||||||
|
{ platform: "bandcamp", url: "https://x.bandcamp.com/" },
|
||||||
|
);
|
||||||
|
assert.deepEqual(
|
||||||
|
primaryOf({ spotify: "https://open.spotify.com/search/X", bandcamp: "https://bandcamp.com/search?q=X&item_type=b" }),
|
||||||
|
{ platform: "spotify", url: "https://open.spotify.com/search/X" },
|
||||||
|
);
|
||||||
});
|
});
|
||||||
|
|
||||||
test("relUrls picks direct bandcamp + spotify from MB relations, tolerates junk", () => {
|
test("relUrls picks direct bandcamp + spotify from MB relations, tolerates junk", () => {
|
||||||
@@ -64,6 +84,7 @@ test("mbResult prefers direct links, falls back to search per-platform", () => {
|
|||||||
);
|
);
|
||||||
assert.equal(direct.bandcamp, "https://cattledecapitation.bandcamp.com/");
|
assert.equal(direct.bandcamp, "https://cattledecapitation.bandcamp.com/");
|
||||||
assert.equal(direct.spotify, "https://open.spotify.com/artist/x");
|
assert.equal(direct.spotify, "https://open.spotify.com/artist/x");
|
||||||
|
assert.deepEqual(direct.primary, { platform: "spotify", url: "https://open.spotify.com/artist/x" });
|
||||||
|
|
||||||
const fallback = mbResult({ name: "Cerebral Bore" }, null);
|
const fallback = mbResult({ name: "Cerebral Bore" }, null);
|
||||||
assert.equal(fallback.spotify, "https://open.spotify.com/search/Cerebral%20Bore");
|
assert.equal(fallback.spotify, "https://open.spotify.com/search/Cerebral%20Bore");
|
||||||
|
|||||||
Reference in New Issue
Block a user