mirror of
https://github.com/Azure/cosmos-explorer.git
synced 2026-01-06 03:00:23 +00:00
Add data-testid to components for testing
This commit is contained in:
@@ -14,7 +14,7 @@ export default defineConfig({
|
|||||||
trace: "off",
|
trace: "off",
|
||||||
video: "off",
|
video: "off",
|
||||||
screenshot: "on",
|
screenshot: "on",
|
||||||
testIdAttribute: "data-test",
|
testIdAttribute: "data-testid",
|
||||||
contextOptions: {
|
contextOptions: {
|
||||||
ignoreHTTPSErrors: true,
|
ignoreHTTPSErrors: true,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -32,7 +32,7 @@ describe("CopyJobContext", () => {
|
|||||||
it("should render children correctly", () => {
|
it("should render children correctly", () => {
|
||||||
render(
|
render(
|
||||||
<CopyJobContextProvider explorer={mockExplorer}>
|
<CopyJobContextProvider explorer={mockExplorer}>
|
||||||
<div data-test="test-child">Test Child</div>
|
<div data-testid="test-child">Test Child</div>
|
||||||
</CopyJobContextProvider>,
|
</CopyJobContextProvider>,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -552,7 +552,7 @@ describe("CopyJobContext", () => {
|
|||||||
const TestComponent2 = (): JSX.Element => {
|
const TestComponent2 = (): JSX.Element => {
|
||||||
const context = useCopyJobContext();
|
const context = useCopyJobContext();
|
||||||
contextValue2 = context;
|
contextValue2 = context;
|
||||||
return <div data-test="component-2">Component 2</div>;
|
return <div data-testid="component-2">Component 2</div>;
|
||||||
};
|
};
|
||||||
|
|
||||||
render(
|
render(
|
||||||
|
|||||||
@@ -20,7 +20,7 @@ jest.mock("../../../CopyJobUtils", () => ({
|
|||||||
|
|
||||||
jest.mock("../Components/InfoTooltip", () => {
|
jest.mock("../Components/InfoTooltip", () => {
|
||||||
const MockInfoTooltip = ({ content }: { content: React.ReactNode }) => {
|
const MockInfoTooltip = ({ content }: { content: React.ReactNode }) => {
|
||||||
return <div data-test="info-tooltip">{content}</div>;
|
return <div data-testid="info-tooltip">{content}</div>;
|
||||||
};
|
};
|
||||||
MockInfoTooltip.displayName = "MockInfoTooltip";
|
MockInfoTooltip.displayName = "MockInfoTooltip";
|
||||||
return MockInfoTooltip;
|
return MockInfoTooltip;
|
||||||
@@ -46,13 +46,13 @@ jest.mock("../Components/PopoverContainer", () => {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div data-test="popover-message" data-loading={isLoading}>
|
<div data-testid="popover-message" data-loading={isLoading}>
|
||||||
<div data-test="popover-title">{title}</div>
|
<div data-testid="popover-title">{title}</div>
|
||||||
<div data-test="popover-content">{children}</div>
|
<div data-testid="popover-content">{children}</div>
|
||||||
<button onClick={onCancel} data-test="popover-cancel">
|
<button onClick={onCancel} data-testid="popover-cancel">
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
<button onClick={onPrimary} data-test="popover-primary">
|
<button onClick={onPrimary} data-testid="popover-primary">
|
||||||
Primary
|
Primary
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -26,7 +26,7 @@ jest.mock("./hooks/usePermissionsSection", () => ({
|
|||||||
jest.mock("../../../../../Common/ShimmerTree/ShimmerTree", () => {
|
jest.mock("../../../../../Common/ShimmerTree/ShimmerTree", () => {
|
||||||
const MockShimmerTree = (props: any) => {
|
const MockShimmerTree = (props: any) => {
|
||||||
return (
|
return (
|
||||||
<div data-test="shimmer-tree" {...props}>
|
<div data-testid="shimmer-tree" {...props}>
|
||||||
Loading...
|
Loading...
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
@@ -37,7 +37,7 @@ jest.mock("../../../../../Common/ShimmerTree/ShimmerTree", () => {
|
|||||||
|
|
||||||
jest.mock("./AddManagedIdentity", () => {
|
jest.mock("./AddManagedIdentity", () => {
|
||||||
const MockAddManagedIdentity = () => {
|
const MockAddManagedIdentity = () => {
|
||||||
return <div data-test="add-managed-identity">Add Managed Identity Component</div>;
|
return <div data-testid="add-managed-identity">Add Managed Identity Component</div>;
|
||||||
};
|
};
|
||||||
MockAddManagedIdentity.displayName = "MockAddManagedIdentity";
|
MockAddManagedIdentity.displayName = "MockAddManagedIdentity";
|
||||||
return MockAddManagedIdentity;
|
return MockAddManagedIdentity;
|
||||||
@@ -45,7 +45,7 @@ jest.mock("./AddManagedIdentity", () => {
|
|||||||
|
|
||||||
jest.mock("./AddReadPermissionToDefaultIdentity", () => {
|
jest.mock("./AddReadPermissionToDefaultIdentity", () => {
|
||||||
const MockAddReadPermissionToDefaultIdentity = () => {
|
const MockAddReadPermissionToDefaultIdentity = () => {
|
||||||
return <div data-test="add-read-permission">Add Read Permission Component</div>;
|
return <div data-testid="add-read-permission">Add Read Permission Component</div>;
|
||||||
};
|
};
|
||||||
MockAddReadPermissionToDefaultIdentity.displayName = "MockAddReadPermissionToDefaultIdentity";
|
MockAddReadPermissionToDefaultIdentity.displayName = "MockAddReadPermissionToDefaultIdentity";
|
||||||
return MockAddReadPermissionToDefaultIdentity;
|
return MockAddReadPermissionToDefaultIdentity;
|
||||||
@@ -53,7 +53,7 @@ jest.mock("./AddReadPermissionToDefaultIdentity", () => {
|
|||||||
|
|
||||||
jest.mock("./DefaultManagedIdentity", () => {
|
jest.mock("./DefaultManagedIdentity", () => {
|
||||||
const MockDefaultManagedIdentity = () => {
|
const MockDefaultManagedIdentity = () => {
|
||||||
return <div data-test="default-managed-identity">Default Managed Identity Component</div>;
|
return <div data-testid="default-managed-identity">Default Managed Identity Component</div>;
|
||||||
};
|
};
|
||||||
MockDefaultManagedIdentity.displayName = "MockDefaultManagedIdentity";
|
MockDefaultManagedIdentity.displayName = "MockDefaultManagedIdentity";
|
||||||
return MockDefaultManagedIdentity;
|
return MockDefaultManagedIdentity;
|
||||||
@@ -61,7 +61,8 @@ jest.mock("./DefaultManagedIdentity", () => {
|
|||||||
|
|
||||||
jest.mock("./OnlineCopyEnabled", () => {
|
jest.mock("./OnlineCopyEnabled", () => {
|
||||||
const MockOnlineCopyEnabled = () => {
|
const MockOnlineCopyEnabled = () => {
|
||||||
return <div data-test="online-copy-enabled">Online Copy Enabled Component</div>;
|
return <div data-testid="online-copy-enabled">Online Copy Enabled Component</div>;
|
||||||
|
return <div data-testid="online-copy-enabled">Online Copy Enabled Component</div>;
|
||||||
};
|
};
|
||||||
MockOnlineCopyEnabled.displayName = "MockOnlineCopyEnabled";
|
MockOnlineCopyEnabled.displayName = "MockOnlineCopyEnabled";
|
||||||
return MockOnlineCopyEnabled;
|
return MockOnlineCopyEnabled;
|
||||||
@@ -69,7 +70,8 @@ jest.mock("./OnlineCopyEnabled", () => {
|
|||||||
|
|
||||||
jest.mock("./PointInTimeRestore", () => {
|
jest.mock("./PointInTimeRestore", () => {
|
||||||
const MockPointInTimeRestore = () => {
|
const MockPointInTimeRestore = () => {
|
||||||
return <div data-test="point-in-time-restore">Point In Time Restore Component</div>;
|
return <div data-testid="point-in-time-restore">Point In Time Restore Component</div>;
|
||||||
|
return <div data-testid="point-in-time-restore">Point In Time Restore Component</div>;
|
||||||
};
|
};
|
||||||
MockPointInTimeRestore.displayName = "MockPointInTimeRestore";
|
MockPointInTimeRestore.displayName = "MockPointInTimeRestore";
|
||||||
return MockPointInTimeRestore;
|
return MockPointInTimeRestore;
|
||||||
@@ -196,14 +198,16 @@ describe("AssignPermissions Component", () => {
|
|||||||
{
|
{
|
||||||
id: "addManagedIdentity",
|
id: "addManagedIdentity",
|
||||||
title: "Add Managed Identity",
|
title: "Add Managed Identity",
|
||||||
Component: () => <div data-test="add-managed-identity">Add Managed Identity Component</div>,
|
Component: () => <div data-testid="add-managed-identity">Add Managed Identity Component</div>,
|
||||||
|
Component: () => <div data-testid="add-managed-identity">Add Managed Identity Component</div>,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
completed: true,
|
completed: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "readPermissionAssigned",
|
id: "readPermissionAssigned",
|
||||||
title: "Read Permission Assigned",
|
title: "Read Permission Assigned",
|
||||||
Component: () => <div data-test="add-read-permission">Add Read Permission Component</div>,
|
Component: () => <div data-testid="add-read-permission">Add Read Permission Component</div>,
|
||||||
|
Component: () => <div data-testid="add-read-permission">Add Read Permission Component</div>,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
completed: false,
|
completed: false,
|
||||||
},
|
},
|
||||||
@@ -228,14 +232,18 @@ describe("AssignPermissions Component", () => {
|
|||||||
{
|
{
|
||||||
id: "pointInTimeRestore",
|
id: "pointInTimeRestore",
|
||||||
title: "Point In Time Restore",
|
title: "Point In Time Restore",
|
||||||
Component: () => <div data-test="point-in-time-restore">Point In Time Restore Component</div>,
|
Component: () => <div data-testid="point-in-time-restore">Point In Time Restore Component</div>,
|
||||||
|
Component: () => <div data-testid="point-in-time-restore">Point In Time Restore Component</div>,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
completed: true,
|
completed: true,
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
id: "onlineCopyEnabled",
|
id: "onlineCopyEnabled",
|
||||||
title: "Online Copy Enabled",
|
title: "Online Copy Enabled",
|
||||||
Component: () => <div data-test="online-copy-enabled">Online Copy Enabled Component</div>,
|
Component: () => <div data-testid="online-copy-enabled">Online Copy Enabled Component</div>,
|
||||||
|
Component: () => <div data-testid="online-copy-enabled">Online Copy Enabled Component</div>,
|
||||||
|
Component: () => <div data-testid="add-managed-identity">Add Managed Identity Component</div>,
|
||||||
|
Component: () => <div data-testid="online-copy-enabled">Online Copy Enabled Component</div>,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
completed: false,
|
completed: false,
|
||||||
},
|
},
|
||||||
@@ -262,7 +270,7 @@ describe("AssignPermissions Component", () => {
|
|||||||
{
|
{
|
||||||
id: "addManagedIdentity",
|
id: "addManagedIdentity",
|
||||||
title: "Add Managed Identity",
|
title: "Add Managed Identity",
|
||||||
Component: () => <div data-test="add-managed-identity">Add Managed Identity Component</div>,
|
Component: () => <div data-testid="add-managed-identity">Add Managed Identity Component</div>,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
completed: true,
|
completed: true,
|
||||||
},
|
},
|
||||||
@@ -276,7 +284,7 @@ describe("AssignPermissions Component", () => {
|
|||||||
{
|
{
|
||||||
id: "onlineCopyEnabled",
|
id: "onlineCopyEnabled",
|
||||||
title: "Online Copy Enabled",
|
title: "Online Copy Enabled",
|
||||||
Component: () => <div data-test="online-copy-enabled">Online Copy Enabled Component</div>,
|
Component: () => <div data-testid="online-copy-enabled">Online Copy Enabled Component</div>,
|
||||||
disabled: false,
|
disabled: false,
|
||||||
completed: false,
|
completed: false,
|
||||||
},
|
},
|
||||||
|
|||||||
@@ -15,7 +15,7 @@ jest.mock("../../../../../Utils/arm/identityUtils", () => ({
|
|||||||
|
|
||||||
jest.mock("../Components/InfoTooltip", () => {
|
jest.mock("../Components/InfoTooltip", () => {
|
||||||
const MockInfoTooltip = ({ content }: { content: React.ReactNode }) => {
|
const MockInfoTooltip = ({ content }: { content: React.ReactNode }) => {
|
||||||
return <div data-test="info-tooltip">{content}</div>;
|
return <div data-testid="info-tooltip">{content}</div>;
|
||||||
};
|
};
|
||||||
MockInfoTooltip.displayName = "MockInfoTooltip";
|
MockInfoTooltip.displayName = "MockInfoTooltip";
|
||||||
return MockInfoTooltip;
|
return MockInfoTooltip;
|
||||||
@@ -41,14 +41,14 @@ jest.mock("../Components/PopoverContainer", () => {
|
|||||||
return null;
|
return null;
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div data-test="popover-message">
|
<div data-testid="popover-message">
|
||||||
<div data-test="popover-title">{title}</div>
|
<div data-testid="popover-title">{title}</div>
|
||||||
<div data-test="popover-content">{children}</div>
|
<div data-testid="popover-content">{children}</div>
|
||||||
<div data-test="popover-loading">{isLoading ? "Loading" : "Not Loading"}</div>
|
<div data-testid="popover-loading">{isLoading ? "Loading" : "Not Loading"}</div>
|
||||||
<button data-test="popover-cancel" onClick={onCancel}>
|
<button data-testid="popover-cancel" onClick={onCancel}>
|
||||||
Cancel
|
Cancel
|
||||||
</button>
|
</button>
|
||||||
<button data-test="popover-primary" onClick={onPrimary}>
|
<button data-testid="popover-primary" onClick={onPrimary}>
|
||||||
Primary
|
Primary
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -25,7 +25,8 @@ jest.mock("../../../../../Common/Logger", () => ({
|
|||||||
|
|
||||||
jest.mock("../../../../../Common/LoadingOverlay", () => {
|
jest.mock("../../../../../Common/LoadingOverlay", () => {
|
||||||
const MockLoadingOverlay = ({ isLoading, label }: { isLoading: boolean; label: string }) => {
|
const MockLoadingOverlay = ({ isLoading, label }: { isLoading: boolean; label: string }) => {
|
||||||
return isLoading ? <div data-test="loading-overlay">{label}</div> : null;
|
return isLoading ? <div data-testid="loading-overlay">{label}</div> : null;
|
||||||
|
return isLoading ? <div data-testid="loading-overlay">{label}</div> : null;
|
||||||
};
|
};
|
||||||
MockLoadingOverlay.displayName = "MockLoadingOverlay";
|
MockLoadingOverlay.displayName = "MockLoadingOverlay";
|
||||||
return MockLoadingOverlay;
|
return MockLoadingOverlay;
|
||||||
|
|||||||
@@ -52,11 +52,11 @@ const TestComponent: React.FC<TestComponentProps> = ({ updateIdentityFn, onError
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<button onClick={handleClick} disabled={loading} data-test="add-identity-button">
|
<button onClick={handleClick} disabled={loading} data-testid="add-identity-button">
|
||||||
{loading ? "Loading..." : "Add System Identity"}
|
{loading ? "Loading..." : "Add System Identity"}
|
||||||
</button>
|
</button>
|
||||||
<div data-test="loading-status">{loading ? "true" : "false"}</div>
|
<div data-testid="loading-status">{loading ? "true" : "false"}</div>
|
||||||
{contextError && <div data-test="error-message">{contextError}</div>}
|
{contextError && <div data-testid="error-message">{contextError}</div>}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
};
|
};
|
||||||
|
|||||||
@@ -34,7 +34,7 @@ jest.mock("../../../../CopyJobUtils", () => ({
|
|||||||
|
|
||||||
jest.mock("../AddManagedIdentity", () => {
|
jest.mock("../AddManagedIdentity", () => {
|
||||||
const MockAddManagedIdentity = () => {
|
const MockAddManagedIdentity = () => {
|
||||||
return <div data-test="add-managed-identity">AddManagedIdentity</div>;
|
return <div data-testid="add-managed-identity">AddManagedIdentity</div>;
|
||||||
};
|
};
|
||||||
MockAddManagedIdentity.displayName = "MockAddManagedIdentity";
|
MockAddManagedIdentity.displayName = "MockAddManagedIdentity";
|
||||||
return MockAddManagedIdentity;
|
return MockAddManagedIdentity;
|
||||||
@@ -42,7 +42,7 @@ jest.mock("../AddManagedIdentity", () => {
|
|||||||
|
|
||||||
jest.mock("../AddReadPermissionToDefaultIdentity", () => {
|
jest.mock("../AddReadPermissionToDefaultIdentity", () => {
|
||||||
const MockAddReadPermissionToDefaultIdentity = () => {
|
const MockAddReadPermissionToDefaultIdentity = () => {
|
||||||
return <div data-test="add-read-permission">AddReadPermissionToDefaultIdentity</div>;
|
return <div data-testid="add-read-permission">AddReadPermissionToDefaultIdentity</div>;
|
||||||
};
|
};
|
||||||
MockAddReadPermissionToDefaultIdentity.displayName = "MockAddReadPermissionToDefaultIdentity";
|
MockAddReadPermissionToDefaultIdentity.displayName = "MockAddReadPermissionToDefaultIdentity";
|
||||||
return MockAddReadPermissionToDefaultIdentity;
|
return MockAddReadPermissionToDefaultIdentity;
|
||||||
@@ -50,7 +50,7 @@ jest.mock("../AddReadPermissionToDefaultIdentity", () => {
|
|||||||
|
|
||||||
jest.mock("../DefaultManagedIdentity", () => {
|
jest.mock("../DefaultManagedIdentity", () => {
|
||||||
const MockDefaultManagedIdentity = () => {
|
const MockDefaultManagedIdentity = () => {
|
||||||
return <div data-test="default-managed-identity">DefaultManagedIdentity</div>;
|
return <div data-testid="default-managed-identity">DefaultManagedIdentity</div>;
|
||||||
};
|
};
|
||||||
MockDefaultManagedIdentity.displayName = "MockDefaultManagedIdentity";
|
MockDefaultManagedIdentity.displayName = "MockDefaultManagedIdentity";
|
||||||
return MockDefaultManagedIdentity;
|
return MockDefaultManagedIdentity;
|
||||||
@@ -58,7 +58,7 @@ jest.mock("../DefaultManagedIdentity", () => {
|
|||||||
|
|
||||||
jest.mock("../OnlineCopyEnabled", () => {
|
jest.mock("../OnlineCopyEnabled", () => {
|
||||||
const MockOnlineCopyEnabled = () => {
|
const MockOnlineCopyEnabled = () => {
|
||||||
return <div data-test="online-copy-enabled">OnlineCopyEnabled</div>;
|
return <div data-testid="online-copy-enabled">OnlineCopyEnabled</div>;
|
||||||
};
|
};
|
||||||
MockOnlineCopyEnabled.displayName = "MockOnlineCopyEnabled";
|
MockOnlineCopyEnabled.displayName = "MockOnlineCopyEnabled";
|
||||||
return MockOnlineCopyEnabled;
|
return MockOnlineCopyEnabled;
|
||||||
@@ -66,7 +66,7 @@ jest.mock("../OnlineCopyEnabled", () => {
|
|||||||
|
|
||||||
jest.mock("../PointInTimeRestore", () => {
|
jest.mock("../PointInTimeRestore", () => {
|
||||||
const MockPointInTimeRestore = () => {
|
const MockPointInTimeRestore = () => {
|
||||||
return <div data-test="point-in-time-restore">PointInTimeRestore</div>;
|
return <div data-testid="point-in-time-restore">PointInTimeRestore</div>;
|
||||||
};
|
};
|
||||||
MockPointInTimeRestore.displayName = "MockPointInTimeRestore";
|
MockPointInTimeRestore.displayName = "MockPointInTimeRestore";
|
||||||
return MockPointInTimeRestore;
|
return MockPointInTimeRestore;
|
||||||
@@ -76,12 +76,10 @@ const mockedRbacUtils = RbacUtils as jest.Mocked<typeof RbacUtils>;
|
|||||||
const mockedCopyJobPrerequisitesCache = CopyJobPrerequisitesCacheModule as jest.Mocked<
|
const mockedCopyJobPrerequisitesCache = CopyJobPrerequisitesCacheModule as jest.Mocked<
|
||||||
typeof CopyJobPrerequisitesCacheModule
|
typeof CopyJobPrerequisitesCacheModule
|
||||||
>;
|
>;
|
||||||
|
|
||||||
interface TestWrapperProps {
|
interface TestWrapperProps {
|
||||||
state: CopyJobContextState;
|
state: CopyJobContextState;
|
||||||
onResult?: (result: PermissionGroupConfig[]) => void;
|
onResult?: (result: PermissionGroupConfig[]) => void;
|
||||||
}
|
}
|
||||||
|
|
||||||
const TestWrapper: React.FC<TestWrapperProps> = ({ state, onResult }) => {
|
const TestWrapper: React.FC<TestWrapperProps> = ({ state, onResult }) => {
|
||||||
const result = usePermissionSections(state);
|
const result = usePermissionSections(state);
|
||||||
|
|
||||||
@@ -92,18 +90,18 @@ const TestWrapper: React.FC<TestWrapperProps> = ({ state, onResult }) => {
|
|||||||
}, [result, onResult]);
|
}, [result, onResult]);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div data-test="test-wrapper">
|
<div data-testid="test-wrapper">
|
||||||
<div data-test="groups-count">{result.length}</div>
|
<div data-testid="groups-count">{result.length}</div>
|
||||||
{result.map((group) => (
|
{result.map((group) => (
|
||||||
<div key={group.id} data-test={`group-${group.id}`}>
|
<div key={group.id} data-testid={`group-${group.id}`}>
|
||||||
<h3>{group.title}</h3>
|
<h3>{group.title}</h3>
|
||||||
<p>{group.description}</p>
|
<p>{group.description}</p>
|
||||||
{group.sections.map((section) => (
|
{group.sections.map((section) => (
|
||||||
<div key={section.id} data-test={`section-${section.id}`}>
|
<div key={section.id} data-testid={`section-${section.id}`}>
|
||||||
<span data-test={`section-${section.id}-completed`}>
|
<span data-testid={`section-${section.id}-completed`}>
|
||||||
{section.completed?.toString() || "undefined"}
|
{section.completed?.toString() || "undefined"}
|
||||||
</span>
|
</span>
|
||||||
<span data-test={`section-${section.id}-disabled`}>{section.disabled.toString()}</span>
|
<span data-testid={`section-${section.id}-disabled`}>{section.disabled.toString()}</span>
|
||||||
</div>
|
</div>
|
||||||
))}
|
))}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -7,14 +7,14 @@ const TestToggleComponent: React.FC<{ initialState?: boolean }> = ({ initialStat
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<span data-test="toggle-state">{state ? "true" : "false"}</span>
|
<span data-testid="toggle-state">{state ? "true" : "false"}</span>
|
||||||
<button data-test="toggle-button" onClick={() => onToggle(null, !state)}>
|
<button data-testid="toggle-button" onClick={() => onToggle(null, !state)}>
|
||||||
Toggle
|
Toggle
|
||||||
</button>
|
</button>
|
||||||
<button data-test="set-true-button" onClick={() => onToggle(null, true)}>
|
<button data-testid="set-true-button" onClick={() => onToggle(null, true)}>
|
||||||
Set True
|
Set True
|
||||||
</button>
|
</button>
|
||||||
<button data-test="set-false-button" onClick={() => onToggle(null, false)}>
|
<button data-testid="set-false-button" onClick={() => onToggle(null, false)}>
|
||||||
Set False
|
Set False
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
@@ -57,8 +57,8 @@ describe("useToggle hook", () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<div>
|
<div>
|
||||||
<span data-test="toggle-state">{state ? "true" : "false"}</span>
|
<span data-testid="toggle-state">{state ? "true" : "false"}</span>
|
||||||
<button data-test="undefined-button" onClick={() => onToggle(null, undefined)}>
|
<button data-testid="undefined-button" onClick={() => onToggle(null, undefined)}>
|
||||||
Set Undefined
|
Set Undefined
|
||||||
</button>
|
</button>
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -24,8 +24,8 @@ describe("FieldRow", () => {
|
|||||||
it("renders children content correctly", () => {
|
it("renders children content correctly", () => {
|
||||||
render(
|
render(
|
||||||
<FieldRow label={testLabel}>
|
<FieldRow label={testLabel}>
|
||||||
<input type="text" data-test="test-input" />
|
<input type="text" data-testid="test-input" />
|
||||||
<button data-test="test-button">Click me</button>
|
<button data-testid="test-button">Click me</button>
|
||||||
</FieldRow>,
|
</FieldRow>,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -123,7 +123,7 @@ describe("FieldRow", () => {
|
|||||||
it("positions children in grow container with center alignment", () => {
|
it("positions children in grow container with center alignment", () => {
|
||||||
const { container } = render(
|
const { container } = render(
|
||||||
<FieldRow label={testLabel}>
|
<FieldRow label={testLabel}>
|
||||||
<div data-test="child-content">{mockChildContent}</div>
|
<div data-testid="child-content">{mockChildContent}</div>
|
||||||
</FieldRow>,
|
</FieldRow>,
|
||||||
);
|
);
|
||||||
|
|
||||||
@@ -135,7 +135,7 @@ describe("FieldRow", () => {
|
|||||||
it("maintains layout when no label is provided", () => {
|
it("maintains layout when no label is provided", () => {
|
||||||
const { container } = render(
|
const { container } = render(
|
||||||
<FieldRow>
|
<FieldRow>
|
||||||
<div data-test="child-content">{mockChildContent}</div>
|
<div data-testid="child-content">{mockChildContent}</div>
|
||||||
</FieldRow>,
|
</FieldRow>,
|
||||||
);
|
);
|
||||||
|
|
||||||
|
|||||||
@@ -214,9 +214,9 @@ export const Dialog: FC = () => {
|
|||||||
{contentHtml}
|
{contentHtml}
|
||||||
{progressIndicatorProps && <ProgressIndicator {...progressIndicatorProps} />}
|
{progressIndicatorProps && <ProgressIndicator {...progressIndicatorProps} />}
|
||||||
<DialogFooter>
|
<DialogFooter>
|
||||||
<PrimaryButton {...primaryButtonProps} data-test={`DialogButton:${primaryButtonText}`} />
|
<PrimaryButton {...primaryButtonProps} data-testid={`DialogButton:${primaryButtonText}`} />
|
||||||
{secondaryButtonProps && (
|
{secondaryButtonProps && (
|
||||||
<DefaultButton {...secondaryButtonProps} data-test={`DialogButton:${secondaryButtonText}`} />
|
<DefaultButton {...secondaryButtonProps} data-testid={`DialogButton:${secondaryButtonText}`} />
|
||||||
)}
|
)}
|
||||||
</DialogFooter>
|
</DialogFooter>
|
||||||
</FluentDialog>
|
</FluentDialog>
|
||||||
|
|||||||
@@ -137,7 +137,7 @@ export class EditorReact extends React.Component<EditorReactProps, EditorReactSt
|
|||||||
<Spinner size={SpinnerSize.large} className={this.props.spinnerClassName || "spinner"} />
|
<Spinner size={SpinnerSize.large} className={this.props.spinnerClassName || "spinner"} />
|
||||||
)}
|
)}
|
||||||
<div
|
<div
|
||||||
data-test="EditorReact/Host/Unloaded"
|
data-testid="EditorReact/Host/Unloaded"
|
||||||
className={this.props.className || "jsonEditor"}
|
className={this.props.className || "jsonEditor"}
|
||||||
style={this.props.monacoContainerStyles}
|
style={this.props.monacoContainerStyles}
|
||||||
ref={(elt: HTMLElement) => this.setRef(elt)}
|
ref={(elt: HTMLElement) => this.setRef(elt)}
|
||||||
@@ -148,7 +148,7 @@ export class EditorReact extends React.Component<EditorReactProps, EditorReactSt
|
|||||||
|
|
||||||
protected configureEditor(editor: monaco.editor.IStandaloneCodeEditor) {
|
protected configureEditor(editor: monaco.editor.IStandaloneCodeEditor) {
|
||||||
this.editor = editor;
|
this.editor = editor;
|
||||||
this.rootNode.dataset["test"] = "EditorReact/Host/Loaded";
|
this.rootNode.dataset["testid"] = "EditorReact/Host/Loaded";
|
||||||
|
|
||||||
// In development, we want to be able to access the editor instance from the console
|
// In development, we want to be able to access the editor instance from the console
|
||||||
if (process.env.NODE_ENV === "development") {
|
if (process.env.NODE_ENV === "development") {
|
||||||
|
|||||||
@@ -193,7 +193,7 @@ export const InputDataList: FC<InputDataListProps> = ({
|
|||||||
<>
|
<>
|
||||||
<Input
|
<Input
|
||||||
id="filterInput"
|
id="filterInput"
|
||||||
data-test={"DocumentsTab/FilterInput"}
|
data-testid={"DocumentsTab/FilterInput"}
|
||||||
ref={inputRef}
|
ref={inputRef}
|
||||||
type="text"
|
type="text"
|
||||||
size="small"
|
size="small"
|
||||||
|
|||||||
@@ -209,7 +209,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
|
|||||||
checked={isAutoscaleSelected}
|
checked={isAutoscaleSelected}
|
||||||
type="radio"
|
type="radio"
|
||||||
role="radio"
|
role="radio"
|
||||||
data-test="ThroughputInput/ThroughputMode:Autoscale"
|
data-testid="ThroughputInput/ThroughputMode:Autoscale"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
onChange={(e) => handleOnChangeMode(e, "Autoscale")}
|
onChange={(e) => handleOnChangeMode(e, "Autoscale")}
|
||||||
/>
|
/>
|
||||||
@@ -225,7 +225,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
|
|||||||
type="radio"
|
type="radio"
|
||||||
aria-required={true}
|
aria-required={true}
|
||||||
role="radio"
|
role="radio"
|
||||||
data-test="ThroughputInput/ThroughputMode:Manual"
|
data-testid="ThroughputInput/ThroughputMode:Manual"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
onChange={(e) => handleOnChangeMode(e, "Manual")}
|
onChange={(e) => handleOnChangeMode(e, "Manual")}
|
||||||
/>
|
/>
|
||||||
@@ -288,7 +288,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
|
|||||||
</Stack>
|
</Stack>
|
||||||
<TextField
|
<TextField
|
||||||
id="autoscaleRUValueField"
|
id="autoscaleRUValueField"
|
||||||
data-test="ThroughputInput/AutoscaleRUInput"
|
data-testid="ThroughputInput/AutoscaleRUInput"
|
||||||
type="number"
|
type="number"
|
||||||
styles={{
|
styles={{
|
||||||
fieldGroup: { width: 100, height: 27, flexShrink: 0 },
|
fieldGroup: { width: 100, height: 27, flexShrink: 0 },
|
||||||
@@ -354,7 +354,7 @@ export const ThroughputInput: FunctionComponent<ThroughputInputProps> = ({
|
|||||||
}
|
}
|
||||||
>
|
>
|
||||||
<TextField
|
<TextField
|
||||||
data-test="ThroughputInput/ManualThroughputInput"
|
data-testid="ThroughputInput/ManualThroughputInput"
|
||||||
type="number"
|
type="number"
|
||||||
styles={{
|
styles={{
|
||||||
fieldGroup: { width: 300, height: 27 },
|
fieldGroup: { width: 300, height: 27 },
|
||||||
|
|||||||
@@ -682,6 +682,7 @@ exports[`ThroughputInput Pane should render Default properly 1`] = `
|
|||||||
aria-required={true}
|
aria-required={true}
|
||||||
checked={true}
|
checked={true}
|
||||||
className="throughputInputRadioBtn"
|
className="throughputInputRadioBtn"
|
||||||
|
data-testid="ThroughputInput/ThroughputMode:Autoscale"
|
||||||
id="Autoscale-input"
|
id="Autoscale-input"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
role="radio"
|
role="radio"
|
||||||
@@ -699,6 +700,7 @@ exports[`ThroughputInput Pane should render Default properly 1`] = `
|
|||||||
aria-required={true}
|
aria-required={true}
|
||||||
checked={false}
|
checked={false}
|
||||||
className="throughputInputRadioBtn"
|
className="throughputInputRadioBtn"
|
||||||
|
data-testid="ThroughputInput/ThroughputMode:Manual"
|
||||||
id="Manual-input"
|
id="Manual-input"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
role="radio"
|
role="radio"
|
||||||
@@ -2144,7 +2146,7 @@ exports[`ThroughputInput Pane should render Default properly 1`] = `
|
|||||||
</Stack>
|
</Stack>
|
||||||
<StyledTextFieldBase
|
<StyledTextFieldBase
|
||||||
ariaLabel="Container max RU/s"
|
ariaLabel="Container max RU/s"
|
||||||
data-test="autoscaleRUInput"
|
data-testid="ThroughputInput/AutoscaleRUInput"
|
||||||
errorMessage=""
|
errorMessage=""
|
||||||
id="autoscaleRUValueField"
|
id="autoscaleRUValueField"
|
||||||
key=".0:$.$.1"
|
key=".0:$.$.1"
|
||||||
@@ -2171,7 +2173,7 @@ exports[`ThroughputInput Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<TextFieldBase
|
<TextFieldBase
|
||||||
ariaLabel="Container max RU/s"
|
ariaLabel="Container max RU/s"
|
||||||
data-test="autoscaleRUInput"
|
data-testid="ThroughputInput/AutoscaleRUInput"
|
||||||
deferredValidationTime={200}
|
deferredValidationTime={200}
|
||||||
errorMessage=""
|
errorMessage=""
|
||||||
id="autoscaleRUValueField"
|
id="autoscaleRUValueField"
|
||||||
@@ -2472,7 +2474,7 @@ exports[`ThroughputInput Pane should render Default properly 1`] = `
|
|||||||
aria-invalid={false}
|
aria-invalid={false}
|
||||||
aria-label="Container max RU/s"
|
aria-label="Container max RU/s"
|
||||||
className="ms-TextField-field field-124"
|
className="ms-TextField-field field-124"
|
||||||
data-test="autoscaleRUInput"
|
data-testid="ThroughputInput/AutoscaleRUInput"
|
||||||
id="autoscaleRUValueField"
|
id="autoscaleRUValueField"
|
||||||
max="9007199254740991"
|
max="9007199254740991"
|
||||||
min={1000}
|
min={1000}
|
||||||
|
|||||||
@@ -139,7 +139,7 @@ export const TreeNodeComponent: React.FC<TreeNodeComponentProps> = ({
|
|||||||
|
|
||||||
const contextMenuItems = (node.contextMenu ?? []).map((menuItem) => (
|
const contextMenuItems = (node.contextMenu ?? []).map((menuItem) => (
|
||||||
<MenuItem
|
<MenuItem
|
||||||
data-test={`TreeNode/ContextMenuItem:${menuItem.label}`}
|
data-testid={`TreeNode/ContextMenuItem:${menuItem.label}`}
|
||||||
disabled={menuItem.isDisabled}
|
disabled={menuItem.isDisabled}
|
||||||
key={menuItem.label}
|
key={menuItem.label}
|
||||||
onClick={() => menuItem.onClick(contextMenuRef)}
|
onClick={() => menuItem.onClick(contextMenuRef)}
|
||||||
@@ -160,14 +160,14 @@ export const TreeNodeComponent: React.FC<TreeNodeComponentProps> = ({
|
|||||||
const expandIcon = isLoading ? (
|
const expandIcon = isLoading ? (
|
||||||
<Spinner size="extra-tiny" />
|
<Spinner size="extra-tiny" />
|
||||||
) : !isBranch ? undefined : openItems.includes(treeNodeId) ? (
|
) : !isBranch ? undefined : openItems.includes(treeNodeId) ? (
|
||||||
<ChevronDown20Regular data-test="TreeNode/CollapseIcon" />
|
<ChevronDown20Regular data-testid="TreeNode/CollapseIcon" />
|
||||||
) : (
|
) : (
|
||||||
<ChevronRight20Regular data-text="TreeNode/ExpandIcon" />
|
<ChevronRight20Regular data-testid="TreeNode/ExpandIcon" />
|
||||||
);
|
);
|
||||||
|
|
||||||
const treeItem = (
|
const treeItem = (
|
||||||
<TreeItem
|
<TreeItem
|
||||||
data-test={`TreeNodeContainer:${treeNodeId}`}
|
data-testid={`TreeNodeContainer:${treeNodeId}`}
|
||||||
value={treeNodeId}
|
value={treeNodeId}
|
||||||
itemType={isBranch ? "branch" : "leaf"}
|
itemType={isBranch ? "branch" : "leaf"}
|
||||||
onOpenChange={onOpenChange}
|
onOpenChange={onOpenChange}
|
||||||
@@ -179,7 +179,7 @@ export const TreeNodeComponent: React.FC<TreeNodeComponentProps> = ({
|
|||||||
shouldShowAsSelected && treeStyles.selectedItem,
|
shouldShowAsSelected && treeStyles.selectedItem,
|
||||||
node.className && treeStyles[node.className],
|
node.className && treeStyles[node.className],
|
||||||
)}
|
)}
|
||||||
data-test={`TreeNode:${treeNodeId}`}
|
data-testid={`TreeNode:${treeNodeId}`}
|
||||||
actions={
|
actions={
|
||||||
contextMenuItems.length > 0 && {
|
contextMenuItems.length > 0 && {
|
||||||
className: treeStyles.actionsButtonContainer,
|
className: treeStyles.actionsButtonContainer,
|
||||||
@@ -189,13 +189,13 @@ export const TreeNodeComponent: React.FC<TreeNodeComponentProps> = ({
|
|||||||
<Button
|
<Button
|
||||||
aria-label="More options"
|
aria-label="More options"
|
||||||
className={mergeClasses(treeStyles.actionsButton, shouldShowAsSelected && treeStyles.selectedItem)}
|
className={mergeClasses(treeStyles.actionsButton, shouldShowAsSelected && treeStyles.selectedItem)}
|
||||||
data-test="TreeNode/ContextMenuTrigger"
|
data-testid="TreeNode/ContextMenuTrigger"
|
||||||
appearance="subtle"
|
appearance="subtle"
|
||||||
ref={contextMenuRef}
|
ref={contextMenuRef}
|
||||||
icon={<MoreHorizontal20Regular />}
|
icon={<MoreHorizontal20Regular />}
|
||||||
/>
|
/>
|
||||||
</MenuTrigger>
|
</MenuTrigger>
|
||||||
<MenuPopover data-test={`TreeNode/ContextMenu:${treeNodeId}`}>
|
<MenuPopover data-testid={`TreeNode/ContextMenu:${treeNodeId}`}>
|
||||||
<MenuList>{contextMenuItems}</MenuList>
|
<MenuList>{contextMenuItems}</MenuList>
|
||||||
</MenuPopover>
|
</MenuPopover>
|
||||||
</Menu>
|
</Menu>
|
||||||
@@ -208,7 +208,7 @@ export const TreeNodeComponent: React.FC<TreeNodeComponentProps> = ({
|
|||||||
<span className={treeStyles.nodeLabel}>{node.label}</span>
|
<span className={treeStyles.nodeLabel}>{node.label}</span>
|
||||||
</TreeItemLayout>
|
</TreeItemLayout>
|
||||||
{!node.isLoading && node.children?.length > 0 && (
|
{!node.isLoading && node.children?.length > 0 && (
|
||||||
<Tree data-test={`Tree:${treeNodeId}`} className={treeStyles.tree}>
|
<Tree data-testid={`Tree:${treeNodeId}`} className={treeStyles.tree}>
|
||||||
{getSortedChildren(node).map((childNode: TreeNode) => (
|
{getSortedChildren(node).map((childNode: TreeNode) => (
|
||||||
<TreeNodeComponent
|
<TreeNodeComponent
|
||||||
openItems={openItems}
|
openItems={openItems}
|
||||||
|
|||||||
@@ -3,7 +3,7 @@
|
|||||||
exports[`TreeNodeComponent does not render children if the node is loading 1`] = `
|
exports[`TreeNodeComponent does not render children if the node is loading 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="branch"
|
itemType="branch"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -11,10 +11,10 @@ exports[`TreeNodeComponent does not render children if the node is loading 1`] =
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
iconBefore={
|
iconBefore={
|
||||||
@@ -112,7 +112,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="branch"
|
itemType="branch"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -122,7 +122,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level={0}
|
aria-level={0}
|
||||||
className="fui-TreeItem r15xhw3a"
|
className="fui-TreeItem r15xhw3a"
|
||||||
data-fui-tree-item-value="root"
|
data-fui-tree-item-value="root"
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
@@ -144,7 +144,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -164,7 +164,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
"layoutRef": {
|
"layoutRef": {
|
||||||
"current": <div
|
"current": <div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -173,7 +173,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -220,13 +220,13 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level="0"
|
aria-level="0"
|
||||||
class="fui-TreeItem r15xhw3a"
|
class="fui-TreeItem r15xhw3a"
|
||||||
data-fui-tree-item-value="root"
|
data-fui-tree-item-value="root"
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
role="treeitem"
|
role="treeitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -235,7 +235,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -270,7 +270,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
class="fui-Tree rnv2ez3 ___17a32do_7zrvj80 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
class="fui-Tree rnv2ez3 ___17a32do_7zrvj80 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
||||||
data-test="Tree:root"
|
data-testid="Tree:root"
|
||||||
role="tree"
|
role="tree"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
@@ -278,13 +278,13 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level="1"
|
aria-level="1"
|
||||||
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child1Label"
|
data-fui-tree-item-value="root/child1Label"
|
||||||
data-test="TreeNodeContainer:root/child1Label"
|
data-testid="TreeNodeContainer:root/child1Label"
|
||||||
role="treeitem"
|
role="treeitem"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child1Label"
|
data-testid="TreeNode:root/child1Label"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -293,7 +293,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -332,13 +332,13 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level="1"
|
aria-level="1"
|
||||||
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child2LoadingLabel"
|
data-fui-tree-item-value="root/child2LoadingLabel"
|
||||||
data-test="TreeNodeContainer:root/child2LoadingLabel"
|
data-testid="TreeNodeContainer:root/child2LoadingLabel"
|
||||||
role="treeitem"
|
role="treeitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child2LoadingLabel"
|
data-testid="TreeNode:root/child2LoadingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -347,7 +347,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -385,13 +385,13 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level="1"
|
aria-level="1"
|
||||||
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child3ExpandingLabel"
|
data-fui-tree-item-value="root/child3ExpandingLabel"
|
||||||
data-test="TreeNodeContainer:root/child3ExpandingLabel"
|
data-testid="TreeNodeContainer:root/child3ExpandingLabel"
|
||||||
role="treeitem"
|
role="treeitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child3ExpandingLabel"
|
data-testid="TreeNode:root/child3ExpandingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -441,10 +441,10 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
iconBefore={
|
iconBefore={
|
||||||
@@ -457,19 +457,19 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
className="fui-TreeItemLayout__expandIcon rh4pu5o"
|
className="fui-TreeItemLayout__expandIcon rh4pu5o"
|
||||||
>
|
>
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
className="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
className="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -506,7 +506,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
</TreeItemLayout>
|
</TreeItemLayout>
|
||||||
<Tree
|
<Tree
|
||||||
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
||||||
data-test="Tree:root"
|
data-testid="Tree:root"
|
||||||
>
|
>
|
||||||
<TreeProvider
|
<TreeProvider
|
||||||
value={
|
value={
|
||||||
@@ -574,7 +574,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="fui-Tree rnv2ez3 ___17a32do_7zrvj80 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
className="fui-Tree rnv2ez3 ___17a32do_7zrvj80 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
||||||
data-test="Tree:root"
|
data-testid="Tree:root"
|
||||||
role="tree"
|
role="tree"
|
||||||
>
|
>
|
||||||
<TreeNodeComponent
|
<TreeNodeComponent
|
||||||
@@ -610,7 +610,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root/child1Label"
|
data-testid="TreeNodeContainer:root/child1Label"
|
||||||
itemType="branch"
|
itemType="branch"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root/child1Label"
|
value="root/child1Label"
|
||||||
@@ -620,7 +620,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level={1}
|
aria-level={1}
|
||||||
className="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
className="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child1Label"
|
data-fui-tree-item-value="root/child1Label"
|
||||||
data-test="TreeNodeContainer:root/child1Label"
|
data-testid="TreeNodeContainer:root/child1Label"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
@@ -642,7 +642,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -662,7 +662,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
"layoutRef": {
|
"layoutRef": {
|
||||||
"current": <div
|
"current": <div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child1Label"
|
data-testid="TreeNode:root/child1Label"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -671,7 +671,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -718,13 +718,13 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level="1"
|
aria-level="1"
|
||||||
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child1Label"
|
data-fui-tree-item-value="root/child1Label"
|
||||||
data-test="TreeNodeContainer:root/child1Label"
|
data-testid="TreeNodeContainer:root/child1Label"
|
||||||
role="treeitem"
|
role="treeitem"
|
||||||
tabindex="0"
|
tabindex="0"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child1Label"
|
data-testid="TreeNode:root/child1Label"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -733,7 +733,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -775,10 +775,10 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child1Label"
|
data-testid="TreeNode:root/child1Label"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
iconBefore={
|
iconBefore={
|
||||||
@@ -791,19 +791,19 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child1Label"
|
data-testid="TreeNode:root/child1Label"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
className="fui-TreeItemLayout__expandIcon rh4pu5o"
|
className="fui-TreeItemLayout__expandIcon rh4pu5o"
|
||||||
>
|
>
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
className="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
className="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -840,7 +840,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
</TreeItemLayout>
|
</TreeItemLayout>
|
||||||
<Tree
|
<Tree
|
||||||
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
||||||
data-test="Tree:root/child1Label"
|
data-testid="Tree:root/child1Label"
|
||||||
>
|
>
|
||||||
<TreeProvider
|
<TreeProvider
|
||||||
value={
|
value={
|
||||||
@@ -881,7 +881,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root/child2LoadingLabel"
|
data-testid="TreeNodeContainer:root/child2LoadingLabel"
|
||||||
itemType="branch"
|
itemType="branch"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root/child2LoadingLabel"
|
value="root/child2LoadingLabel"
|
||||||
@@ -891,7 +891,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level={1}
|
aria-level={1}
|
||||||
className="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
className="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child2LoadingLabel"
|
data-fui-tree-item-value="root/child2LoadingLabel"
|
||||||
data-test="TreeNodeContainer:root/child2LoadingLabel"
|
data-testid="TreeNodeContainer:root/child2LoadingLabel"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
@@ -913,7 +913,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -933,7 +933,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
"layoutRef": {
|
"layoutRef": {
|
||||||
"current": <div
|
"current": <div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child2LoadingLabel"
|
data-testid="TreeNode:root/child2LoadingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -942,7 +942,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -989,13 +989,13 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level="1"
|
aria-level="1"
|
||||||
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child2LoadingLabel"
|
data-fui-tree-item-value="root/child2LoadingLabel"
|
||||||
data-test="TreeNodeContainer:root/child2LoadingLabel"
|
data-testid="TreeNodeContainer:root/child2LoadingLabel"
|
||||||
role="treeitem"
|
role="treeitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child2LoadingLabel"
|
data-testid="TreeNode:root/child2LoadingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -1004,7 +1004,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<svg
|
<svg
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
class="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -1046,10 +1046,10 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child2LoadingLabel"
|
data-testid="TreeNode:root/child2LoadingLabel"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
iconBefore={
|
iconBefore={
|
||||||
@@ -1062,19 +1062,19 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="fui-TreeItemLayout r1bx0xiv ___9uolwu0_9b0r4g0 fk6fouc fkhj508 figsok6 f1i3iumi fo100m9 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child2LoadingLabel"
|
data-testid="TreeNode:root/child2LoadingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
className="fui-TreeItemLayout__expandIcon rh4pu5o"
|
className="fui-TreeItemLayout__expandIcon rh4pu5o"
|
||||||
>
|
>
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
>
|
>
|
||||||
<svg
|
<svg
|
||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
className="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
className="___12fm75w_v8ls9a0 f1w7gpdv fez10in fg4l7m0"
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
fill="currentColor"
|
fill="currentColor"
|
||||||
height="20"
|
height="20"
|
||||||
viewBox="0 0 20 20"
|
viewBox="0 0 20 20"
|
||||||
@@ -1140,7 +1140,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root/child3ExpandingLabel"
|
data-testid="TreeNodeContainer:root/child3ExpandingLabel"
|
||||||
itemType="leaf"
|
itemType="leaf"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root/child3ExpandingLabel"
|
value="root/child3ExpandingLabel"
|
||||||
@@ -1149,7 +1149,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level={1}
|
aria-level={1}
|
||||||
className="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
className="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child3ExpandingLabel"
|
data-fui-tree-item-value="root/child3ExpandingLabel"
|
||||||
data-test="TreeNodeContainer:root/child3ExpandingLabel"
|
data-testid="TreeNodeContainer:root/child3ExpandingLabel"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
@@ -1188,7 +1188,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
"layoutRef": {
|
"layoutRef": {
|
||||||
"current": <div
|
"current": <div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child3ExpandingLabel"
|
data-testid="TreeNode:root/child3ExpandingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -1240,13 +1240,13 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
aria-level="1"
|
aria-level="1"
|
||||||
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
class="fui-TreeItem r15xhw3a ___jer8zr0_6no3ah0 f10bgyvd"
|
||||||
data-fui-tree-item-value="root/child3ExpandingLabel"
|
data-fui-tree-item-value="root/child3ExpandingLabel"
|
||||||
data-test="TreeNodeContainer:root/child3ExpandingLabel"
|
data-testid="TreeNodeContainer:root/child3ExpandingLabel"
|
||||||
role="treeitem"
|
role="treeitem"
|
||||||
tabindex="-1"
|
tabindex="-1"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
class="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
class="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child3ExpandingLabel"
|
data-testid="TreeNode:root/child3ExpandingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden="true"
|
aria-hidden="true"
|
||||||
@@ -1294,7 +1294,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child3ExpandingLabel"
|
data-testid="TreeNode:root/child3ExpandingLabel"
|
||||||
iconBefore={
|
iconBefore={
|
||||||
<img
|
<img
|
||||||
alt=""
|
alt=""
|
||||||
@@ -1305,7 +1305,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="fui-TreeItemLayout r1bx0xiv ___dxcrnh0_vz3p260 fk6fouc fkhj508 figsok6 f1i3iumi f1k1erfc fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root/child3ExpandingLabel"
|
data-testid="TreeNode:root/child3ExpandingLabel"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
aria-hidden={true}
|
aria-hidden={true}
|
||||||
@@ -1345,7 +1345,7 @@ exports[`TreeNodeComponent fully renders a tree 1`] = `
|
|||||||
exports[`TreeNodeComponent renders a loading spinner if the node is loading: loaded 1`] = `
|
exports[`TreeNodeComponent renders a loading spinner if the node is loading: loaded 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="leaf"
|
itemType="leaf"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1353,7 +1353,7 @@ exports[`TreeNodeComponent renders a loading spinner if the node is loading: loa
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
iconBefore={
|
iconBefore={
|
||||||
<img
|
<img
|
||||||
alt=""
|
alt=""
|
||||||
@@ -1374,7 +1374,7 @@ exports[`TreeNodeComponent renders a loading spinner if the node is loading: loa
|
|||||||
exports[`TreeNodeComponent renders a loading spinner if the node is loading: loading 1`] = `
|
exports[`TreeNodeComponent renders a loading spinner if the node is loading: loading 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="leaf"
|
itemType="leaf"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1382,7 +1382,7 @@ exports[`TreeNodeComponent renders a loading spinner if the node is loading: loa
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<Spinner
|
<Spinner
|
||||||
size="extra-tiny"
|
size="extra-tiny"
|
||||||
@@ -1408,7 +1408,7 @@ exports[`TreeNodeComponent renders a loading spinner if the node is loading: loa
|
|||||||
exports[`TreeNodeComponent renders a node as expandable if it has empty, but defined, children array 1`] = `
|
exports[`TreeNodeComponent renders a node as expandable if it has empty, but defined, children array 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="branch"
|
itemType="branch"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1416,10 +1416,10 @@ exports[`TreeNodeComponent renders a node as expandable if it has empty, but def
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
iconBefore={
|
iconBefore={
|
||||||
@@ -1450,7 +1450,7 @@ exports[`TreeNodeComponent renders a node with a menu 1`] = `
|
|||||||
>
|
>
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="leaf"
|
itemType="leaf"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1468,22 +1468,22 @@ exports[`TreeNodeComponent renders a node with a menu 1`] = `
|
|||||||
appearance="subtle"
|
appearance="subtle"
|
||||||
aria-label="More options"
|
aria-label="More options"
|
||||||
className="___1pg0eu5_pgl3ex0 f1twygmj"
|
className="___1pg0eu5_pgl3ex0 f1twygmj"
|
||||||
data-test="TreeNode/ContextMenuTrigger"
|
data-testid="TreeNode/ContextMenuTrigger"
|
||||||
icon={<MoreHorizontal20Regular />}
|
icon={<MoreHorizontal20Regular />}
|
||||||
/>
|
/>
|
||||||
</MenuTrigger>
|
</MenuTrigger>
|
||||||
<MenuPopover
|
<MenuPopover
|
||||||
data-test="TreeNode/ContextMenu:root"
|
data-testid="TreeNode/ContextMenu:root"
|
||||||
>
|
>
|
||||||
<MenuList>
|
<MenuList>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
data-test="TreeNode/ContextMenuItem:enabledItem"
|
data-testid="TreeNode/ContextMenuItem:enabledItem"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
enabledItem
|
enabledItem
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
data-test="TreeNode/ContextMenuItem:disabledItem"
|
data-testid="TreeNode/ContextMenuItem:disabledItem"
|
||||||
disabled={true}
|
disabled={true}
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
@@ -1496,7 +1496,7 @@ exports[`TreeNodeComponent renders a node with a menu 1`] = `
|
|||||||
}
|
}
|
||||||
}
|
}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
iconBefore={
|
iconBefore={
|
||||||
<img
|
<img
|
||||||
alt=""
|
alt=""
|
||||||
@@ -1516,14 +1516,14 @@ exports[`TreeNodeComponent renders a node with a menu 1`] = `
|
|||||||
<MenuPopover>
|
<MenuPopover>
|
||||||
<MenuList>
|
<MenuList>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
data-test="TreeNode/ContextMenuItem:enabledItem"
|
data-testid="TreeNode/ContextMenuItem:enabledItem"
|
||||||
key="enabledItem"
|
key="enabledItem"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
>
|
>
|
||||||
enabledItem
|
enabledItem
|
||||||
</MenuItem>
|
</MenuItem>
|
||||||
<MenuItem
|
<MenuItem
|
||||||
data-test="TreeNode/ContextMenuItem:disabledItem"
|
data-testid="TreeNode/ContextMenuItem:disabledItem"
|
||||||
disabled={true}
|
disabled={true}
|
||||||
key="disabledItem"
|
key="disabledItem"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
@@ -1538,7 +1538,7 @@ exports[`TreeNodeComponent renders a node with a menu 1`] = `
|
|||||||
exports[`TreeNodeComponent renders a single node 1`] = `
|
exports[`TreeNodeComponent renders a single node 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="leaf"
|
itemType="leaf"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1546,7 +1546,7 @@ exports[`TreeNodeComponent renders a single node 1`] = `
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
iconBefore={
|
iconBefore={
|
||||||
<img
|
<img
|
||||||
alt=""
|
alt=""
|
||||||
@@ -1567,7 +1567,7 @@ exports[`TreeNodeComponent renders a single node 1`] = `
|
|||||||
exports[`TreeNodeComponent renders an icon if the node has one 1`] = `
|
exports[`TreeNodeComponent renders an icon if the node has one 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="leaf"
|
itemType="leaf"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1575,7 +1575,7 @@ exports[`TreeNodeComponent renders an icon if the node has one 1`] = `
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
iconBefore={
|
iconBefore={
|
||||||
<img
|
<img
|
||||||
alt=""
|
alt=""
|
||||||
@@ -1596,7 +1596,7 @@ exports[`TreeNodeComponent renders an icon if the node has one 1`] = `
|
|||||||
exports[`TreeNodeComponent renders selected parent node as selected if no descendant nodes are selected 1`] = `
|
exports[`TreeNodeComponent renders selected parent node as selected if no descendant nodes are selected 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="branch"
|
itemType="branch"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1604,10 +1604,10 @@ exports[`TreeNodeComponent renders selected parent node as selected if no descen
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___rq9vxg0_1ykn2d2 fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1nfm20t f1do9gdl"
|
className="___rq9vxg0_1ykn2d2 fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1nfm20t f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
iconBefore={
|
iconBefore={
|
||||||
@@ -1626,7 +1626,7 @@ exports[`TreeNodeComponent renders selected parent node as selected if no descen
|
|||||||
</TreeItemLayout>
|
</TreeItemLayout>
|
||||||
<Tree
|
<Tree
|
||||||
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
||||||
data-test="Tree:root"
|
data-testid="Tree:root"
|
||||||
>
|
>
|
||||||
<TreeNodeComponent
|
<TreeNodeComponent
|
||||||
key="child1Label"
|
key="child1Label"
|
||||||
@@ -1679,7 +1679,7 @@ exports[`TreeNodeComponent renders selected parent node as selected if no descen
|
|||||||
exports[`TreeNodeComponent renders selected parent node as unselected if any descendant node is selected 1`] = `
|
exports[`TreeNodeComponent renders selected parent node as unselected if any descendant node is selected 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="branch"
|
itemType="branch"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1687,10 +1687,10 @@ exports[`TreeNodeComponent renders selected parent node as unselected if any des
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
className="___z7owk70_14ep1pe fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
expandIcon={
|
expandIcon={
|
||||||
<ChevronRight20Regular
|
<ChevronRight20Regular
|
||||||
data-text="TreeNode/ExpandIcon"
|
data-testid="TreeNode/ExpandIcon"
|
||||||
/>
|
/>
|
||||||
}
|
}
|
||||||
iconBefore={
|
iconBefore={
|
||||||
@@ -1709,7 +1709,7 @@ exports[`TreeNodeComponent renders selected parent node as unselected if any des
|
|||||||
</TreeItemLayout>
|
</TreeItemLayout>
|
||||||
<Tree
|
<Tree
|
||||||
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
className="___17a32do_0000000 f1acs6jw f11qra4b fepn2xe f1nbblvp f19d5ny4 fzz4f4n"
|
||||||
data-test="Tree:root"
|
data-testid="Tree:root"
|
||||||
>
|
>
|
||||||
<TreeNodeComponent
|
<TreeNodeComponent
|
||||||
key="child1Label"
|
key="child1Label"
|
||||||
@@ -1763,7 +1763,7 @@ exports[`TreeNodeComponent renders selected parent node as unselected if any des
|
|||||||
exports[`TreeNodeComponent renders single selected leaf node as selected 1`] = `
|
exports[`TreeNodeComponent renders single selected leaf node as selected 1`] = `
|
||||||
<TreeItem
|
<TreeItem
|
||||||
className=""
|
className=""
|
||||||
data-test="TreeNodeContainer:root"
|
data-testid="TreeNodeContainer:root"
|
||||||
itemType="leaf"
|
itemType="leaf"
|
||||||
onOpenChange={[Function]}
|
onOpenChange={[Function]}
|
||||||
value="root"
|
value="root"
|
||||||
@@ -1771,7 +1771,7 @@ exports[`TreeNodeComponent renders single selected leaf node as selected 1`] = `
|
|||||||
<TreeItemLayout
|
<TreeItemLayout
|
||||||
actions={false}
|
actions={false}
|
||||||
className="___rq9vxg0_1ykn2d2 fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1nfm20t f1do9gdl"
|
className="___rq9vxg0_1ykn2d2 fkhj508 fbv8p0b f1f09k3d fg706s2 frpde29 f1n8cmsf f1ktbui8 f1nfm20t f1do9gdl"
|
||||||
data-test="TreeNode:root"
|
data-testid="TreeNode:root"
|
||||||
iconBefore={
|
iconBefore={
|
||||||
<img
|
<img
|
||||||
alt=""
|
alt=""
|
||||||
|
|||||||
@@ -133,7 +133,7 @@ export class NotificationConsoleComponent extends React.Component<
|
|||||||
</span>
|
</span>
|
||||||
</span>
|
</span>
|
||||||
</div>
|
</div>
|
||||||
<div className="expandCollapseButton" data-test="NotificationConsole/ExpandCollapseButton">
|
<div className="expandCollapseButton" data-testid="NotificationConsole/ExpandCollapseButton">
|
||||||
<img
|
<img
|
||||||
src={this.props.isConsoleExpanded ? ChevronDownIcon : ChevronUpIcon}
|
src={this.props.isConsoleExpanded ? ChevronDownIcon : ChevronUpIcon}
|
||||||
alt={this.props.isConsoleExpanded ? "Collapse icon" : "Expand icon"}
|
alt={this.props.isConsoleExpanded ? "Collapse icon" : "Expand icon"}
|
||||||
@@ -145,7 +145,7 @@ export class NotificationConsoleComponent extends React.Component<
|
|||||||
height={this.props.isConsoleExpanded ? "auto" : 0}
|
height={this.props.isConsoleExpanded ? "auto" : 0}
|
||||||
onAnimationEnd={this.onConsoleWasExpanded}
|
onAnimationEnd={this.onConsoleWasExpanded}
|
||||||
>
|
>
|
||||||
<div data-test="NotificationConsole/Contents" className="notificationConsoleContents">
|
<div data-testid="NotificationConsole/Contents" className="notificationConsoleContents">
|
||||||
<div className="notificationConsoleControls">
|
<div className="notificationConsoleControls">
|
||||||
<Dropdown
|
<Dropdown
|
||||||
label="Filter:"
|
label="Filter:"
|
||||||
|
|||||||
@@ -88,7 +88,7 @@ exports[`NotificationConsoleComponent renders the console 1`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
className="expandCollapseButton"
|
className="expandCollapseButton"
|
||||||
data-test="NotificationConsole/ExpandCollapseButton"
|
data-testid="NotificationConsole/ExpandCollapseButton"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
alt="Expand icon"
|
alt="Expand icon"
|
||||||
@@ -122,7 +122,7 @@ exports[`NotificationConsoleComponent renders the console 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="notificationConsoleContents"
|
className="notificationConsoleContents"
|
||||||
data-test="NotificationConsole/Contents"
|
data-testid="NotificationConsole/Contents"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="notificationConsoleControls"
|
className="notificationConsoleControls"
|
||||||
@@ -273,7 +273,7 @@ exports[`NotificationConsoleComponent renders the console 2`] = `
|
|||||||
</div>
|
</div>
|
||||||
<div
|
<div
|
||||||
className="expandCollapseButton"
|
className="expandCollapseButton"
|
||||||
data-test="NotificationConsole/ExpandCollapseButton"
|
data-testid="NotificationConsole/ExpandCollapseButton"
|
||||||
>
|
>
|
||||||
<img
|
<img
|
||||||
alt="Expand icon"
|
alt="Expand icon"
|
||||||
@@ -307,7 +307,7 @@ exports[`NotificationConsoleComponent renders the console 2`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="notificationConsoleContents"
|
className="notificationConsoleContents"
|
||||||
data-test="NotificationConsole/Contents"
|
data-testid="NotificationConsole/Contents"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="notificationConsoleControls"
|
className="notificationConsoleControls"
|
||||||
|
|||||||
@@ -56,16 +56,16 @@ export class StatusBar extends React.Component<Props> {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<BarContainer>
|
<BarContainer>
|
||||||
<Bar data-test="notebookStatusBar">
|
<Bar data-testid="notebookStatusBar">
|
||||||
<RightStatus>
|
<RightStatus>
|
||||||
{this.props.lastSaved ? (
|
{this.props.lastSaved ? (
|
||||||
<p data-test="saveStatus"> Last saved {distanceInWordsToNow(this.props.lastSaved)} </p>
|
<p data-testid="saveStatus"> Last saved {distanceInWordsToNow(this.props.lastSaved)} </p>
|
||||||
) : (
|
) : (
|
||||||
<p> Not saved yet </p>
|
<p> Not saved yet </p>
|
||||||
)}
|
)}
|
||||||
</RightStatus>
|
</RightStatus>
|
||||||
<LeftStatus>
|
<LeftStatus>
|
||||||
<p data-test="kernelStatus">
|
<p data-testid="kernelStatus">
|
||||||
{name} | {this.props.kernelStatus}
|
{name} | {this.props.kernelStatus}
|
||||||
</p>
|
</p>
|
||||||
</LeftStatus>
|
</LeftStatus>
|
||||||
|
|||||||
@@ -301,7 +301,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
type="radio"
|
type="radio"
|
||||||
role="radio"
|
role="radio"
|
||||||
id="databaseCreateNew"
|
id="databaseCreateNew"
|
||||||
data-test="AddCollectionPanel/DatabaseRadio:CreateNew"
|
data-testid="AddCollectionPanel/DatabaseRadio:CreateNew"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
onChange={this.onCreateNewDatabaseRadioBtnChange.bind(this)}
|
onChange={this.onCreateNewDatabaseRadioBtnChange.bind(this)}
|
||||||
/>
|
/>
|
||||||
@@ -315,7 +315,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
name="databaseType"
|
name="databaseType"
|
||||||
type="radio"
|
type="radio"
|
||||||
role="radio"
|
role="radio"
|
||||||
data-test="AddCollectionPanel/DatabaseRadio:UseExisting"
|
data-testid="AddCollectionPanel/DatabaseRadio:UseExisting"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
onChange={this.onUseExistingDatabaseRadioBtnChange.bind(this)}
|
onChange={this.onUseExistingDatabaseRadioBtnChange.bind(this)}
|
||||||
/>
|
/>
|
||||||
@@ -339,7 +339,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
size={40}
|
size={40}
|
||||||
className="panelTextField"
|
className="panelTextField"
|
||||||
aria-label="New database id, Type a new database id"
|
aria-label="New database id, Type a new database id"
|
||||||
data-test="AddCollectionPanel/DatabaseId"
|
data-testid="AddCollectionPanel/DatabaseId"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
value={this.state.newDatabaseId}
|
value={this.state.newDatabaseId}
|
||||||
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
||||||
@@ -349,7 +349,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
|
|
||||||
{!isServerlessAccount() && (
|
{!isServerlessAccount() && (
|
||||||
<Stack horizontal>
|
<Stack horizontal>
|
||||||
<div data-test="AddCollectionPanel/SharedThroughputCheckbox">
|
<div data-testid="AddCollectionPanel/SharedThroughputCheckbox">
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label={`Share throughput across ${getCollectionName(true).toLocaleLowerCase()}`}
|
label={`Share throughput across ${getCollectionName(true).toLocaleLowerCase()}`}
|
||||||
checked={this.state.isSharedThroughputChecked}
|
checked={this.state.isSharedThroughputChecked}
|
||||||
@@ -401,7 +401,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
{!this.state.createNewDatabase && (
|
{!this.state.createNewDatabase && (
|
||||||
<Dropdown
|
<Dropdown
|
||||||
ariaLabel="Choose an existing database"
|
ariaLabel="Choose an existing database"
|
||||||
data-test="AddCollectionPanel/ExistingDatabaseDropdown"
|
data-testid="AddCollectionPanel/ExistingDatabaseDropdown"
|
||||||
styles={{ title: { height: 27, lineHeight: 27 }, dropdownItem: { fontSize: 12 } }}
|
styles={{ title: { height: 27, lineHeight: 27 }, dropdownItem: { fontSize: 12 } }}
|
||||||
style={{ width: 300, fontSize: 12 }}
|
style={{ width: 300, fontSize: 12 }}
|
||||||
placeholder="Choose an existing database"
|
placeholder="Choose an existing database"
|
||||||
@@ -449,7 +449,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
placeholder={`e.g., ${getCollectionName()}1`}
|
placeholder={`e.g., ${getCollectionName()}1`}
|
||||||
size={40}
|
size={40}
|
||||||
className="panelTextField"
|
className="panelTextField"
|
||||||
data-test="AddCollectionPanel/CollectionId"
|
data-testid="AddCollectionPanel/CollectionId"
|
||||||
aria-label={`${getCollectionName()} id, Example ${getCollectionName()}1`}
|
aria-label={`${getCollectionName()} id, Example ${getCollectionName()}1`}
|
||||||
value={this.state.collectionId}
|
value={this.state.collectionId}
|
||||||
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
onChange={(event: React.ChangeEvent<HTMLInputElement>) =>
|
||||||
@@ -583,7 +583,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
id="addCollection-partitionKeyValue"
|
id="addCollection-partitionKeyValue"
|
||||||
data-test="AddCollectionPanel/PartitionKey"
|
data-testid="AddCollectionPanel/PartitionKey"
|
||||||
aria-required
|
aria-required
|
||||||
required
|
required
|
||||||
size={40}
|
size={40}
|
||||||
@@ -620,7 +620,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
<input
|
<input
|
||||||
type="text"
|
type="text"
|
||||||
id="addCollection-partitionKeyValue"
|
id="addCollection-partitionKeyValue"
|
||||||
data-test="AddCollectionPanel/PartitionKey"
|
data-testid="AddCollectionPanel/PartitionKey"
|
||||||
key={`addCollection-partitionKeyValue_${index}`}
|
key={`addCollection-partitionKeyValue_${index}`}
|
||||||
aria-required
|
aria-required
|
||||||
required
|
required
|
||||||
@@ -738,7 +738,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
)}
|
)}
|
||||||
|
|
||||||
{!isFabricNative() && userContext.apiType === "SQL" && (
|
{!isFabricNative() && userContext.apiType === "SQL" && (
|
||||||
<Stack style={{ marginTop: -2, marginBottom: -4 }} data-test="AddCollectionPanel/UniqueKeysSection">
|
<Stack style={{ marginTop: -2, marginBottom: -4 }} data-testid="AddCollectionPanel/UniqueKeysSection">
|
||||||
{UniqueKeysHeader()}
|
{UniqueKeysHeader()}
|
||||||
{this.state.uniqueKeys.map((uniqueKey: string, i: number): JSX.Element => {
|
{this.state.uniqueKeys.map((uniqueKey: string, i: number): JSX.Element => {
|
||||||
return (
|
return (
|
||||||
@@ -752,7 +752,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
: "Comma separated paths e.g. /firstName,/address/zipCode"
|
: "Comma separated paths e.g. /firstName,/address/zipCode"
|
||||||
}
|
}
|
||||||
className="panelTextField"
|
className="panelTextField"
|
||||||
data-test="AddCollectionPanel/UniqueKey"
|
data-testid="AddCollectionPanel/UniqueKey"
|
||||||
value={uniqueKey}
|
value={uniqueKey}
|
||||||
onChange={(event: React.ChangeEvent<HTMLInputElement>) => {
|
onChange={(event: React.ChangeEvent<HTMLInputElement>) => {
|
||||||
const uniqueKeys = this.state.uniqueKeys.map((uniqueKey: string, j: number) => {
|
const uniqueKeys = this.state.uniqueKeys.map((uniqueKey: string, j: number) => {
|
||||||
@@ -779,7 +779,7 @@ export class AddCollectionPanel extends React.Component<AddCollectionPanelProps,
|
|||||||
|
|
||||||
<ActionButton
|
<ActionButton
|
||||||
iconProps={{ iconName: "Add" }}
|
iconProps={{ iconName: "Add" }}
|
||||||
data-test="AddCollectionPanel/AddUniqueKeyButton"
|
data-testid="AddCollectionPanel/AddUniqueKeyButton"
|
||||||
styles={{ root: { padding: 0 }, label: { fontSize: 12 } }}
|
styles={{ root: { padding: 0 }, label: { fontSize: 12 } }}
|
||||||
onClick={() => this.setState({ uniqueKeys: [...this.state.uniqueKeys, ""] })}
|
onClick={() => this.setState({ uniqueKeys: [...this.state.uniqueKeys, ""] })}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -56,6 +56,7 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
aria-label="Create new database"
|
aria-label="Create new database"
|
||||||
checked={true}
|
checked={true}
|
||||||
className="panelRadioBtn"
|
className="panelRadioBtn"
|
||||||
|
data-testid="AddCollectionPanel/DatabaseRadio:CreateNew"
|
||||||
id="databaseCreateNew"
|
id="databaseCreateNew"
|
||||||
name="databaseType"
|
name="databaseType"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
@@ -73,6 +74,7 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
aria-label="Use existing database"
|
aria-label="Use existing database"
|
||||||
checked={false}
|
checked={false}
|
||||||
className="panelRadioBtn"
|
className="panelRadioBtn"
|
||||||
|
data-testid="AddCollectionPanel/DatabaseRadio:UseExisting"
|
||||||
name="databaseType"
|
name="databaseType"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
role="radio"
|
role="radio"
|
||||||
@@ -94,6 +96,7 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
aria-required={true}
|
aria-required={true}
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
className="panelTextField"
|
className="panelTextField"
|
||||||
|
data-testid="AddCollectionPanel/DatabaseId"
|
||||||
id="newDatabaseId"
|
id="newDatabaseId"
|
||||||
name="newDatabaseId"
|
name="newDatabaseId"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
@@ -109,26 +112,30 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
<Stack
|
<Stack
|
||||||
horizontal={true}
|
horizontal={true}
|
||||||
>
|
>
|
||||||
<StyledCheckboxBase
|
<div
|
||||||
checked={false}
|
data-testid="AddCollectionPanel/SharedThroughputCheckbox"
|
||||||
label="Share throughput across containers"
|
>
|
||||||
onChange={[Function]}
|
<StyledCheckboxBase
|
||||||
styles={
|
checked={false}
|
||||||
{
|
label="Share throughput across containers"
|
||||||
"checkbox": {
|
onChange={[Function]}
|
||||||
"height": 12,
|
styles={
|
||||||
"width": 12,
|
{
|
||||||
},
|
"checkbox": {
|
||||||
"label": {
|
"height": 12,
|
||||||
"alignItems": "center",
|
"width": 12,
|
||||||
"padding": 0,
|
},
|
||||||
},
|
"label": {
|
||||||
"text": {
|
"alignItems": "center",
|
||||||
"fontSize": 12,
|
"padding": 0,
|
||||||
},
|
},
|
||||||
|
"text": {
|
||||||
|
"fontSize": 12,
|
||||||
|
},
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
/>
|
||||||
/>
|
</div>
|
||||||
<StyledTooltipHostBase
|
<StyledTooltipHostBase
|
||||||
content="Throughput configured at the database level will be shared across all containers within the database."
|
content="Throughput configured at the database level will be shared across all containers within the database."
|
||||||
directionalHint={4}
|
directionalHint={4}
|
||||||
@@ -191,6 +198,7 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
aria-required={true}
|
aria-required={true}
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
className="panelTextField"
|
className="panelTextField"
|
||||||
|
data-testid="AddCollectionPanel/CollectionId"
|
||||||
id="collectionId"
|
id="collectionId"
|
||||||
name="collectionId"
|
name="collectionId"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
@@ -252,6 +260,7 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
aria-label="Partition key"
|
aria-label="Partition key"
|
||||||
aria-required={true}
|
aria-required={true}
|
||||||
className="panelTextField"
|
className="panelTextField"
|
||||||
|
data-testid="AddCollectionPanel/PartitionKey"
|
||||||
id="addCollection-partitionKeyValue"
|
id="addCollection-partitionKeyValue"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
pattern=".*"
|
pattern=".*"
|
||||||
@@ -304,6 +313,7 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
setThroughputValue={[Function]}
|
setThroughputValue={[Function]}
|
||||||
/>
|
/>
|
||||||
<Stack
|
<Stack
|
||||||
|
data-testid="AddCollectionPanel/UniqueKeysSection"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"marginBottom": -4,
|
"marginBottom": -4,
|
||||||
@@ -338,6 +348,7 @@ exports[`AddCollectionPanel should render Default properly 1`] = `
|
|||||||
</StyledTooltipHostBase>
|
</StyledTooltipHostBase>
|
||||||
</Stack>
|
</Stack>
|
||||||
<CustomizedActionButton
|
<CustomizedActionButton
|
||||||
|
data-testid="AddCollectionPanel/AddUniqueKeyButton"
|
||||||
iconProps={
|
iconProps={
|
||||||
{
|
{
|
||||||
"iconName": "Add",
|
"iconName": "Add",
|
||||||
|
|||||||
@@ -199,7 +199,7 @@ export const CassandraAddCollectionPane: FunctionComponent<CassandraAddCollectio
|
|||||||
{keyspaceCreateNew && (
|
{keyspaceCreateNew && (
|
||||||
<Stack className="panelGroupSpacing">
|
<Stack className="panelGroupSpacing">
|
||||||
<TextField
|
<TextField
|
||||||
data-test="AddCollectionPanel/DatabaseId"
|
data-testid="AddCollectionPanel/DatabaseId"
|
||||||
aria-required="true"
|
aria-required="true"
|
||||||
required={true}
|
required={true}
|
||||||
autoComplete="off"
|
autoComplete="off"
|
||||||
@@ -216,7 +216,7 @@ export const CassandraAddCollectionPane: FunctionComponent<CassandraAddCollectio
|
|||||||
|
|
||||||
{!isServerlessAccount() && (
|
{!isServerlessAccount() && (
|
||||||
<Stack horizontal>
|
<Stack horizontal>
|
||||||
<div data-test="AddCollectionPanel/SharedThroughputCheckbox">
|
<div data-testid="AddCollectionPanel/SharedThroughputCheckbox">
|
||||||
<Checkbox
|
<Checkbox
|
||||||
label="Provision shared throughput"
|
label="Provision shared throughput"
|
||||||
checked={isKeyspaceShared}
|
checked={isKeyspaceShared}
|
||||||
@@ -292,7 +292,7 @@ export const CassandraAddCollectionPane: FunctionComponent<CassandraAddCollectio
|
|||||||
{`CREATE TABLE ${keyspaceCreateNew ? newKeyspaceId : existingKeyspaceId}.`}
|
{`CREATE TABLE ${keyspaceCreateNew ? newKeyspaceId : existingKeyspaceId}.`}
|
||||||
</Text>
|
</Text>
|
||||||
<TextField
|
<TextField
|
||||||
data-test="AddCollectionPanel/CollectionId"
|
data-testid="AddCollectionPanel/CollectionId"
|
||||||
underlined
|
underlined
|
||||||
styles={getTextFieldStyles({ fontSize: 12, width: 150 })}
|
styles={getTextFieldStyles({ fontSize: 12, width: 150 })}
|
||||||
aria-required="true"
|
aria-required="true"
|
||||||
|
|||||||
@@ -120,7 +120,7 @@ export const DeleteCollectionConfirmationPane: FunctionComponent<DeleteCollectio
|
|||||||
<Text variant="small">Confirm by typing the {collectionName.toLowerCase()} id</Text>
|
<Text variant="small">Confirm by typing the {collectionName.toLowerCase()} id</Text>
|
||||||
<TextField
|
<TextField
|
||||||
id="confirmCollectionId"
|
id="confirmCollectionId"
|
||||||
data-test="DeleteCollectionConfirmationPane/ConfirmInput"
|
data-testid="DeleteCollectionConfirmationPane/ConfirmInput"
|
||||||
autoFocus
|
autoFocus
|
||||||
value={inputCollectionName}
|
value={inputCollectionName}
|
||||||
styles={{ fieldGroup: { width: 300 } }}
|
styles={{ fieldGroup: { width: 300 } }}
|
||||||
|
|||||||
@@ -42,6 +42,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
<StyledTextFieldBase
|
<StyledTextFieldBase
|
||||||
ariaLabel="Confirm by typing the container id"
|
ariaLabel="Confirm by typing the container id"
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
|
data-testid="DeleteCollectionConfirmationPane/ConfirmInput"
|
||||||
id="confirmCollectionId"
|
id="confirmCollectionId"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
required={true}
|
required={true}
|
||||||
@@ -57,6 +58,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
<TextFieldBase
|
<TextFieldBase
|
||||||
ariaLabel="Confirm by typing the container id"
|
ariaLabel="Confirm by typing the container id"
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
|
data-testid="DeleteCollectionConfirmationPane/ConfirmInput"
|
||||||
deferredValidationTime={200}
|
deferredValidationTime={200}
|
||||||
id="confirmCollectionId"
|
id="confirmCollectionId"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
@@ -353,6 +355,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
aria-label="Confirm by typing the container id"
|
aria-label="Confirm by typing the container id"
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
className="ms-TextField-field field-113"
|
className="ms-TextField-field field-113"
|
||||||
|
data-testid="DeleteCollectionConfirmationPane/ConfirmInput"
|
||||||
id="confirmCollectionId"
|
id="confirmCollectionId"
|
||||||
onBlur={[Function]}
|
onBlur={[Function]}
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
@@ -379,7 +382,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="OK"
|
text="OK"
|
||||||
@@ -390,7 +393,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -681,7 +684,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -977,7 +980,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1271,7 +1274,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -2157,7 +2160,7 @@ exports[`Delete Collection Confirmation Pane submit() should call delete collect
|
|||||||
aria-label="OK"
|
aria-label="OK"
|
||||||
className="ms-Button ms-Button--primary root-122"
|
className="ms-Button ms-Button--primary root-122"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -135,7 +135,7 @@ export const DeleteDatabaseConfirmationPanel: FunctionComponent<DeleteDatabaseCo
|
|||||||
<Text variant="small">{confirmDatabase}</Text>
|
<Text variant="small">{confirmDatabase}</Text>
|
||||||
<TextField
|
<TextField
|
||||||
id="confirmDatabaseId"
|
id="confirmDatabaseId"
|
||||||
data-test="DeleteDatabaseConfirmationPanel/ConfirmInput"
|
data-testid="DeleteDatabaseConfirmationPanel/ConfirmInput"
|
||||||
autoFocus
|
autoFocus
|
||||||
styles={{ fieldGroup: { width: 300 } }}
|
styles={{ fieldGroup: { width: 300 } }}
|
||||||
onChange={(event, newInput?: string) => {
|
onChange={(event, newInput?: string) => {
|
||||||
|
|||||||
@@ -5312,7 +5312,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="Execute"
|
ariaLabel="Execute"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="Execute"
|
text="Execute"
|
||||||
@@ -5323,7 +5323,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="Execute"
|
ariaLabel="Execute"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -5614,7 +5614,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="Execute"
|
ariaLabel="Execute"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -5910,7 +5910,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="Execute"
|
ariaLabel="Execute"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -6204,7 +6204,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="Execute"
|
ariaLabel="Execute"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -7090,7 +7090,7 @@ exports[`Excute Sproc Param Pane should render Default properly 1`] = `
|
|||||||
aria-label="Execute"
|
aria-label="Execute"
|
||||||
className="ms-Button ms-Button--primary root-148"
|
className="ms-Button ms-Button--primary root-148"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -54,7 +54,7 @@ export class PanelContainerComponent extends React.Component<PanelContainerProps
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<Panel
|
<Panel
|
||||||
data-test={`Panel:${this.props.headerText}`}
|
data-testid={`Panel:${this.props.headerText}`}
|
||||||
headerText={this.props.headerText}
|
headerText={this.props.headerText}
|
||||||
isOpen={this.props.isOpen}
|
isOpen={this.props.isOpen}
|
||||||
onDismiss={this.onDissmiss}
|
onDismiss={this.onDissmiss}
|
||||||
|
|||||||
@@ -16,7 +16,7 @@ export const PanelFooterComponent: React.FunctionComponent<PanelFooterProps> = (
|
|||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
type="submit"
|
type="submit"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
text={buttonLabel}
|
text={buttonLabel}
|
||||||
ariaLabel={buttonLabel}
|
ariaLabel={buttonLabel}
|
||||||
disabled={!!isButtonDisabled}
|
disabled={!!isButtonDisabled}
|
||||||
|
|||||||
@@ -21,7 +21,7 @@ exports[`Right Pane Form should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="Load"
|
ariaLabel="Load"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="Load"
|
text="Load"
|
||||||
@@ -32,7 +32,7 @@ exports[`Right Pane Form should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="Load"
|
ariaLabel="Load"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -323,7 +323,7 @@ exports[`Right Pane Form should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="Load"
|
ariaLabel="Load"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -619,7 +619,7 @@ exports[`Right Pane Form should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="Load"
|
ariaLabel="Load"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -913,7 +913,7 @@ exports[`Right Pane Form should render Default properly 1`] = `
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="Load"
|
ariaLabel="Load"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1799,7 +1799,7 @@ exports[`Right Pane Form should render Default properly 1`] = `
|
|||||||
aria-label="Load"
|
aria-label="Load"
|
||||||
className="ms-Button ms-Button--primary root-109"
|
className="ms-Button ms-Button--primary root-109"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -688,7 +688,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="Create"
|
ariaLabel="Create"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="Create"
|
text="Create"
|
||||||
@@ -699,7 +699,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="Create"
|
ariaLabel="Create"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -990,7 +990,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="Create"
|
ariaLabel="Create"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1286,7 +1286,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="Create"
|
ariaLabel="Create"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1580,7 +1580,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="Create"
|
ariaLabel="Create"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -2466,7 +2466,7 @@ exports[`StringInput Pane should render Create new directory properly 1`] = `
|
|||||||
aria-label="Create"
|
aria-label="Create"
|
||||||
className="ms-Button ms-Button--primary root-128"
|
className="ms-Button ms-Button--primary root-128"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -1258,7 +1258,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="OK"
|
text="OK"
|
||||||
@@ -1269,7 +1269,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -1560,7 +1560,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1856,7 +1856,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -2150,7 +2150,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -3036,7 +3036,7 @@ exports[`Table query select Panel should render Default properly 1`] = `
|
|||||||
aria-label="OK"
|
aria-label="OK"
|
||||||
className="ms-Button ms-Button--primary root-125"
|
className="ms-Button ms-Button--primary root-125"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -369,7 +369,7 @@ exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="Add Entity"
|
ariaLabel="Add Entity"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="Add Entity"
|
text="Add Entity"
|
||||||
@@ -380,7 +380,7 @@ exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="Add Entity"
|
ariaLabel="Add Entity"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -671,7 +671,7 @@ exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="Add Entity"
|
ariaLabel="Add Entity"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -967,7 +967,7 @@ exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="Add Entity"
|
ariaLabel="Add Entity"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1261,7 +1261,7 @@ exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="Add Entity"
|
ariaLabel="Add Entity"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -2147,7 +2147,7 @@ exports[`Excute Add Table Entity Pane should render Default properly 1`] = `
|
|||||||
aria-label="Add Entity"
|
aria-label="Add Entity"
|
||||||
className="ms-Button ms-Button--primary root-113"
|
className="ms-Button ms-Button--primary root-113"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -375,7 +375,7 @@ exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="Update"
|
ariaLabel="Update"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="Update"
|
text="Update"
|
||||||
@@ -386,7 +386,7 @@ exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="Update"
|
ariaLabel="Update"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -677,7 +677,7 @@ exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="Update"
|
ariaLabel="Update"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -973,7 +973,7 @@ exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="Update"
|
ariaLabel="Update"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1267,7 +1267,7 @@ exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="Update"
|
ariaLabel="Update"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -2153,7 +2153,7 @@ exports[`Excute Edit Table Entity Pane should render Default properly 1`] = `
|
|||||||
aria-label="Update"
|
aria-label="Update"
|
||||||
className="ms-Button ms-Button--primary root-113"
|
className="ms-Button ms-Button--primary root-113"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -367,7 +367,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
<StyledTextFieldBase
|
<StyledTextFieldBase
|
||||||
ariaLabel="Confirm by typing the Database id (name)"
|
ariaLabel="Confirm by typing the Database id (name)"
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
data-test="Input:confirmDatabaseId"
|
data-testid="DeleteDatabaseConfirmationPanel/ConfirmInput"
|
||||||
id="confirmDatabaseId"
|
id="confirmDatabaseId"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
required={true}
|
required={true}
|
||||||
@@ -382,7 +382,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
<TextFieldBase
|
<TextFieldBase
|
||||||
ariaLabel="Confirm by typing the Database id (name)"
|
ariaLabel="Confirm by typing the Database id (name)"
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
data-test="Input:confirmDatabaseId"
|
data-testid="DeleteDatabaseConfirmationPanel/ConfirmInput"
|
||||||
deferredValidationTime={200}
|
deferredValidationTime={200}
|
||||||
id="confirmDatabaseId"
|
id="confirmDatabaseId"
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
@@ -678,7 +678,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
aria-label="Confirm by typing the Database id (name)"
|
aria-label="Confirm by typing the Database id (name)"
|
||||||
autoFocus={true}
|
autoFocus={true}
|
||||||
className="ms-TextField-field field-117"
|
className="ms-TextField-field field-117"
|
||||||
data-test="Input:confirmDatabaseId"
|
data-testid="DeleteDatabaseConfirmationPanel/ConfirmInput"
|
||||||
id="confirmDatabaseId"
|
id="confirmDatabaseId"
|
||||||
onBlur={[Function]}
|
onBlur={[Function]}
|
||||||
onChange={[Function]}
|
onChange={[Function]}
|
||||||
@@ -1054,7 +1054,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedPrimaryButton
|
<CustomizedPrimaryButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
text="OK"
|
text="OK"
|
||||||
@@ -1065,7 +1065,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
>
|
>
|
||||||
<PrimaryButton
|
<PrimaryButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
styles={
|
styles={
|
||||||
@@ -1356,7 +1356,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
>
|
>
|
||||||
<CustomizedDefaultButton
|
<CustomizedDefaultButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1652,7 +1652,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
>
|
>
|
||||||
<DefaultButton
|
<DefaultButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -1946,7 +1946,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
<BaseButton
|
<BaseButton
|
||||||
ariaLabel="OK"
|
ariaLabel="OK"
|
||||||
baseClassName="ms-Button"
|
baseClassName="ms-Button"
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onRenderDescription={[Function]}
|
onRenderDescription={[Function]}
|
||||||
@@ -2832,7 +2832,7 @@ exports[`Delete Database Confirmation Pane Should call delete database 1`] = `
|
|||||||
aria-label="OK"
|
aria-label="OK"
|
||||||
className="ms-Button ms-Button--primary root-130"
|
className="ms-Button ms-Button--primary root-130"
|
||||||
data-is-focusable={true}
|
data-is-focusable={true}
|
||||||
data-test="Panel/OkButton"
|
data-testid="Panel/OkButton"
|
||||||
id="sidePanelOkButton"
|
id="sidePanelOkButton"
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
onKeyDown={[Function]}
|
onKeyDown={[Function]}
|
||||||
|
|||||||
@@ -4,7 +4,7 @@ exports[`PaneContainerComponent test should be resize if notification console is
|
|||||||
<StyledPanelBase
|
<StyledPanelBase
|
||||||
closeButtonAriaLabel="Close test"
|
closeButtonAriaLabel="Close test"
|
||||||
customWidth="440px"
|
customWidth="440px"
|
||||||
data-test="Panel:test"
|
data-testid="Panel:test"
|
||||||
headerClassName="panelHeader"
|
headerClassName="panelHeader"
|
||||||
headerText="test"
|
headerText="test"
|
||||||
isFooterAtBottom={true}
|
isFooterAtBottom={true}
|
||||||
@@ -43,7 +43,7 @@ exports[`PaneContainerComponent test should not render console with panel 1`] =
|
|||||||
<StyledPanelBase
|
<StyledPanelBase
|
||||||
closeButtonAriaLabel="Close test"
|
closeButtonAriaLabel="Close test"
|
||||||
customWidth="440px"
|
customWidth="440px"
|
||||||
data-test="Panel:test"
|
data-testid="Panel:test"
|
||||||
headerClassName="panelHeader"
|
headerClassName="panelHeader"
|
||||||
headerText="test"
|
headerText="test"
|
||||||
isFooterAtBottom={true}
|
isFooterAtBottom={true}
|
||||||
@@ -84,7 +84,7 @@ exports[`PaneContainerComponent test should render with panel content and header
|
|||||||
<StyledPanelBase
|
<StyledPanelBase
|
||||||
closeButtonAriaLabel="Close test"
|
closeButtonAriaLabel="Close test"
|
||||||
customWidth="440px"
|
customWidth="440px"
|
||||||
data-test="Panel:test"
|
data-testid="Panel:test"
|
||||||
headerClassName="panelHeader"
|
headerClassName="panelHeader"
|
||||||
headerText="test"
|
headerText="test"
|
||||||
isFooterAtBottom={true}
|
isFooterAtBottom={true}
|
||||||
|
|||||||
@@ -242,10 +242,10 @@ const GlobalCommands: React.FC<GlobalCommandsProps> = ({ explorer }) => {
|
|||||||
}
|
}
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div className={styles.globalCommandsContainer} data-test="GlobalCommands">
|
<div className={styles.globalCommandsContainer} data-testid="GlobalCommands">
|
||||||
{actions.length === 1 ? (
|
{actions.length === 1 ? (
|
||||||
<Button
|
<Button
|
||||||
data-test={`GlobalCommands/Button:${primaryAction.label}`}
|
data-testid={`GlobalCommands/Button:${primaryAction.label}`}
|
||||||
icon={primaryAction.icon}
|
icon={primaryAction.icon}
|
||||||
onClick={onPrimaryActionClick}
|
onClick={onPrimaryActionClick}
|
||||||
ref={primaryFocusableRef}
|
ref={primaryFocusableRef}
|
||||||
@@ -258,7 +258,7 @@ const GlobalCommands: React.FC<GlobalCommandsProps> = ({ explorer }) => {
|
|||||||
{(triggerProps: MenuButtonProps) => (
|
{(triggerProps: MenuButtonProps) => (
|
||||||
<div ref={setGlobalCommandButton}>
|
<div ref={setGlobalCommandButton}>
|
||||||
<SplitButton
|
<SplitButton
|
||||||
data-test={`GlobalCommands/Button:${primaryAction.label}`}
|
data-testid={`GlobalCommands/Button:${primaryAction.label}`}
|
||||||
menuButton={{ ...triggerProps, "aria-label": "More commands" }}
|
menuButton={{ ...triggerProps, "aria-label": "More commands" }}
|
||||||
primaryActionButton={{
|
primaryActionButton={{
|
||||||
onClick: onPrimaryActionClick,
|
onClick: onPrimaryActionClick,
|
||||||
@@ -385,7 +385,7 @@ export const SidebarContainer: React.FC<SidebarProps> = ({ explorer }) => {
|
|||||||
{!isFabricNative() && (
|
{!isFabricNative() && (
|
||||||
<button
|
<button
|
||||||
type="button"
|
type="button"
|
||||||
data-test="Sidebar/RefreshButton"
|
data-testid="Sidebar/RefreshButton"
|
||||||
className={styles.floatingControlButton}
|
className={styles.floatingControlButton}
|
||||||
disabled={loading}
|
disabled={loading}
|
||||||
title="Refresh"
|
title="Refresh"
|
||||||
|
|||||||
@@ -2146,8 +2146,8 @@ export const DocumentsTabComponent: React.FunctionComponent<IDocumentsTabCompone
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<CosmosFluentProvider className={styles.container}>
|
<CosmosFluentProvider className={styles.container}>
|
||||||
<div data-test={"DocumentsTab"} className="tab-pane active" role="tabpanel" style={{ display: "flex" }}>
|
<div data-testid={"DocumentsTab"} className="tab-pane active" role="tabpanel" style={{ display: "flex" }}>
|
||||||
<div data-test={"DocumentsTab/Filter"} className={`${styles.filterRow} ${styles.smallScreenContent}`}>
|
<div data-testid={"DocumentsTab/Filter"} className={`${styles.filterRow} ${styles.smallScreenContent}`}>
|
||||||
{!isPreferredApiMongoDB && <span> SELECT * FROM c </span>}
|
{!isPreferredApiMongoDB && <span> SELECT * FROM c </span>}
|
||||||
<InputDataList
|
<InputDataList
|
||||||
dropdownOptions={getFilterChoices()}
|
dropdownOptions={getFilterChoices()}
|
||||||
@@ -2164,7 +2164,7 @@ export const DocumentsTabComponent: React.FunctionComponent<IDocumentsTabCompone
|
|||||||
/>
|
/>
|
||||||
<Button
|
<Button
|
||||||
appearance="primary"
|
appearance="primary"
|
||||||
data-test={"DocumentsTab/ApplyFilter"}
|
data-testid={"DocumentsTab/ApplyFilter"}
|
||||||
size="small"
|
size="small"
|
||||||
onClick={() => {
|
onClick={() => {
|
||||||
if (isExecuting) {
|
if (isExecuting) {
|
||||||
@@ -2191,7 +2191,7 @@ export const DocumentsTabComponent: React.FunctionComponent<IDocumentsTabCompone
|
|||||||
>
|
>
|
||||||
<Allotment.Pane preferredSize={`${tabStateData.leftPaneWidthPercent}%`} minSize={55}>
|
<Allotment.Pane preferredSize={`${tabStateData.leftPaneWidthPercent}%`} minSize={55}>
|
||||||
<div
|
<div
|
||||||
data-test={"DocumentsTab/DocumentsPane"}
|
data-testid={"DocumentsTab/DocumentsPane"}
|
||||||
style={{ height: "100%", width: "100%", overflow: "hidden" }}
|
style={{ height: "100%", width: "100%", overflow: "hidden" }}
|
||||||
ref={tableContainerRef}
|
ref={tableContainerRef}
|
||||||
>
|
>
|
||||||
@@ -2237,7 +2237,7 @@ export const DocumentsTabComponent: React.FunctionComponent<IDocumentsTabCompone
|
|||||||
{tableItems.length > 0 && (
|
{tableItems.length > 0 && (
|
||||||
<a
|
<a
|
||||||
className={styles.loadMore}
|
className={styles.loadMore}
|
||||||
data-test={"DocumentsTab/LoadMore"}
|
data-testid={"DocumentsTab/LoadMore"}
|
||||||
role="button"
|
role="button"
|
||||||
tabIndex={0}
|
tabIndex={0}
|
||||||
onClick={() => loadNextPage(documentsIterator.iterator, false)}
|
onClick={() => loadNextPage(documentsIterator.iterator, false)}
|
||||||
@@ -2249,7 +2249,7 @@ export const DocumentsTabComponent: React.FunctionComponent<IDocumentsTabCompone
|
|||||||
</div>
|
</div>
|
||||||
</Allotment.Pane>
|
</Allotment.Pane>
|
||||||
<Allotment.Pane minSize={30}>
|
<Allotment.Pane minSize={30}>
|
||||||
<div data-test={"DocumentsTab/ResultsPane"} style={{ height: "100%", width: "100%" }}>
|
<div data-testid={"DocumentsTab/ResultsPane"} style={{ height: "100%", width: "100%" }}>
|
||||||
{isTabActive && selectedDocumentContent && selectedRows.size <= 1 && (
|
{isTabActive && selectedDocumentContent && selectedRows.size <= 1 && (
|
||||||
<EditorReact
|
<EditorReact
|
||||||
language={"json"}
|
language={"json"}
|
||||||
|
|||||||
@@ -6,7 +6,7 @@ exports[`Documents tab (noSql API) when rendered should render the page 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="tab-pane active"
|
className="tab-pane active"
|
||||||
data-test="DocumentsTab"
|
data-testid="DocumentsTab"
|
||||||
role="tabpanel"
|
role="tabpanel"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
@@ -16,7 +16,7 @@ exports[`Documents tab (noSql API) when rendered should render the page 1`] = `
|
|||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
className="___11ktxfv_0000000 f1o614cb fy9rknc f22iagw fsnqrgy f1f5gg8d fjodcmx f122n59 f1f09k3d fg706s2 frpde29 ___1ngl8o6_0000000 fz7mnu6 fl3egqs flhmrkm"
|
className="___11ktxfv_0000000 f1o614cb fy9rknc f22iagw fsnqrgy f1f5gg8d fjodcmx f122n59 f1f09k3d fg706s2 frpde29 ___1ngl8o6_0000000 fz7mnu6 fl3egqs flhmrkm"
|
||||||
data-test="DocumentsTab/Filter"
|
data-testid="DocumentsTab/Filter"
|
||||||
>
|
>
|
||||||
<span>
|
<span>
|
||||||
SELECT * FROM c
|
SELECT * FROM c
|
||||||
@@ -51,7 +51,7 @@ exports[`Documents tab (noSql API) when rendered should render the page 1`] = `
|
|||||||
<Button
|
<Button
|
||||||
appearance="primary"
|
appearance="primary"
|
||||||
aria-label="Apply filter"
|
aria-label="Apply filter"
|
||||||
data-test="DocumentsTab/ApplyFilter"
|
data-testid="DocumentsTab/ApplyFilter"
|
||||||
disabled={false}
|
disabled={false}
|
||||||
onClick={[Function]}
|
onClick={[Function]}
|
||||||
size="small"
|
size="small"
|
||||||
@@ -68,7 +68,7 @@ exports[`Documents tab (noSql API) when rendered should render the page 1`] = `
|
|||||||
preferredSize="35%"
|
preferredSize="35%"
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
data-test="DocumentsTab/DocumentsPane"
|
data-testid="DocumentsTab/DocumentsPane"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"height": "100%",
|
"height": "100%",
|
||||||
@@ -130,7 +130,7 @@ exports[`Documents tab (noSql API) when rendered should render the page 1`] = `
|
|||||||
minSize={30}
|
minSize={30}
|
||||||
>
|
>
|
||||||
<div
|
<div
|
||||||
data-test="DocumentsTab/ResultsPane"
|
data-testid="DocumentsTab/ResultsPane"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"height": "100%",
|
"height": "100%",
|
||||||
|
|||||||
@@ -116,7 +116,7 @@ export const ErrorList: React.FC<{ errors: QueryError[] }> = ({ errors }) => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<DataGrid
|
<DataGrid
|
||||||
data-test="QueryTab/ResultsPane/ErrorList"
|
data-testid="QueryTab/ResultsPane/ErrorList"
|
||||||
items={errors}
|
items={errors}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
sortable
|
sortable
|
||||||
@@ -131,9 +131,9 @@ export const ErrorList: React.FC<{ errors: QueryError[] }> = ({ errors }) => {
|
|||||||
</DataGridHeader>
|
</DataGridHeader>
|
||||||
<DataGridBody<QueryError>>
|
<DataGridBody<QueryError>>
|
||||||
{({ item, rowId }) => (
|
{({ item, rowId }) => (
|
||||||
<DataGridRow<QueryError> key={rowId} data-test={`Row:${rowId}`}>
|
<DataGridRow<QueryError> key={rowId} data-testid={`Row:${rowId}`}>
|
||||||
{({ columnId, renderCell }) => (
|
{({ columnId, renderCell }) => (
|
||||||
<DataGridCell data-test={`Row:${rowId}/Column:${columnId}`}>{renderCell(item)}</DataGridCell>
|
<DataGridCell data-testid={`Row:${rowId}/Column:${columnId}`}>{renderCell(item)}</DataGridCell>
|
||||||
)}
|
)}
|
||||||
</DataGridRow>
|
</DataGridRow>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -3,13 +3,13 @@ import QueryError from "Common/QueryError";
|
|||||||
import { IndeterminateProgressBar } from "Explorer/Controls/IndeterminateProgressBar";
|
import { IndeterminateProgressBar } from "Explorer/Controls/IndeterminateProgressBar";
|
||||||
import { MessageBanner } from "Explorer/Controls/MessageBanner";
|
import { MessageBanner } from "Explorer/Controls/MessageBanner";
|
||||||
import { useQueryTabStyles } from "Explorer/Tabs/QueryTab/Styles";
|
import { useQueryTabStyles } from "Explorer/Tabs/QueryTab/Styles";
|
||||||
|
import useZoomLevel from "hooks/useZoomLevel";
|
||||||
import React from "react";
|
import React from "react";
|
||||||
|
import { conditionalClass } from "Utils/StyleUtils";
|
||||||
import RunQuery from "../../../../images/RunQuery.png";
|
import RunQuery from "../../../../images/RunQuery.png";
|
||||||
import { QueryResults } from "../../../Contracts/ViewModels";
|
import { QueryResults } from "../../../Contracts/ViewModels";
|
||||||
import { ErrorList } from "./ErrorList";
|
import { ErrorList } from "./ErrorList";
|
||||||
import { ResultsView } from "./ResultsView";
|
import { ResultsView } from "./ResultsView";
|
||||||
import useZoomLevel from "hooks/useZoomLevel";
|
|
||||||
import { conditionalClass } from "Utils/StyleUtils";
|
|
||||||
|
|
||||||
export interface ResultsViewProps {
|
export interface ResultsViewProps {
|
||||||
isMongoDB: boolean;
|
isMongoDB: boolean;
|
||||||
@@ -27,7 +27,7 @@ const ExecuteQueryCallToAction: React.FC = () => {
|
|||||||
const styles = useQueryTabStyles();
|
const styles = useQueryTabStyles();
|
||||||
const isZoomed = useZoomLevel();
|
const isZoomed = useZoomLevel();
|
||||||
return (
|
return (
|
||||||
<div data-test="QueryTab/ResultsPane/ExecuteCTA" className={styles.executeCallToAction}>
|
<div data-testid="QueryTab/ResultsPane/ExecuteCTA" className={styles.executeCallToAction}>
|
||||||
<div>
|
<div>
|
||||||
<p>
|
<p>
|
||||||
<img
|
<img
|
||||||
@@ -54,7 +54,7 @@ export const QueryResultSection: React.FC<QueryResultProps> = ({
|
|||||||
const maybeSubQuery = queryEditorContent && /.*\(.*SELECT.*\)/i.test(queryEditorContent);
|
const maybeSubQuery = queryEditorContent && /.*\(.*SELECT.*\)/i.test(queryEditorContent);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div data-test="QueryTab/ResultsPane" className={styles.queryResultsPanel}>
|
<div data-testid="QueryTab/ResultsPane" className={styles.queryResultsPanel}>
|
||||||
{isExecuting && <IndeterminateProgressBar />}
|
{isExecuting && <IndeterminateProgressBar />}
|
||||||
<MessageBanner
|
<MessageBanner
|
||||||
messageId="QueryEditor.EmptyMongoQuery"
|
messageId="QueryEditor.EmptyMongoQuery"
|
||||||
|
|||||||
@@ -64,7 +64,7 @@ describe("QueryTabComponent", () => {
|
|||||||
|
|
||||||
const { container } = render(<QueryTabComponent {...propsMock} />);
|
const { container } = render(<QueryTabComponent {...propsMock} />);
|
||||||
|
|
||||||
const launchCopilotButton = container.querySelector('[data-test="QueryTab/ResultsPane/ExecuteCTA"]');
|
const launchCopilotButton = container.querySelector('[data-testid="QueryTab/ResultsPane/ExecuteCTA"]');
|
||||||
fireEvent.keyDown(launchCopilotButton, { key: "c", altKey: true });
|
fireEvent.keyDown(launchCopilotButton, { key: "c", altKey: true });
|
||||||
|
|
||||||
expect(mockStore.setShowCopilotSidebar).toHaveBeenCalledWith(true);
|
expect(mockStore.setShowCopilotSidebar).toHaveBeenCalledWith(true);
|
||||||
|
|||||||
@@ -746,7 +746,7 @@ class QueryTabComponentImpl extends React.Component<QueryTabComponentImplProps,
|
|||||||
}}
|
}}
|
||||||
>
|
>
|
||||||
<Allotment.Pane
|
<Allotment.Pane
|
||||||
data-test="QueryTab/EditorPane"
|
data-testid="QueryTab/EditorPane"
|
||||||
preferredSize={
|
preferredSize={
|
||||||
this.state.queryViewSizePercent !== undefined ? `${this.state.queryViewSizePercent}%` : undefined
|
this.state.queryViewSizePercent !== undefined ? `${this.state.queryViewSizePercent}%` : undefined
|
||||||
}
|
}
|
||||||
@@ -813,7 +813,7 @@ class QueryTabComponentImpl extends React.Component<QueryTabComponentImplProps,
|
|||||||
render(): JSX.Element {
|
render(): JSX.Element {
|
||||||
const shouldScaleElements = this.state.showCopilotSidebar && this.isCopilotTabActive;
|
const shouldScaleElements = this.state.showCopilotSidebar && this.isCopilotTabActive;
|
||||||
return (
|
return (
|
||||||
<div data-test="QueryTab" style={{ display: "flex", flexDirection: "row", height: "100%" }}>
|
<div data-testid="QueryTab" style={{ display: "flex", flexDirection: "row", height: "100%" }}>
|
||||||
<div style={{ width: shouldScaleElements ? "70%" : "100%", height: "100%" }}>
|
<div style={{ width: shouldScaleElements ? "70%" : "100%", height: "100%" }}>
|
||||||
{this.getEditorAndQueryResult()}
|
{this.getEditorAndQueryResult()}
|
||||||
</div>
|
</div>
|
||||||
|
|||||||
@@ -489,7 +489,7 @@ const QueryStatsTab: React.FC<Pick<ResultsViewProps, "queryResults">> = ({ query
|
|||||||
return (
|
return (
|
||||||
<div className={styles.metricsGridContainer}>
|
<div className={styles.metricsGridContainer}>
|
||||||
<DataGrid
|
<DataGrid
|
||||||
data-test="QueryTab/ResultsPane/ResultsView/QueryStatsList"
|
data-testid="QueryTab/ResultsPane/ResultsView/QueryStatsList"
|
||||||
className={styles.queryStatsGrid}
|
className={styles.queryStatsGrid}
|
||||||
items={generateQueryStatsItems()}
|
items={generateQueryStatsItems()}
|
||||||
columns={columns}
|
columns={columns}
|
||||||
@@ -504,9 +504,9 @@ const QueryStatsTab: React.FC<Pick<ResultsViewProps, "queryResults">> = ({ query
|
|||||||
</DataGridHeader>
|
</DataGridHeader>
|
||||||
<DataGridBody<IDocument>>
|
<DataGridBody<IDocument>>
|
||||||
{({ item, rowId }) => (
|
{({ item, rowId }) => (
|
||||||
<DataGridRow<IDocument> key={rowId} data-test={`Row:${rowId}`}>
|
<DataGridRow<IDocument> key={rowId} data-testid={`Row:${rowId}`}>
|
||||||
{({ columnId, renderCell }) => (
|
{({ columnId, renderCell }) => (
|
||||||
<DataGridCell data-test={`Row:${rowId}/Column:${columnId}`}>{renderCell(item)}</DataGridCell>
|
<DataGridCell data-testid={`Row:${rowId}/Column:${columnId}`}>{renderCell(item)}</DataGridCell>
|
||||||
)}
|
)}
|
||||||
</DataGridRow>
|
</DataGridRow>
|
||||||
)}
|
)}
|
||||||
@@ -532,17 +532,17 @@ export const ResultsView: React.FC<ResultsViewProps> = ({ isMongoDB, queryResult
|
|||||||
}, []);
|
}, []);
|
||||||
|
|
||||||
return (
|
return (
|
||||||
<div data-test="QueryTab/ResultsPane/ResultsView" className={styles.queryResultsTabPanel}>
|
<div data-testid="QueryTab/ResultsPane/ResultsView" className={styles.queryResultsTabPanel}>
|
||||||
<TabList selectedValue={activeTab} onTabSelect={onTabSelect}>
|
<TabList selectedValue={activeTab} onTabSelect={onTabSelect}>
|
||||||
<Tab
|
<Tab
|
||||||
data-test="QueryTab/ResultsPane/ResultsView/ResultsTab"
|
data-testid="QueryTab/ResultsPane/ResultsView/ResultsTab"
|
||||||
id={ResultsTabs.Results}
|
id={ResultsTabs.Results}
|
||||||
value={ResultsTabs.Results}
|
value={ResultsTabs.Results}
|
||||||
>
|
>
|
||||||
Results
|
Results
|
||||||
</Tab>
|
</Tab>
|
||||||
<Tab
|
<Tab
|
||||||
data-test="QueryTab/ResultsPane/ResultsView/QueryStatsTab"
|
data-testid="QueryTab/ResultsPane/ResultsView/QueryStatsTab"
|
||||||
id={ResultsTabs.QueryStats}
|
id={ResultsTabs.QueryStats}
|
||||||
value={ResultsTabs.QueryStats}
|
value={ResultsTabs.QueryStats}
|
||||||
>
|
>
|
||||||
|
|||||||
@@ -237,14 +237,14 @@ function TabPane({ tab, active }: { tab: Tab; active: boolean }) {
|
|||||||
if (tab) {
|
if (tab) {
|
||||||
if ("render" in tab) {
|
if ("render" in tab) {
|
||||||
return (
|
return (
|
||||||
<div data-test={`Tab:${tab.tabId}`} {...attrs}>
|
<div data-testid={`Tab:${tab.tabId}`} {...attrs}>
|
||||||
{tab.render()}
|
{tab.render()}
|
||||||
</div>
|
</div>
|
||||||
);
|
);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
return <div data-test={`Tab:${tab.tabId}`} {...attrs} ref={ref} data-bind="html:html" />;
|
return <div data-testid={`Tab:${tab.tabId}`} {...attrs} ref={ref} data-bind="html:html" />;
|
||||||
}
|
}
|
||||||
|
|
||||||
const onKeyPressReactTab = (e: KeyboardEvent, tabKind: ReactTabKind): void => {
|
const onKeyPressReactTab = (e: KeyboardEvent, tabKind: ReactTabKind): void => {
|
||||||
|
|||||||
@@ -129,7 +129,7 @@ const App: React.FunctionComponent = () => {
|
|||||||
// Setting key is needed so React will re-render this element on any account change
|
// Setting key is needed so React will re-render this element on any account change
|
||||||
key={databaseAccount?.id || encryptedTokenMetadata?.accountName || authType}
|
key={databaseAccount?.id || encryptedTokenMetadata?.accountName || authType}
|
||||||
ref={ref}
|
ref={ref}
|
||||||
data-test="DataExplorerFrame"
|
data-testid="DataExplorerFrame"
|
||||||
id="explorerMenu"
|
id="explorerMenu"
|
||||||
name="explorer"
|
name="explorer"
|
||||||
className="iframe"
|
className="iframe"
|
||||||
|
|||||||
@@ -103,7 +103,7 @@ const App: React.FunctionComponent = () => {
|
|||||||
|
|
||||||
return (
|
return (
|
||||||
<KeyboardShortcutRoot>
|
<KeyboardShortcutRoot>
|
||||||
<div className="flexContainer" aria-hidden="false" data-test="DataExplorerRoot">
|
<div className="flexContainer" aria-hidden="false" data-testid="DataExplorerRoot">
|
||||||
{userContext.features.enableContainerCopy && userContext.apiType === "SQL" ? (
|
{userContext.features.enableContainerCopy && userContext.apiType === "SQL" ? (
|
||||||
<ContainerCopyPanel explorer={explorer} />
|
<ContainerCopyPanel explorer={explorer} />
|
||||||
) : (
|
) : (
|
||||||
|
|||||||
@@ -114,7 +114,7 @@ export const ConnectExplorer: React.FunctionComponent<Props> = ({
|
|||||||
<div id="connectWithAad">
|
<div id="connectWithAad">
|
||||||
<input className="filterbtnstyle" type="button" value="Sign In" onClick={login} />
|
<input className="filterbtnstyle" type="button" value="Sign In" onClick={login} />
|
||||||
{enableConnectionStringLogin && (
|
{enableConnectionStringLogin && (
|
||||||
<p className="switchConnectTypeText" data-test="Link:SwitchConnectionType" onClick={showForm}>
|
<p className="switchConnectTypeText" data-testid="Link:SwitchConnectionType" onClick={showForm}>
|
||||||
Connect to your account with connection string
|
Connect to your account with connection string
|
||||||
</p>
|
</p>
|
||||||
)}
|
)}
|
||||||
|
|||||||
@@ -463,7 +463,7 @@ export class SelfServeComponent extends React.Component<SelfServeComponentProps,
|
|||||||
);
|
);
|
||||||
}
|
}
|
||||||
return (
|
return (
|
||||||
<div style={{ overflowX: "auto" }} data-test="DataExplorerRoot">
|
<div style={{ overflowX: "auto" }} data-testid="DataExplorerRoot">
|
||||||
<Stack tokens={containerStackTokens}>
|
<Stack tokens={containerStackTokens}>
|
||||||
<Stack.Item>
|
<Stack.Item>
|
||||||
<CommandBar styles={commandBarStyles} items={this.getCommandBarItems()} />
|
<CommandBar styles={commandBarStyles} items={this.getCommandBarItems()} />
|
||||||
|
|||||||
@@ -2,7 +2,7 @@
|
|||||||
|
|
||||||
exports[`SelfServeComponent message bar and spinner snapshots 1`] = `
|
exports[`SelfServeComponent message bar and spinner snapshots 1`] = `
|
||||||
<div
|
<div
|
||||||
data-test="DataExplorerRoot"
|
data-testid="DataExplorerRoot"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"overflowX": "auto",
|
"overflowX": "auto",
|
||||||
@@ -339,7 +339,7 @@ exports[`SelfServeComponent message bar and spinner snapshots 1`] = `
|
|||||||
|
|
||||||
exports[`SelfServeComponent message bar and spinner snapshots 2`] = `
|
exports[`SelfServeComponent message bar and spinner snapshots 2`] = `
|
||||||
<div
|
<div
|
||||||
data-test="DataExplorerRoot"
|
data-testid="DataExplorerRoot"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"overflowX": "auto",
|
"overflowX": "auto",
|
||||||
@@ -734,7 +734,7 @@ exports[`SelfServeComponent message bar and spinner snapshots 2`] = `
|
|||||||
|
|
||||||
exports[`SelfServeComponent message bar and spinner snapshots 3`] = `
|
exports[`SelfServeComponent message bar and spinner snapshots 3`] = `
|
||||||
<div
|
<div
|
||||||
data-test="DataExplorerRoot"
|
data-testid="DataExplorerRoot"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"overflowX": "auto",
|
"overflowX": "auto",
|
||||||
@@ -835,7 +835,7 @@ exports[`SelfServeComponent message bar and spinner snapshots 4`] = `
|
|||||||
|
|
||||||
exports[`SelfServeComponent should render and honor save, discard, refresh actions 1`] = `
|
exports[`SelfServeComponent should render and honor save, discard, refresh actions 1`] = `
|
||||||
<div
|
<div
|
||||||
data-test="DataExplorerRoot"
|
data-testid="DataExplorerRoot"
|
||||||
style={
|
style={
|
||||||
{
|
{
|
||||||
"overflowX": "auto",
|
"overflowX": "auto",
|
||||||
|
|||||||
@@ -134,7 +134,7 @@ const initTestExplorer = async (): Promise<void> => {
|
|||||||
);
|
);
|
||||||
iframe.id = "explorerMenu";
|
iframe.id = "explorerMenu";
|
||||||
iframe.name = "explorer";
|
iframe.name = "explorer";
|
||||||
iframe.setAttribute("data-test", "DataExplorerFrame");
|
iframe.setAttribute("data-testid", "DataExplorerFrame");
|
||||||
iframe.classList.add("iframe");
|
iframe.classList.add("iframe");
|
||||||
iframe.title = "explorer";
|
iframe.title = "explorer";
|
||||||
iframe.src = iframeSrc; // CodeQL [SM03712] Not used in production, only for testing purposes
|
iframe.src = iframeSrc; // CodeQL [SM03712] Not used in production, only for testing purposes
|
||||||
|
|||||||
Reference in New Issue
Block a user