fix(providers): finalize Nimble and Opper asset handling

This commit is contained in:
diegosouzapw
2026-09-02 01:04:05 -03:00
parent 713440be0a
commit ccb024cfa9
6 changed files with 19 additions and 18 deletions

View File

@@ -0,0 +1 @@
Render Nimble Search with the generic provider icon and serve Opper's proven logo locally.

View File

@@ -1,7 +0,0 @@
<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" role="img" aria-label="Nimble">
<rect width="24" height="24" rx="5" fill="#6D28D9" />
<path
d="M7 17V7h2.1l5.8 6.6V7H17v10h-2.1L9.1 10.4V17H7z"
fill="#fff"
/>
</svg>

Before

Width:  |  Height:  |  Size: 240 B

View File

@@ -141,7 +141,6 @@ const KNOWN_SVGS = new Set([
"moonshot",
"morph",
"nebius",
"nimble-search",
"nlpcloud",
"nomic",
"novita",
@@ -152,6 +151,7 @@ const KNOWN_SVGS = new Set([
"openai",
"openclaw",
"openrouter",
"opper",
"orcarouter",
"ovhcloud",
"perplexity",
@@ -240,6 +240,7 @@ const GENERIC_PROVIDER_IDS = new Set([
"leonardo",
"modal",
"modelscope",
"nimble-search",
"nlpcloud",
"oauth",
"oci",
@@ -347,7 +348,9 @@ const ProviderIcon = memo(function ProviderIcon({
: normalizedId;
const usesGenericIcon =
GENERIC_PROVIDER_IDS.has(normalizedId) || GENERIC_PROVIDER_IDS.has(localSvgId);
const themedSvg = Object.hasOwn(THEMED_SVGS, normalizedId) ? THEMED_SVGS[normalizedId] : undefined;
const themedSvg = Object.hasOwn(THEMED_SVGS, normalizedId)
? THEMED_SVGS[normalizedId]
: undefined;
const hasSvg = KNOWN_SVGS.has(localSvgId);
const [failedAssets, setFailedAssets] = useState<Record<string, true>>({});

View File

@@ -541,7 +541,7 @@ test("provider asset provenance gate binds auditedCommit to the physical provide
}
});
test("repository provider asset manifest covers the audited 142-file snapshot", (t) => {
test("repository provider asset manifest covers the audited 141-file snapshot", (t) => {
const manifestPath = join(REPO_ROOT, "config/quality/provider-assets-provenance.jsonl");
const { auditedCommit } = JSON.parse(readFileSync(manifestPath, "utf8").split("\n")[0]);
if (!gitHasCommit(auditedCommit) && isShallowRepository()) {
@@ -556,7 +556,7 @@ test("repository provider asset manifest covers the audited 142-file snapshot",
assert.equal(result.status, 0, `${result.stdout}\n${result.stderr}`);
assert.match(
result.stdout,
/142\/142 registered; proven=71 probable=69 unresolved=2; duplicate-groups=1/
/141\/141 registered; proven=72 probable=69 unresolved=0; duplicate-groups=1/
);
});

View File

@@ -35,6 +35,7 @@ const LOCAL_SVG_IDS_WITHOUT_PROVENANCE = [
"leonardo",
"modal",
"modelscope",
"nimble-search",
"nlpcloud",
"oauth",
"oci",
@@ -178,9 +179,9 @@ const AUDITED_REFERENCE_FILES = [
...referenceRoots.flatMap((directory) => collectTextFiles(join(root, directory))),
];
test("provider bundle retires exactly the 79 unresolved assets and keeps the generic icon", () => {
assert.equal(retiredAssetNames.length, 79);
assert.equal(new Set(retiredAssetNames).size, 79);
test("provider bundle retires exactly the 80 unresolved assets and keeps the generic icon", () => {
assert.equal(retiredAssetNames.length, 80);
assert.equal(new Set(retiredAssetNames).size, 80);
for (const assetName of retiredAssetNames) {
assert.equal(
@@ -197,8 +198,9 @@ test("provider bundle retires exactly the 79 unresolved assets and keeps the gen
// provenance PRs (#11735, #11736, #11711) landed first and independently retired
// 6 further unproven files this PR never targeted (freebuff-dark.svg,
// freebuff-light.svg, freebuff.png, openvecta.svg, picoclaw.jpg, zoocode.png),
// so the real remaining count is 142, not 148.
assert.equal(distributedAssets.length, 142, "all 142 non-target assets must remain");
// so the real pre-fix count was 142, not 148. This fix retires the unresolved
// Nimble asset as well, leaving 141 distributed assets.
assert.equal(distributedAssets.length, 141, "all 141 non-target assets must remain");
assert.ok(distributedAssets.includes("cli-generic.svg"));
});

View File

@@ -54,6 +54,7 @@ const PROVIDER_IDS_WITHOUT_LOCAL_ASSET_PROVENANCE = [
"leonardo",
"modal",
"modelscope",
"nimble-search",
"nlpcloud",
"oauth",
"oci",
@@ -230,6 +231,7 @@ describe("ProviderIcon — local SVG dimensions", () => {
it.each([
["cline", "/providers/cline.svg"],
["kimi-coding", "/providers/kimi-logomark-light.svg"],
["opper", "/providers/opper.svg"],
])("gives %s a definite square layout size", (providerId, expectedSrc) => {
const container = renderIcon({ providerId, size: 24 });
const img = container.querySelector(`img[src="${expectedSrc}"]`);
@@ -245,8 +247,8 @@ describe("ProviderIcon — local SVG dimensions", () => {
describe("ProviderIcon — unresolved local asset provenance", () => {
it("covers the complete provider and alias inventory", () => {
expect(PROVIDER_IDS_WITHOUT_LOCAL_ASSET_PROVENANCE).toHaveLength(79);
expect(new Set(PROVIDER_IDS_WITHOUT_LOCAL_ASSET_PROVENANCE)).toHaveLength(79);
expect(PROVIDER_IDS_WITHOUT_LOCAL_ASSET_PROVENANCE).toHaveLength(80);
expect(new Set(PROVIDER_IDS_WITHOUT_LOCAL_ASSET_PROVENANCE)).toHaveLength(80);
});
it.each(PROVIDER_IDS_WITHOUT_LOCAL_ASSET_PROVENANCE)(