39 lines
1.2 KiB
Dart
39 lines
1.2 KiB
Dart
import 'package:flutter_test/flutter_test.dart';
|
|
import 'package:xworkmate/runtime/acp_endpoint_paths.dart';
|
|
|
|
void main() {
|
|
group('ACP endpoint path resolution', () {
|
|
test('resolves managed bridge origin to ACP HTTP RPC path', () {
|
|
final endpoint = resolveAcpHttpRpcEndpoint(
|
|
Uri.parse('https://xworkmate-bridge.svc.plus'),
|
|
);
|
|
|
|
expect(endpoint.toString(), 'https://xworkmate-bridge.svc.plus/acp/rpc');
|
|
});
|
|
|
|
test('rejects OpenClaw gateway submit path as a global ACP base', () {
|
|
final endpoint = resolveAcpHttpRpcEndpoint(
|
|
Uri.parse('https://xworkmate-bridge.svc.plus/gateway/openclaw'),
|
|
);
|
|
|
|
expect(endpoint, isNull);
|
|
});
|
|
|
|
test('rejects provider mapping paths as app RPC bases', () {
|
|
final codexEndpoint = resolveAcpHttpRpcEndpoint(
|
|
Uri.parse('https://xworkmate-bridge.svc.plus/acp-server/codex'),
|
|
);
|
|
|
|
expect(codexEndpoint, isNull);
|
|
});
|
|
|
|
test('rejects provider mapping paths even when ACP suffix is present', () {
|
|
final endpoint = resolveAcpHttpRpcEndpoint(
|
|
Uri.parse('https://xworkmate-bridge.svc.plus/acp-server/codex/acp/rpc'),
|
|
);
|
|
|
|
expect(endpoint, isNull);
|
|
});
|
|
});
|
|
}
|