/
vshmidt
/
streamlit
Обзор
Документация
Войти
/
vshmidt
/
streamlit
Код
Запросы
0
Задачи
Вики
Пакеты
0
Релизы
0
Аналитика
Безопасность
develop
frontend/lib/src/components/widgets/DataFrame/hooks/useColumnReordering.test.ts
162 строки
4 KB
Ken McGrady
Update copyright header to 2026 (#13491)
02 янв 2026, 16:21
Не верифицирован
02 янв 2026, 16:21
374540a
Код
Авторство
О чём код?
/** * Copyright (c) Streamlit Inc. (2018-2022) Snowflake Inc. (2022-2026) * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ import { act, renderHook } from "@testing-library/react" import { Field, Int64, Utf8 } from "apache-arrow" import { BaseColumn, NumberColumn, TextColumn, } from "~lib/components/widgets/DataFrame/columns" import { DataFrameCellType } from "~lib/dataframes/arrowTypeUtils" import useColumnReordering from "./useColumnReordering" const MOCK_COLUMNS: BaseColumn[] = [ NumberColumn({ id: "column_1", name: "column_1", title: "column_1", indexNumber: 0, arrowType: { type: DataFrameCellType.DATA, arrowField: new Field("column_1", new Int64(), true), pandasType: { field_name: "column_1", name: "column_1", pandas_type: "int64", numpy_type: "int64", metadata: null, }, }, isEditable: false, isHidden: false, isIndex: false, isPinned: false, isStretched: false, }), TextColumn({ id: "column_2", name: "column_2", title: "column_2", indexNumber: 1, arrowType: { type: DataFrameCellType.DATA, arrowField: new Field("column_2", new Utf8(), true), pandasType: { field_name: "column_2", name: "column_2", pandas_type: "unicode", numpy_type: "object", metadata: null, }, }, isEditable: false, isHidden: false, isIndex: false, isPinned: false, isStretched: false, }), ] const pinColumnMock = vi.fn() const unpinColumnMock = vi.fn() const setColumnOrderMock = vi.fn() describe("useColumnReordering hook", () => { beforeEach(() => { vi.clearAllMocks() }) it("returns onColumnMoved callback", () => { const { result } = renderHook(() => useColumnReordering( MOCK_COLUMNS, 0, pinColumnMock, unpinColumnMock, setColumnOrderMock ) ) expect(typeof result.current.onColumnMoved).toBe("function") }) it("correctly handles moving a column to a new position", () => { const { result } = renderHook(() => useColumnReordering( MOCK_COLUMNS, 0, pinColumnMock, unpinColumnMock, setColumnOrderMock ) ) act(() => { result.current.onColumnMoved?.(0, 1) }) expect(setColumnOrderMock).toHaveBeenCalledWith(["column_2", "column_1"]) }) it("pins column when moved to frozen section", () => { const { result } = renderHook(() => useColumnReordering( MOCK_COLUMNS, 1, pinColumnMock, unpinColumnMock, setColumnOrderMock ) ) act(() => { result.current.onColumnMoved?.(1, 0) }) expect(pinColumnMock).toHaveBeenCalledWith("column_2") expect(setColumnOrderMock).toHaveBeenCalledWith(["column_2", "column_1"]) }) it("unpins column when moved out of frozen section", () => { const pinnedColumns = [ { ...MOCK_COLUMNS[0], isPinned: true, }, MOCK_COLUMNS[1], ] const { result } = renderHook(() => useColumnReordering( pinnedColumns, 1, pinColumnMock, unpinColumnMock, setColumnOrderMock ) ) act(() => { result.current.onColumnMoved?.(0, 1) }) expect(unpinColumnMock).toHaveBeenCalledWith("column_1") expect(setColumnOrderMock).toHaveBeenCalledWith(["column_2", "column_1"]) }) })