iOS/Gateway: harden pairing resolution and settings-driven capability refresh (#22120)
Merged via /review-pr -> /prepare-pr -> /merge-pr. Prepared head SHA: 55b8a93a999b7458c98f9d3b31abbd3665929b31 Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com> Co-authored-by: mbelinky <132747814+mbelinky@users.noreply.github.com> Reviewed-by: @mbelinky
This commit is contained in:
@@ -124,4 +124,28 @@ describe("resolveNodeIdFromCandidates", () => {
|
||||
resolveNodeIdFromCandidates([{ nodeId: "mac-abcdef" }, { nodeId: "mac-abc999" }], "mac-abc"),
|
||||
).toThrow(/ambiguous node: mac-abc.*matches:/);
|
||||
});
|
||||
|
||||
it("prefers a unique connected node when names are duplicated", () => {
|
||||
expect(
|
||||
resolveNodeIdFromCandidates(
|
||||
[
|
||||
{ nodeId: "ios-old", displayName: "iPhone", connected: false },
|
||||
{ nodeId: "ios-live", displayName: "iPhone", connected: true },
|
||||
],
|
||||
"iphone",
|
||||
),
|
||||
).toBe("ios-live");
|
||||
});
|
||||
|
||||
it("stays ambiguous when multiple connected nodes match", () => {
|
||||
expect(() =>
|
||||
resolveNodeIdFromCandidates(
|
||||
[
|
||||
{ nodeId: "ios-a", displayName: "iPhone", connected: true },
|
||||
{ nodeId: "ios-b", displayName: "iPhone", connected: true },
|
||||
],
|
||||
"iphone",
|
||||
),
|
||||
).toThrow(/ambiguous node: iphone.*matches:/);
|
||||
});
|
||||
});
|
||||
|
||||
Reference in New Issue
Block a user