test(oceanbase): 脱敏 Oracle 租户连接测试数据

- 将测试中的内网地址、账号和服务名替换为虚构 fixture
- 统一 OceanBase Oracle 与 SSH 跳板机测试常量
- 保留连接预探测与 SSH 诊断断言语义
This commit is contained in:
Syngnat
2026-06-16 08:37:18 +08:00
parent 23f95d7dc8
commit c70eb7157f
3 changed files with 78 additions and 31 deletions

View File

@@ -604,6 +604,12 @@ describe('DataGrid layout', () => {
expect(source).toContain("const useVirtualCellContentContain = false;");
expect(source).toContain("const useVirtualEditableVisibilityHints = !isMacLike && !isV2Ui;");
expect(source).toContain("contain: ${useVirtualRowCellContain ? 'layout paint style' : 'none'};");
expect(source).toContain('.${gridId} .data-grid-toolbar-scroll::-webkit-scrollbar-thumb:hover');
expect(source).toContain('.${gridId} .ant-table-body::-webkit-scrollbar-thumb:hover');
expect(source).toContain('.${gridId} .rc-virtual-list-holder::-webkit-scrollbar-thumb:hover');
expect(source).toContain('.${gridId} .data-grid-external-horizontal-scroll::-webkit-scrollbar-thumb:hover');
expect(source).toContain('background-clip: border-box;');
expect(source).toContain('horizontalScrollbarThumbHoverBg');
expect(source).toContain('const handleSharedCellContextMenu = useCallback');
expect(source).toContain('const shouldUsePlainVirtualContent = isV2Ui && !modifiedStyle;');
expect(source).toContain('if (shouldUsePlainVirtualContent) {');

View File

@@ -1767,10 +1767,12 @@ const DataGrid: React.FC<DataGridProps> = ({
columnMetaTooltipColor: darkMode ? 'rgba(255, 236, 179, 0.98)' : '#262626',
panelFrameColor: darkMode ? 'rgba(0, 0, 0, 0.42)' : 'rgba(0, 0, 0, 0.18)',
floatingScrollbarThumbBg: darkMode ? 'rgba(255,255,255,0.68)' : 'rgba(0,0,0,0.44)',
floatingScrollbarThumbHoverBg: darkMode ? 'rgba(255,255,255,0.78)' : 'rgba(0,0,0,0.54)',
floatingScrollbarThumbBorderColor: darkMode ? 'rgba(255,255,255,0.26)' : 'rgba(255,255,255,0.52)',
floatingScrollbarThumbShadow: (isMacLike || isV2Ui) ? 'none' : (darkMode ? '0 4px 14px rgba(0,0,0,0.42)' : '0 4px 10px rgba(0,0,0,0.20)'),
verticalScrollbarTrackBg: darkMode ? 'rgba(255,255,255,0.08)' : 'rgba(0,0,0,0.08)',
horizontalScrollbarThumbBg: darkMode ? 'rgba(255,255,255,0.20)' : 'rgba(0,0,0,0.14)',
horizontalScrollbarThumbHoverBg: darkMode ? 'rgba(255,255,255,0.30)' : 'rgba(0,0,0,0.24)',
toolbarDividerColor: darkMode ? 'rgba(255, 255, 255, 0.12)' : 'rgba(0, 0, 0, 0.10)',
paginationShellBg: darkMode
? `linear-gradient(135deg, rgba(17,22,34,${_glassMode ? Math.max(0.22, opacity * 0.38) : 0.82}) 0%, rgba(10,14,24,${_glassMode ? Math.max(0.28, opacity * 0.46) : 0.9}) 100%)`
@@ -1809,8 +1811,8 @@ const DataGrid: React.FC<DataGridProps> = ({
selectionAccentHex, selectionAccentRgb,
columnMetaHintColor, columnMetaTooltipColor,
panelFrameColor,
floatingScrollbarThumbBg, floatingScrollbarThumbBorderColor, floatingScrollbarThumbShadow,
verticalScrollbarTrackBg, horizontalScrollbarThumbBg,
floatingScrollbarThumbBg, floatingScrollbarThumbHoverBg, floatingScrollbarThumbBorderColor, floatingScrollbarThumbShadow,
verticalScrollbarTrackBg, horizontalScrollbarThumbBg, horizontalScrollbarThumbHoverBg,
toolbarDividerColor,
paginationShellBg, paginationShellBorderColor, paginationShellShadow,
paginationChipBg, paginationChipBorderColor, paginationHoverBg,
@@ -2446,8 +2448,15 @@ const DataGrid: React.FC<DataGridProps> = ({
}
.${gridId} .data-grid-toolbar-scroll::-webkit-scrollbar-thumb {
background: ${darkMode ? 'rgba(255,255,255,0.28)' : 'rgba(0,0,0,0.22)'};
border: 0;
background-clip: border-box;
border-radius: 999px;
}
.${gridId} .data-grid-toolbar-scroll::-webkit-scrollbar-thumb:hover {
background: ${darkMode ? 'rgba(255,255,255,0.38)' : 'rgba(0,0,0,0.32)'};
border: 0;
background-clip: border-box;
}
.${gridId} .data-grid-toolbar-scroll::-webkit-scrollbar-track {
background: transparent;
}
@@ -2683,9 +2692,16 @@ const DataGrid: React.FC<DataGridProps> = ({
.${gridId} .ant-table-body::-webkit-scrollbar-thumb {
background: ${floatingScrollbarThumbBg};
border: 1px solid ${floatingScrollbarThumbBorderColor};
background-clip: border-box;
border-radius: 999px;
box-shadow: ${floatingScrollbarThumbShadow};
}
.${gridId} .ant-table-body::-webkit-scrollbar-thumb:hover {
background: ${floatingScrollbarThumbHoverBg};
border: 1px solid ${floatingScrollbarThumbBorderColor};
background-clip: border-box;
box-shadow: ${floatingScrollbarThumbShadow};
}
.${gridId} .rc-virtual-list-holder {
scrollbar-width: thin;
scrollbar-color: ${floatingScrollbarThumbBg} transparent;
@@ -2702,9 +2718,16 @@ const DataGrid: React.FC<DataGridProps> = ({
.${gridId} .rc-virtual-list-holder::-webkit-scrollbar-thumb {
background: ${floatingScrollbarThumbBg};
border: 1px solid ${floatingScrollbarThumbBorderColor};
background-clip: border-box;
border-radius: 999px;
box-shadow: ${floatingScrollbarThumbShadow};
}
.${gridId} .rc-virtual-list-holder::-webkit-scrollbar-thumb:hover {
background: ${floatingScrollbarThumbHoverBg};
border: 1px solid ${floatingScrollbarThumbBorderColor};
background-clip: border-box;
box-shadow: ${floatingScrollbarThumbShadow};
}
.${gridId} .data-grid-external-horizontal-scroll {
position: absolute;
left: ${floatingScrollbarInset}px;
@@ -2728,9 +2751,16 @@ const DataGrid: React.FC<DataGridProps> = ({
.${gridId} .data-grid-external-horizontal-scroll::-webkit-scrollbar-thumb {
background: ${horizontalScrollbarThumbBg};
border: 1px solid ${horizontalScrollbarThumbBorderColor};
background-clip: border-box;
border-radius: 999px;
box-shadow: ${horizontalScrollbarThumbShadow};
}
.${gridId} .data-grid-external-horizontal-scroll::-webkit-scrollbar-thumb:hover {
background: ${horizontalScrollbarThumbHoverBg};
border: 1px solid ${horizontalScrollbarThumbBorderColor};
background-clip: border-box;
box-shadow: ${horizontalScrollbarThumbShadow};
}
.${gridId} .data-grid-external-horizontal-scroll-inner {
height: 1px;
}