mirror of
https://github.com/gristlabs/grist-core.git
synced 2024-10-27 20:44:07 +00:00
d0318af39b
Summary: Selection in GridView wasn't updated when fields were removed, and the selected column index was out of bounds. Test Plan: New test added Reviewers: JakubSerafin Reviewed By: JakubSerafin Differential Revision: https://phab.getgrist.com/D4137
61 lines
2.4 KiB
TypeScript
61 lines
2.4 KiB
TypeScript
import {assert, driver} from 'mocha-webdriver';
|
|
import * as gu from 'test/nbrowser/gristUtils';
|
|
import {setupTestSuite} from 'test/nbrowser/testUtils';
|
|
import {DocCreationInfo} from "app/common/DocListAPI";
|
|
import {UserAPI} from 'app/common/UserAPI';
|
|
|
|
describe('GridViewBugs', function() {
|
|
this.timeout('20s');
|
|
const cleanup = setupTestSuite();
|
|
let session: gu.Session, doc: DocCreationInfo, api: UserAPI;
|
|
|
|
before(async function() {
|
|
session = await gu.session().login();
|
|
doc = await session.tempDoc(cleanup, 'Hello.grist');
|
|
api = session.createHomeApi();
|
|
});
|
|
|
|
// This test is for a bug where hiding multiple columns at once would cause an error in the menu.
|
|
// Selection wasn't updated and the column index was out of bounds.
|
|
it('should hide multiple columns without an error', async function() {
|
|
await gu.selectColumnRange('A', 'B');
|
|
await gu.openColumnMenu('B', 'Hide 2 columns');
|
|
await gu.waitForServer();
|
|
await gu.selectColumnRange('C', 'D');
|
|
await gu.openColumnMenu('D', 'Hide 2 columns');
|
|
await gu.waitForServer();
|
|
await gu.openColumnMenu('E');
|
|
await gu.checkForErrors();
|
|
});
|
|
|
|
it('should show tables with no columns without errors', async function() {
|
|
// Create and open a new table with no columns
|
|
await api.applyUserActions(doc.id, [
|
|
['AddTable', 'Empty', []],
|
|
]);
|
|
await gu.getPageItem(/Empty/).click();
|
|
|
|
// The only 'column' should be the button to add a column
|
|
const columnNames = await driver.findAll('.column_name', e => e.getText());
|
|
assert.deepEqual(columnNames, ['+']);
|
|
|
|
// There should be no errors
|
|
assert.lengthOf(await driver.findAll('.test-notifier-toast-wrapper'), 0);
|
|
});
|
|
|
|
// When a grid is scrolled, and then data is changed (due to click in a linked section), some
|
|
// records are not rendered or the position of the scroll container is corrupted.
|
|
it('should render list with wrapped choices correctly', async function() {
|
|
await session.tempDoc(cleanup, 'Teams.grist');
|
|
await gu.selectSectionByTitle("PROJECTS");
|
|
await gu.getCell(0, 1).click();
|
|
await gu.selectSectionByTitle("TODO");
|
|
await gu.scrollActiveView(0, 300);
|
|
await gu.selectSectionByTitle("PROJECTS");
|
|
await gu.getCell(0, 2).click();
|
|
await gu.selectSectionByTitle("TODO");
|
|
// This throws an error, as the cell is not rendered.
|
|
assert.equal(await gu.getCell(0, 2).getText(), "2021-09-27 Mo\n2021-10-04 Mo");
|
|
});
|
|
});
|