Update Harbor client and gateway functionality
Build and Deploy Gateway / build-and-push (push) Successful in 35s
Build and Deploy Gateway / deploy (push) Successful in 14s

This commit is contained in:
2026-08-17 15:23:16 +03:00
parent 0b39211fbd
commit 7c255192b0
41 changed files with 1443 additions and 218 deletions
+30 -11
View File
@@ -5,16 +5,16 @@ import { canAppendRouteRule, normalizeRouteRules } from '../../dist/shared/routi
test('local route rules normalize URLs, suffixes and duplicates', () => {
assert.deepEqual(normalizeRouteRules([
{ type: 'domain', value: 'https://Example.com/news?id=1' },
{ type: 'domain_suffix', value: '*.Example.org' },
{ type: 'domain_keyword', value: ' CDN ' },
{ type: 'domain', value: 'example.com' },
{ type: 'domain_suffix', value: '.ru', enabled: false },
{ type: 'domain', value: 'https://Example.com/news?id=1', outbound: 'vpn' },
{ type: 'domain_suffix', value: '*.Example.org', outbound: 'direct' },
{ type: 'domain_keyword', value: ' CDN ', outbound: 'vpn' },
{ type: 'domain', value: 'example.com', outbound: 'direct' },
{ type: 'domain_suffix', value: '.ru', enabled: false, outbound: 'direct' },
], { strict: true }), [
{ type: 'domain', value: 'example.com', enabled: true },
{ type: 'domain_suffix', value: 'example.org', enabled: true },
{ type: 'domain_keyword', value: 'cdn', enabled: true },
{ type: 'domain_suffix', value: 'ru', enabled: false },
{ type: 'domain', value: 'example.com', enabled: true, outbound: 'vpn' },
{ type: 'domain_suffix', value: 'example.org', enabled: true, outbound: 'direct' },
{ type: 'domain_keyword', value: 'cdn', enabled: true, outbound: 'vpn' },
{ type: 'domain_suffix', value: 'ru', enabled: false, outbound: 'direct' },
]);
assert.equal(canAppendRouteRule([{ value: 'filled' }]), true);
assert.equal(canAppendRouteRule([{ value: '' }]), false);
@@ -22,11 +22,30 @@ test('local route rules normalize URLs, suffixes and duplicates', () => {
test('invalid local route rules fail at the strict boundary', () => {
assert.throws(
() => normalizeRouteRules([{ type: 'domain_regex', value: '.*' }], { strict: true }),
() => normalizeRouteRules([{ type: 'domain_regex', value: '.*', outbound: 'direct' }], { strict: true }),
/Invalid domain rule type/,
);
assert.throws(
() => normalizeRouteRules([{ type: 'domain_keyword', value: 'bad/path' }], { strict: true }),
() => normalizeRouteRules([{ type: 'domain_keyword', value: 'bad/path', outbound: 'direct' }], { strict: true }),
/Invalid domain rule value/,
);
assert.throws(
() => normalizeRouteRules([{ type: 'domain', value: 'example.com' }], { strict: true }),
/outbound is required/,
);
assert.throws(
() => normalizeRouteRules([{ type: 'domain', value: 'example.com', outbound: 'block' }], { strict: true }),
/Invalid route rule outbound/,
);
});
test('legacy rules default to direct while order and first duplicate stay canonical', () => {
assert.deepEqual(normalizeRouteRules([
{ type: 'domain_suffix', value: 'example.com' },
{ type: 'domain', value: 'api.example.com', outbound: 'vpn' },
{ type: 'domain_suffix', value: 'example.com', outbound: 'vpn' },
]), [
{ type: 'domain_suffix', value: 'example.com', enabled: true, outbound: 'direct' },
{ type: 'domain', value: 'api.example.com', enabled: true, outbound: 'vpn' },
]);
});