fix(outbound): read the probe testability gate's ids like the core (#6527)

A direct, DNS, loopback or blackhole outbound is not a proxy, so the probe
must reject it instead of measuring the panel host's own reachability. The
gate compared the protocol id exactly while the core lowercases it in
LoadWithID before resolving the handler, so "Freedom" and "DNS" were not
recognised: the HTTP probe ran through the direct outbound and returned
Success=true with a full egress block, and the row's Test button stayed
enabled because isUntestable compared exactly as well. The operator reads the
panel host's own country and delay as a working tunnel.

The batch gate now folds the id once before its switch, and isUntestable goes
through the shared isOutboundProtocol helper.
This commit is contained in:
BlindMaster24
2026-09-14 19:53:05 +03:00
committed by GitHub
parent f69d1e869d
commit efcf152950
4 changed files with 86 additions and 4 deletions
@@ -1,6 +1,6 @@
import type { TFunction } from 'i18next';
import { OutboundProtocols as Protocols } from '@/schemas/primitives';
import { isOutboundProtocol, OutboundProtocols as Protocols } from '@/schemas/primitives';
import { isUdpOutbound } from '@/hooks/useXraySetting';
import type {
OutboundTestMode,
@@ -57,15 +57,15 @@ export function outboundAddresses(o: OutboundRow): string[] {
export function isUntestable(o: OutboundRow): boolean {
if (!o) return true;
if (
o.protocol === Protocols.Blackhole ||
o.protocol === Protocols.Loopback ||
isOutboundProtocol(o, Protocols.Blackhole) ||
isOutboundProtocol(o, Protocols.Loopback) ||
o.tag === 'blocked'
)
return true;
// freedom ("direct") and dns aren't proxies — a TCP dial has no endpoint and
// an HTTP probe would only measure the host's own direct reachability, so
// they're untestable in every mode.
if (o.protocol === Protocols.Freedom || o.protocol === Protocols.DNS) return true;
if (isOutboundProtocol(o, Protocols.Freedom) || isOutboundProtocol(o, Protocols.DNS)) return true;
return false;
}