-
Notifications
You must be signed in to change notification settings - Fork 600
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
dxGrid - Add more TS typing in onRowUpdating, onRowDeleting, onRowAdd…
…ing events(T1186997) (#25504)
- Loading branch information
1 parent
c31e412
commit 44992d3
Showing
4 changed files
with
187 additions
and
9 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
173 changes: 173 additions & 0 deletions
173
testing/testcafe/tests/dataGrid/editing/editingEvents.ts
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,173 @@ | ||
import { ClientFunction } from 'testcafe'; | ||
import createWidget from '../../../helpers/createWidget'; | ||
import url from '../../../helpers/getPageUrl'; | ||
import DataGrid from '../../../model/dataGrid'; | ||
|
||
fixture`Editing events` | ||
.page(url(__dirname, '../../container.html')); | ||
|
||
// T1186997 | ||
const testCases = [{ | ||
caseName: 'e.cancel = promise:true', | ||
expected: true, | ||
|
||
onRowUpdating: ClientFunction((e) => { | ||
e.cancel = new Promise((resolve) => { | ||
resolve(true); | ||
}); | ||
}), | ||
onRowInserting: ClientFunction((e) => { | ||
e.cancel = new Promise((resolve) => { | ||
resolve(true); | ||
}); | ||
}), | ||
onRowRemoving: ClientFunction((e) => { | ||
e.cancel = new Promise((resolve) => { | ||
resolve(true); | ||
}); | ||
}), | ||
}, { | ||
caseName: 'e.cancel = true', | ||
expected: true, | ||
|
||
onRowUpdating: ClientFunction((e) => { | ||
e.cancel = true; | ||
}), | ||
onRowInserting: ClientFunction((e) => { | ||
e.cancel = true; | ||
}), | ||
onRowRemoving: ClientFunction((e) => { | ||
e.cancel = true; | ||
}), | ||
}, { | ||
caseName: 'e.cancel = promise:false', | ||
expected: false, | ||
|
||
onRowUpdating: ClientFunction((e) => { | ||
e.cancel = new Promise((resolve) => { | ||
resolve(false); | ||
}); | ||
}), | ||
onRowInserting: ClientFunction((e) => { | ||
e.cancel = new Promise((resolve) => { | ||
resolve(false); | ||
}); | ||
}), | ||
onRowRemoving: ClientFunction((e) => { | ||
e.cancel = new Promise((resolve) => { | ||
resolve(false); | ||
}); | ||
}), | ||
}, { | ||
caseName: 'e.cancel = false', | ||
expected: false, | ||
|
||
onRowUpdating: ClientFunction((e) => { | ||
e.cancel = false; | ||
}), | ||
onRowInserting: ClientFunction((e) => { | ||
e.cancel = false; | ||
}), | ||
onRowRemoving: ClientFunction((e) => { | ||
e.cancel = false; | ||
}), | ||
}]; | ||
|
||
// onRowUpdating | ||
testCases.forEach(({ caseName, expected, onRowUpdating }) => { | ||
test(`onRowUpdating event should be work valid in case '${caseName}'`, async (t) => { | ||
const dataGrid = new DataGrid('#container'); | ||
const dataRow = dataGrid.getDataRow(0); | ||
|
||
await t | ||
.click(dataRow.getDataCell(1).getLinkEdit()); | ||
|
||
await t | ||
.typeText(dataRow.getDataCell(0).getEditor().element, 'test text') | ||
.click(dataRow.getDataCell(1).getLinkSave()); | ||
|
||
await t.expect(dataRow.getDataCell(1).getLinkSave().exists).eql(expected); | ||
}).before(async () => { | ||
await createWidget('dxDataGrid', { | ||
dataSource: [{ | ||
ID: 1, | ||
FirstName: 'John', | ||
}], | ||
columns: [{ | ||
dataField: 'FirstName', | ||
caption: 'Firs tName', | ||
}], | ||
height: 300, | ||
editing: { | ||
mode: 'row', | ||
allowUpdating: true, | ||
}, | ||
onRowUpdating, | ||
}); | ||
}); | ||
}); | ||
|
||
// onRowInserting | ||
testCases.forEach(({ caseName, expected, onRowInserting }) => { | ||
test(`onRowInserting event should be work valid in case '${caseName}'`, async (t) => { | ||
const dataGrid = new DataGrid('#container'); | ||
|
||
const addRowButton = dataGrid.getToolbar().getItem(); | ||
await t | ||
.click(addRowButton); | ||
|
||
const dataRow = dataGrid.getDataRow(0); | ||
await t | ||
.typeText(dataRow.getDataCell(0).getEditor().element, 'test text') | ||
.click(dataRow.getDataCell(1).getLinkSave()); | ||
|
||
await t | ||
.expect(dataRow.getDataCell(0).getEditor().element.exists).eql(expected) | ||
.expect(dataRow.getDataCell(1).getLinkSave().exists).eql(expected); | ||
}).before(async () => { | ||
await createWidget('dxDataGrid', { | ||
dataSource: [], | ||
columns: [{ | ||
dataField: 'FirstName', | ||
caption: 'Firs tName', | ||
}], | ||
height: 300, | ||
editing: { | ||
mode: 'row', | ||
allowAdding: true, | ||
}, | ||
onRowInserting, | ||
}); | ||
}); | ||
}); | ||
|
||
// onRowRemoving | ||
testCases.forEach(({ caseName, expected, onRowRemoving }) => { | ||
test(`onRowRemoving event should be work valid in case '${caseName}'`, async (t) => { | ||
const dataGrid = new DataGrid('#container'); | ||
|
||
await t | ||
.click(dataGrid.getDataRow(0).getDataCell(1).getLinkDelete()); | ||
|
||
await t | ||
.expect(dataGrid.getDataRow(0).element.exists).eql(expected); | ||
}).before(async () => { | ||
await createWidget('dxDataGrid', { | ||
dataSource: [{ | ||
ID: 1, | ||
FirstName: 'John', | ||
}], | ||
columns: [{ | ||
dataField: 'FirstName', | ||
caption: 'Firs tName', | ||
}], | ||
height: 300, | ||
editing: { | ||
mode: 'row', | ||
allowDeleting: true, | ||
confirmDelete: false, | ||
}, | ||
onRowRemoving, | ||
}); | ||
}); | ||
}); |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters