mirror of
https://github.com/MHSanaei/3x-ui.git
synced 2026-08-24 20:07:13 +00:00
7605902324
* test(audit): add gremlins/rapid/coverage tooling + AUDIT.md scaffold * test(audit): hygiene sweep (race-clean except logger global; Finding #2) + smell inventory * test(audit): cover untested error/edge branches (TLS proxy+pin, migration tag cleanup=Finding #1) * test(audit): strengthen internal/sub link tests (dedup key, TLS/Reality mapping, clash well-formedness) * test(audit): property (rapid) + fuzz tests for joinHostPort/userinfo/pin/ParseLink * test(audit): tighten frontend subSortIndex rejection assertions + wire coverage * ci(audit): add shuffle gate + non-blocking race job (Finding #2) + fuzz-smoke; document mutation policy * chore(audit): gitignore frontend coverage output * test(audit): exhaustive whole-repo pass — strengthen 5 weak/fake tests (netproxy, CSP, modal per-protocol loops, schema coercions) * docs(contributing): add Testing section (conventions, race/shuffle, fuzz, mutation policy); drop AUDIT.md ledger * fix(logger,migration): guard logBuffer with mutex; execute legacy tag cleanup (tx.Exec); make CI race gate blocking * ci(mutation): add nightly scoped gremlins workflow (informational artifacts) * test(audit): strengthen runtime tests — baseURL scheme/port bounds, isNonEmptySlice, trafficReset * test(audit): strengthen clash tests — reality field mapping + tcp-header validation * test(audit): runtime — egress-proxy + content-type tests; drop redundant bp=='' branch * test(audit): strengthen link parser/helper tests (defaultPort, splitComma, base64, canonicalQuery, tls/reality/transport mapping) * test(audit): strengthen sub/xray/common/netsafe/mtproto/config/middleware tests (kill surviving mutants) * test(audit): raise timeout on protocol-iteration modal tests (heavy re-renders, slow on CI) * fix(logger): GetLogs returns at most c entries (off-by-one fix; addresses PR review) * perf(logger): snapshot logBuffer under lock so GetLogs doesn't block logging; clarify fuzz-seed docs (addresses PR review)
94 lines
3.1 KiB
TypeScript
94 lines
3.1 KiB
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { screen, act } from '@testing-library/react';
|
|
|
|
import InboundFormModal from '@/pages/inbounds/form/InboundFormModal';
|
|
import { DBInbound } from '@/models/dbinbound';
|
|
import {
|
|
renderWithProviders,
|
|
fieldLabels,
|
|
listSelectOptions,
|
|
chooseSelectOption,
|
|
} from './test-utils';
|
|
|
|
function renderModal() {
|
|
return renderWithProviders(
|
|
<InboundFormModal
|
|
open
|
|
mode="add"
|
|
dbInbound={null}
|
|
dbInbounds={[]}
|
|
availableNodes={[]}
|
|
onClose={() => {}}
|
|
onSaved={() => {}}
|
|
/>,
|
|
);
|
|
}
|
|
|
|
describe('InboundFormModal', () => {
|
|
it('renders add mode without crashing', () => {
|
|
renderModal();
|
|
expect(document.querySelector('.ant-modal')).toBeTruthy();
|
|
expect(fieldLabels().length).toBeGreaterThan(0);
|
|
});
|
|
|
|
it('field structure differs per protocol (not a vacuous snapshot loop)', async () => {
|
|
renderModal();
|
|
const protocols = listSelectOptions('protocol');
|
|
expect(protocols.length).toBeGreaterThan(3);
|
|
|
|
const labelsByProto: Record<string, string[]> = {};
|
|
for (const proto of protocols) {
|
|
chooseSelectOption('protocol', proto);
|
|
// Flush antd Form.useWatch('protocol') before reading — without it every iteration
|
|
// sees the same pre-update DOM and the loop asserts nothing (the original bug here).
|
|
await act(async () => { await new Promise((r) => setTimeout(r, 0)); });
|
|
labelsByProto[proto] = fieldLabels();
|
|
}
|
|
|
|
// The loop must actually exercise protocol-specific rendering: distinct protocols
|
|
// must yield distinct field sets (a vacuous loop makes them all identical).
|
|
const distinctShapes = new Set(Object.values(labelsByProto).map((l) => l.join('|')));
|
|
expect(distinctShapes.size).toBeGreaterThan(1);
|
|
|
|
// Spot-check a protocol-distinguishing field that must appear after the switch.
|
|
if (labelsByProto.shadowsocks) {
|
|
expect(labelsByProto.shadowsocks).toContain('Encryption method');
|
|
}
|
|
}, 30000); // iterates every protocol, re-rendering a heavy modal each time — slow on CI runners
|
|
|
|
it('preserves custom share address strategy when editing a local inbound', async () => {
|
|
renderWithProviders(
|
|
<InboundFormModal
|
|
open
|
|
mode="edit"
|
|
dbInbound={new DBInbound({
|
|
id: 1,
|
|
port: 12345,
|
|
listen: '',
|
|
protocol: 'shadowsocks',
|
|
remark: 'edge',
|
|
enable: true,
|
|
settings: {
|
|
method: '2022-blake3-aes-128-gcm',
|
|
password: 'server-password',
|
|
network: 'tcp,udp',
|
|
clients: [],
|
|
},
|
|
streamSettings: { network: 'tcp', security: 'none', tcpSettings: {} },
|
|
sniffing: { enabled: false },
|
|
nodeId: null,
|
|
shareAddrStrategy: 'custom',
|
|
shareAddr: 'edge.example.test',
|
|
})}
|
|
dbInbounds={[]}
|
|
availableNodes={[]}
|
|
onClose={() => {}}
|
|
onSaved={() => {}}
|
|
/>,
|
|
);
|
|
|
|
const shareAddrInput = await screen.findByDisplayValue('edge.example.test');
|
|
expect((shareAddrInput as HTMLInputElement).value).toBe('edge.example.test');
|
|
});
|
|
});
|