|
|
@ -10,12 +10,20 @@ let dashboard: DashboardPage, toolbar: ToolbarPage; |
|
|
|
let context: any; |
|
|
|
let context: any; |
|
|
|
let api: Api<any>; |
|
|
|
let api: Api<any>; |
|
|
|
let records = []; |
|
|
|
let records = []; |
|
|
|
|
|
|
|
|
|
|
|
const skipList = { |
|
|
|
const skipList = { |
|
|
|
Number: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Number: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Decimal: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Decimal: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Percent: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Percent: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Currency: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Currency: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Rating: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
Rating: ['is null', 'is not null', 'is blank', 'is not blank'], |
|
|
|
|
|
|
|
SingleLineText: ['is blank', 'is not blank'], |
|
|
|
|
|
|
|
MultiLineText: ['is blank', 'is not blank'], |
|
|
|
|
|
|
|
Email: ['is blank', 'is not blank'], |
|
|
|
|
|
|
|
PhoneNumber: ['is blank', 'is not blank'], |
|
|
|
|
|
|
|
URL: ['is blank', 'is not blank'], |
|
|
|
|
|
|
|
SingleSelect: ['is blank', 'is not blank', 'contains all of', 'does not contain all of'], |
|
|
|
|
|
|
|
MultiSelect: ['is blank', 'is not blank', 'is', 'is not'], |
|
|
|
}; |
|
|
|
}; |
|
|
|
|
|
|
|
|
|
|
|
// define validateRowArray function
|
|
|
|
// define validateRowArray function
|
|
|
@ -68,6 +76,74 @@ async function verifyFilter(param: { |
|
|
|
} |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
test.describe('Filter Tests: Numerical', () => { |
|
|
|
test.describe('Filter Tests: Numerical', () => { |
|
|
|
|
|
|
|
async function numBasedFilterTest(dataType, eqString, isLikeString) { |
|
|
|
|
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' }); |
|
|
|
|
|
|
|
await dashboard.treeView.openTable({ title: 'numberBased' }); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const filterList = [ |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '=', |
|
|
|
|
|
|
|
value: eqString, |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === parseFloat(eqString)).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '!=', |
|
|
|
|
|
|
|
value: eqString, |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== parseFloat(eqString)).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is blank', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not blank', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>', |
|
|
|
|
|
|
|
value: isLikeString, |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] > parseFloat(isLikeString) && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>=', |
|
|
|
|
|
|
|
value: isLikeString, |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] >= parseFloat(isLikeString) && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<', |
|
|
|
|
|
|
|
value: isLikeString, |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] < parseFloat(isLikeString) && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<=', |
|
|
|
|
|
|
|
value: isLikeString, |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] <= parseFloat(isLikeString) && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < filterList.length; i++) { |
|
|
|
|
|
|
|
await verifyFilter({ |
|
|
|
|
|
|
|
column: dataType, |
|
|
|
|
|
|
|
opType: filterList[i].op, |
|
|
|
|
|
|
|
value: filterList[i].value, |
|
|
|
|
|
|
|
result: { rowCount: filterList[i].rowCount }, |
|
|
|
|
|
|
|
dataType: dataType, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
test.beforeEach(async ({ page }) => { |
|
|
|
test.beforeEach(async ({ page }) => { |
|
|
|
context = await setup({ page }); |
|
|
|
context = await setup({ page }); |
|
|
|
dashboard = new DashboardPage(page, context.project); |
|
|
|
dashboard = new DashboardPage(page, context.project); |
|
|
@ -147,90 +223,44 @@ test.describe('Filter Tests: Numerical', () => { |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
test('Filter: Number', async () => { |
|
|
|
test('Filter: Number', async () => { |
|
|
|
// close 'Team & Auth' tab
|
|
|
|
await numBasedFilterTest('Number', '33', '44'); |
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' }); |
|
|
|
}); |
|
|
|
await dashboard.treeView.openTable({ title: 'numberBased' }); |
|
|
|
|
|
|
|
const dataType = 'Number'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const filterList = [ |
|
|
|
test('Filter: Decimal', async () => { |
|
|
|
{ |
|
|
|
await numBasedFilterTest('Decimal', '33.3', '44.26'); |
|
|
|
op: '=', |
|
|
|
}); |
|
|
|
value: '33', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === 33).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '!=', |
|
|
|
|
|
|
|
value: '33', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== 33).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is blank', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not blank', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>', |
|
|
|
|
|
|
|
value: '44', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] > 44 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>=', |
|
|
|
|
|
|
|
value: '44', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] >= 44 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<', |
|
|
|
|
|
|
|
value: '44', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] < 44 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<=', |
|
|
|
|
|
|
|
value: '44', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] <= 44 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < filterList.length; i++) { |
|
|
|
test('Filter: Percent', async () => { |
|
|
|
await verifyFilter({ |
|
|
|
await numBasedFilterTest('Percent', '33', '44'); |
|
|
|
column: dataType, |
|
|
|
|
|
|
|
opType: filterList[i].op, |
|
|
|
|
|
|
|
value: filterList[i].value, |
|
|
|
|
|
|
|
result: { rowCount: filterList[i].rowCount }, |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
test('Filter: Currency', async () => { |
|
|
|
|
|
|
|
await numBasedFilterTest('Currency', '33.3', '44.26'); |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
test('Filter: Decimal', async () => { |
|
|
|
test('Filter: Rating', async () => { |
|
|
|
// close 'Team & Auth' tab
|
|
|
|
await numBasedFilterTest('Rating', '3', '2'); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
// Text based filters
|
|
|
|
|
|
|
|
//
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test.describe.only('Filter Tests: Text based', () => { |
|
|
|
|
|
|
|
async function textBasedFilterTest(dataType, eqString, isLikeString) { |
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' }); |
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' }); |
|
|
|
await dashboard.treeView.openTable({ title: 'numberBased' }); |
|
|
|
await dashboard.treeView.openTable({ title: 'textBased' }); |
|
|
|
const dataType = 'Decimal'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const filterList = [ |
|
|
|
const filterList = [ |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '=', |
|
|
|
op: 'is equal', |
|
|
|
value: '33.3', |
|
|
|
value: eqString, |
|
|
|
rowCount: records.list.filter(r => r[dataType] === 33.3).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType] === eqString).length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '!=', |
|
|
|
op: 'is not equal', |
|
|
|
value: '33.3', |
|
|
|
value: eqString, |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== 33.3).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== eqString).length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: 'is null', |
|
|
|
op: 'is null', |
|
|
@ -243,107 +273,39 @@ test.describe('Filter Tests: Numerical', () => { |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: 'is blank', |
|
|
|
op: 'is empty', |
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not blank', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>', |
|
|
|
|
|
|
|
value: '44.26', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] > 44.26 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>=', |
|
|
|
|
|
|
|
value: '44.26', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] >= 44.26 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<', |
|
|
|
|
|
|
|
value: '44.26', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] < 44.26 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<=', |
|
|
|
|
|
|
|
value: '44.26', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] <= 44.26 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < filterList.length; i++) { |
|
|
|
|
|
|
|
await verifyFilter({ |
|
|
|
|
|
|
|
column: dataType, |
|
|
|
|
|
|
|
opType: filterList[i].op, |
|
|
|
|
|
|
|
value: filterList[i].value, |
|
|
|
|
|
|
|
result: { rowCount: filterList[i].rowCount }, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test('Filter: Percent', async () => { |
|
|
|
|
|
|
|
// close 'Team & Auth' tab
|
|
|
|
|
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' }); |
|
|
|
|
|
|
|
await dashboard.treeView.openTable({ title: 'numberBased' }); |
|
|
|
|
|
|
|
const dataType = 'Percent'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const filterList = [ |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '=', |
|
|
|
|
|
|
|
value: '33', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === 33).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '!=', |
|
|
|
|
|
|
|
value: '33', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== 33).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
value: '', |
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType] === '').length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: 'is not null', |
|
|
|
op: 'is not empty', |
|
|
|
value: '', |
|
|
|
value: '', |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== '').length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: 'is blank', |
|
|
|
op: 'is blank', |
|
|
|
value: '', |
|
|
|
value: '', |
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType] === '' || r[dataType] === null).length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: 'is not blank', |
|
|
|
op: 'is not blank', |
|
|
|
value: '', |
|
|
|
value: '', |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== '' && r[dataType] !== null).length, |
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>', |
|
|
|
|
|
|
|
value: '44', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] > 44 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>=', |
|
|
|
|
|
|
|
value: '44', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] >= 44 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '<', |
|
|
|
op: 'is like', |
|
|
|
value: '44', |
|
|
|
value: isLikeString, |
|
|
|
rowCount: records.list.filter(r => r[dataType] < 44 && r[dataType] != null).length, |
|
|
|
rowCount: records.list.filter(r => r[dataType]?.includes(isLikeString)).length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '<=', |
|
|
|
op: 'is not like', |
|
|
|
value: '44', |
|
|
|
value: isLikeString, |
|
|
|
rowCount: records.list.filter(r => r[dataType] <= 44 && r[dataType] != null).length, |
|
|
|
rowCount: records.list.filter(r => !r[dataType]?.includes(isLikeString)).length, |
|
|
|
}, |
|
|
|
}, |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < filterList.length; i++) { |
|
|
|
for (let i = 0; i < filterList.length; i++) { |
|
|
|
|
|
|
|
console.log(`${dataType} Filter: ${filterList[i].op} ${filterList[i].value}`); |
|
|
|
await verifyFilter({ |
|
|
|
await verifyFilter({ |
|
|
|
column: dataType, |
|
|
|
column: dataType, |
|
|
|
opType: filterList[i].op, |
|
|
|
opType: filterList[i].op, |
|
|
@ -351,144 +313,97 @@ test.describe('Filter Tests: Numerical', () => { |
|
|
|
result: { rowCount: filterList[i].rowCount }, |
|
|
|
result: { rowCount: filterList[i].rowCount }, |
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
test('Filter: Currency', async () => { |
|
|
|
test.beforeEach(async ({ page }) => { |
|
|
|
// close 'Team & Auth' tab
|
|
|
|
context = await setup({ page }); |
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' }); |
|
|
|
dashboard = new DashboardPage(page, context.project); |
|
|
|
await dashboard.treeView.openTable({ title: 'numberBased' }); |
|
|
|
toolbar = dashboard.grid.toolbar; |
|
|
|
const dataType = 'Currency'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const filterList = [ |
|
|
|
api = new Api({ |
|
|
|
{ |
|
|
|
baseURL: `http://localhost:8080/`, |
|
|
|
op: '=', |
|
|
|
headers: { |
|
|
|
value: '33.3', |
|
|
|
'xc-auth': context.token, |
|
|
|
rowCount: records.list.filter(r => r[dataType] === 33.3).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '!=', |
|
|
|
|
|
|
|
value: '33.3', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== 33.3).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
}, |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const columns = [ |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: 'is blank', |
|
|
|
column_name: 'Id', |
|
|
|
value: '', |
|
|
|
title: 'Id', |
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
uidt: UITypes.ID, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: 'is not blank', |
|
|
|
column_name: 'SingleLineText', |
|
|
|
value: '', |
|
|
|
title: 'SingleLineText', |
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
uidt: UITypes.SingleLineText, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '>', |
|
|
|
column_name: 'MultiLineText', |
|
|
|
value: '44.26', |
|
|
|
title: 'MultiLineText', |
|
|
|
rowCount: records.list.filter(r => r[dataType] > 44.26 && r[dataType] != null).length, |
|
|
|
uidt: UITypes.LongText, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '>=', |
|
|
|
column_name: 'Email', |
|
|
|
value: '44.26', |
|
|
|
title: 'Email', |
|
|
|
rowCount: records.list.filter(r => r[dataType] >= 44.26 && r[dataType] != null).length, |
|
|
|
uidt: UITypes.Email, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '<', |
|
|
|
column_name: 'PhoneNumber', |
|
|
|
value: '44.26', |
|
|
|
title: 'PhoneNumber', |
|
|
|
rowCount: records.list.filter(r => r[dataType] < 44.26 && r[dataType] != null).length, |
|
|
|
uidt: UITypes.PhoneNumber, |
|
|
|
}, |
|
|
|
}, |
|
|
|
{ |
|
|
|
{ |
|
|
|
op: '<=', |
|
|
|
column_name: 'URL', |
|
|
|
value: '44.26', |
|
|
|
title: 'URL', |
|
|
|
rowCount: records.list.filter(r => r[dataType] <= 44.26 && r[dataType] != null).length, |
|
|
|
uidt: UITypes.URL, |
|
|
|
}, |
|
|
|
}, |
|
|
|
]; |
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < filterList.length; i++) { |
|
|
|
try { |
|
|
|
await verifyFilter({ |
|
|
|
const project = await api.project.read(context.project.id); |
|
|
|
column: dataType, |
|
|
|
const table = await api.base.tableCreate(context.project.id, project.bases?.[0].id, { |
|
|
|
opType: filterList[i].op, |
|
|
|
table_name: 'textBased', |
|
|
|
value: filterList[i].value, |
|
|
|
title: 'textBased', |
|
|
|
result: { rowCount: filterList[i].rowCount }, |
|
|
|
columns: columns, |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const rowAttributes = []; |
|
|
|
|
|
|
|
for (let i = 0; i < 400; i++) { |
|
|
|
|
|
|
|
const row = { |
|
|
|
|
|
|
|
SingleLineText: rowMixedValue(columns[1], i), |
|
|
|
|
|
|
|
MultiLineText: rowMixedValue(columns[2], i), |
|
|
|
|
|
|
|
Email: rowMixedValue(columns[3], i), |
|
|
|
|
|
|
|
PhoneNumber: rowMixedValue(columns[4], i), |
|
|
|
|
|
|
|
URL: rowMixedValue(columns[5], i), |
|
|
|
|
|
|
|
}; |
|
|
|
|
|
|
|
rowAttributes.push(row); |
|
|
|
|
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
await api.dbTableRow.bulkCreate('noco', context.project.id, table.id, rowAttributes); |
|
|
|
|
|
|
|
records = await api.dbTableRow.list('noco', context.project.id, table.id, { limit: 400 }); |
|
|
|
|
|
|
|
} catch (e) { |
|
|
|
|
|
|
|
console.error(e); |
|
|
|
} |
|
|
|
} |
|
|
|
}); |
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
test('Filter: Rating', async () => { |
|
|
|
test('Filter: Single Line Text', async () => { |
|
|
|
// close 'Team & Auth' tab
|
|
|
|
await textBasedFilterTest('SingleLineText', 'Afghanistan', 'Au'); |
|
|
|
await dashboard.closeTab({ title: 'Team & Auth' }); |
|
|
|
}); |
|
|
|
await dashboard.treeView.openTable({ title: 'numberBased' }); |
|
|
|
|
|
|
|
const dataType = 'Rating'; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
const filterList = [ |
|
|
|
test('Filter: Long Text', async () => { |
|
|
|
{ |
|
|
|
await textBasedFilterTest('MultiLineText', 'Aberdeen, United Kingdom', 'abad'); |
|
|
|
op: '=', |
|
|
|
}); |
|
|
|
value: '3', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === 3).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '!=', |
|
|
|
|
|
|
|
value: '3', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== 3).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not null', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is blank', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] === null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: 'is not blank', |
|
|
|
|
|
|
|
value: '', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] !== null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>', |
|
|
|
|
|
|
|
value: '2', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] > 2 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '>=', |
|
|
|
|
|
|
|
value: '2', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] >= 2 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<', |
|
|
|
|
|
|
|
value: '2', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] < 2 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
{ |
|
|
|
|
|
|
|
op: '<=', |
|
|
|
|
|
|
|
value: '2', |
|
|
|
|
|
|
|
rowCount: records.list.filter(r => r[dataType] <= 2 && r[dataType] != null).length, |
|
|
|
|
|
|
|
}, |
|
|
|
|
|
|
|
]; |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
for (let i = 0; i < filterList.length; i++) { |
|
|
|
test('Filter: Email', async () => { |
|
|
|
await verifyFilter({ |
|
|
|
await textBasedFilterTest('Email', 'leota@hotmail.com', 'cox.net'); |
|
|
|
column: dataType, |
|
|
|
|
|
|
|
opType: filterList[i].op, |
|
|
|
|
|
|
|
value: filterList[i].value, |
|
|
|
|
|
|
|
result: { rowCount: filterList[i].rowCount }, |
|
|
|
|
|
|
|
dataType: dataType, |
|
|
|
|
|
|
|
}); |
|
|
|
}); |
|
|
|
} |
|
|
|
|
|
|
|
|
|
|
|
test('Filter: PhoneNumber', async () => { |
|
|
|
|
|
|
|
await textBasedFilterTest('PhoneNumber', '504-621-8927', '504'); |
|
|
|
|
|
|
|
}); |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
test('Filter: URL', async () => { |
|
|
|
|
|
|
|
await textBasedFilterTest('URL', 'https://www.youtube.com', 'e.com'); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|
}); |
|
|
|