forked from elastic/kibana
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Discover] Migrate get_sort.js test from mocha to TypeScript (elastic…
…#56011) * Migrate get_sort.js test from mocha to jest and convert to TypeScript * Add jest test
- Loading branch information
Showing
8 changed files
with
177 additions
and
206 deletions.
There are no files selected for viewing
104 changes: 0 additions & 104 deletions
104
src/legacy/core_plugins/kibana/public/discover/__tests__/doc_table/lib/get_sort.js
This file was deleted.
Oops, something went wrong.
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
27 changes: 0 additions & 27 deletions
27
src/legacy/core_plugins/kibana/public/discover/np_ready/angular/doc_table/lib/get_sort.d.ts
This file was deleted.
Oops, something went wrong.
62 changes: 0 additions & 62 deletions
62
src/legacy/core_plugins/kibana/public/discover/np_ready/angular/doc_table/lib/get_sort.js
This file was deleted.
Oops, something went wrong.
91 changes: 91 additions & 0 deletions
91
...egacy/core_plugins/kibana/public/discover/np_ready/angular/doc_table/lib/get_sort.test.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,91 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you 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 { getSort, getSortArray } from './get_sort'; | ||
// @ts-ignore | ||
import FixturesStubbedLogstashIndexPatternProvider from 'fixtures/stubbed_logstash_index_pattern'; | ||
import { IndexPattern } from '../../../../kibana_services'; | ||
|
||
describe('docTable', function() { | ||
let indexPattern: IndexPattern; | ||
|
||
beforeEach(() => { | ||
indexPattern = FixturesStubbedLogstashIndexPatternProvider() as IndexPattern; | ||
}); | ||
|
||
describe('getSort function', function() { | ||
test('should be a function', function() { | ||
expect(typeof getSort === 'function').toBeTruthy(); | ||
}); | ||
|
||
test('should return an array of objects', function() { | ||
expect(getSort([['bytes', 'desc']], indexPattern)).toEqual([{ bytes: 'desc' }]); | ||
|
||
delete indexPattern.timeFieldName; | ||
expect(getSort([['bytes', 'desc']], indexPattern)).toEqual([{ bytes: 'desc' }]); | ||
}); | ||
|
||
test('should passthrough arrays of objects', () => { | ||
expect(getSort([{ bytes: 'desc' }], indexPattern)).toEqual([{ bytes: 'desc' }]); | ||
}); | ||
|
||
test('should return an empty array when passed an unsortable field', function() { | ||
expect(getSort([['non-sortable', 'asc']], indexPattern)).toEqual([]); | ||
expect(getSort([['lol_nope', 'asc']], indexPattern)).toEqual([]); | ||
|
||
delete indexPattern.timeFieldName; | ||
expect(getSort([['non-sortable', 'asc']], indexPattern)).toEqual([]); | ||
}); | ||
|
||
test('should return an empty array ', function() { | ||
expect(getSort([], indexPattern)).toEqual([]); | ||
expect(getSort([['foo', 'bar']], indexPattern)).toEqual([]); | ||
expect(getSort([{ foo: 'bar' }], indexPattern)).toEqual([]); | ||
}); | ||
}); | ||
|
||
describe('getSortArray function', function() { | ||
test('should have an array method', function() { | ||
expect(getSortArray).toBeInstanceOf(Function); | ||
}); | ||
|
||
test('should return an array of arrays for sortable fields', function() { | ||
expect(getSortArray([['bytes', 'desc']], indexPattern)).toEqual([['bytes', 'desc']]); | ||
}); | ||
|
||
test('should return an array of arrays from an array of elasticsearch sort objects', function() { | ||
expect(getSortArray([{ bytes: 'desc' }], indexPattern)).toEqual([['bytes', 'desc']]); | ||
}); | ||
|
||
test('should sort by an empty array when an unsortable field is given', function() { | ||
expect(getSortArray([{ 'non-sortable': 'asc' }], indexPattern)).toEqual([]); | ||
expect(getSortArray([{ lol_nope: 'asc' }], indexPattern)).toEqual([]); | ||
|
||
delete indexPattern.timeFieldName; | ||
expect(getSortArray([{ 'non-sortable': 'asc' }], indexPattern)).toEqual([]); | ||
}); | ||
|
||
test('should return an empty array when passed an empty sort array', () => { | ||
expect(getSortArray([], indexPattern)).toEqual([]); | ||
|
||
delete indexPattern.timeFieldName; | ||
expect(getSortArray([], indexPattern)).toEqual([]); | ||
}); | ||
}); | ||
}); |
71 changes: 71 additions & 0 deletions
71
src/legacy/core_plugins/kibana/public/discover/np_ready/angular/doc_table/lib/get_sort.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,71 @@ | ||
/* | ||
* Licensed to Elasticsearch B.V. under one or more contributor | ||
* license agreements. See the NOTICE file distributed with | ||
* this work for additional information regarding copyright | ||
* ownership. Elasticsearch B.V. licenses this file to you 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 _ from 'lodash'; | ||
import { IndexPattern } from '../../../../../../../../../plugins/data/public'; | ||
|
||
export type SortPairObj = Record<string, string>; | ||
export type SortPairArr = [string, string]; | ||
export type SortPair = SortPairArr | SortPairObj; | ||
export type SortInput = SortPair | SortPair[]; | ||
|
||
export function isSortable(fieldName: string, indexPattern: IndexPattern) { | ||
const field = indexPattern.getFieldByName(fieldName); | ||
return field && field.sortable; | ||
} | ||
|
||
function createSortObject( | ||
sortPair: SortInput, | ||
indexPattern: IndexPattern | ||
): SortPairObj | undefined { | ||
if ( | ||
Array.isArray(sortPair) && | ||
sortPair.length === 2 && | ||
isSortable(String(sortPair[0]), indexPattern) | ||
) { | ||
const [field, direction] = sortPair as SortPairArr; | ||
return { [field]: direction }; | ||
} else if (_.isPlainObject(sortPair) && isSortable(Object.keys(sortPair)[0], indexPattern)) { | ||
return sortPair as SortPairObj; | ||
} | ||
} | ||
|
||
/** | ||
* Take a sorting array and make it into an object | ||
* @param {array} sort two dimensional array [[fieldToSort, directionToSort]] | ||
* or an array of objects [{fieldToSort: directionToSort}] | ||
* @param {object} indexPattern used for determining default sort | ||
* @returns Array<{object}> an array of sort objects | ||
*/ | ||
export function getSort(sort: SortPair[], indexPattern: IndexPattern): SortPairObj[] { | ||
if (Array.isArray(sort)) { | ||
return sort | ||
.map((sortPair: SortPair) => createSortObject(sortPair, indexPattern)) | ||
.filter(sortPairObj => typeof sortPairObj === 'object') as SortPairObj[]; | ||
} | ||
return []; | ||
} | ||
|
||
/** | ||
* compared to getSort it doesn't return an array of objects, it returns an array of arrays | ||
* [[fieldToSort: directionToSort]] | ||
*/ | ||
export function getSortArray(sort: SortPair[], indexPattern: IndexPattern) { | ||
return getSort(sort, indexPattern).map(sortPair => Object.entries(sortPair).pop()); | ||
} |
Oops, something went wrong.