mirror of
https://github.com/elastic/kibana.git
synced 2025-04-24 17:59:23 -04:00
* Visual builder: percentile ranks should allow multiple values (#33642) * Visual builder: percentile ranks should allow multiple values Fix: #33144 * Visual builder: percentile ranks should allow multiple values - fix translation Fix: #33144 * Visual builder: percentile ranks should allow multiple values - fix translation Fix: #33144 * Visual builder: percentile ranks should allow multiple values - add migration script * Visual builder: percentile ranks should allow multiple values - fix tests * Visual builder: percentile ranks should allow multiple values - add executeMigrations function * Visual builder: percentile ranks should allow multiple values - fix table view label * Visual builder: percentile ranks should allow multiple values - fix comments * Visual builder: percentile ranks should allow multiple values -add multi value row * Visual builder: percentile ranks should allow multiple values -add multi value row * Visual builder: percentile ranks should allow multiple values fix review comments * Visual builder: percentile ranks should allow multiple values fix review comments * [TSVB] Code cleanup - remove unused file (core_plugins/metrics/public/lib/create_new_panel.js) * x-pack/test/saved_object_api_integration/common/suites/find.ts Fix broken build (#34224)
206 lines
6.2 KiB
JavaScript
206 lines
6.2 KiB
JavaScript
/*
|
|
* 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 expect from '@kbn/expect';
|
|
|
|
export default function ({ getService }) {
|
|
const supertest = getService('supertest');
|
|
const es = getService('es');
|
|
const esArchiver = getService('esArchiver');
|
|
|
|
describe('find', () => {
|
|
describe('with kibana index', () => {
|
|
before(() => esArchiver.load('saved_objects/basic'));
|
|
after(() => esArchiver.unload('saved_objects/basic'));
|
|
|
|
it('should return 200 with individual responses', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=visualization&fields=title')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 1,
|
|
per_page: 20,
|
|
total: 1,
|
|
saved_objects: [
|
|
{
|
|
type: 'visualization',
|
|
id: 'dd7caf20-9efd-11e7-acb3-3dab96693fab',
|
|
version: 'WzIsMV0=',
|
|
attributes: {
|
|
'title': 'Count of requests'
|
|
},
|
|
migrationVersion: {
|
|
visualization: '7.1.0',
|
|
},
|
|
references: [
|
|
{
|
|
id: '91200a00-9efd-11e7-acb3-3dab96693fab',
|
|
name: 'kibanaSavedObjectMeta.searchSourceJSON.index',
|
|
type: 'index-pattern',
|
|
},
|
|
],
|
|
updated_at: '2017-09-21T18:51:23.794Z',
|
|
}
|
|
]
|
|
});
|
|
})
|
|
));
|
|
|
|
describe('unknown type', () => {
|
|
it('should return 200 with empty response', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=wigwags')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 1,
|
|
per_page: 20,
|
|
total: 0,
|
|
saved_objects: []
|
|
});
|
|
})
|
|
));
|
|
});
|
|
|
|
describe('page beyond total', () => {
|
|
it('should return 200 with empty response', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=visualization&page=100&per_page=100')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 100,
|
|
per_page: 100,
|
|
total: 1,
|
|
saved_objects: []
|
|
});
|
|
})
|
|
));
|
|
});
|
|
|
|
describe('unknown search field', () => {
|
|
it('should return 200 with empty response', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=url&search_fields=a')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 1,
|
|
per_page: 20,
|
|
total: 0,
|
|
saved_objects: []
|
|
});
|
|
})
|
|
));
|
|
});
|
|
});
|
|
|
|
describe('without kibana index', () => {
|
|
before(async () => (
|
|
// just in case the kibana server has recreated it
|
|
await es.indices.delete({
|
|
index: '.kibana',
|
|
ignore: [404],
|
|
})
|
|
));
|
|
|
|
it('should return 200 with empty response', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=visualization')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 1,
|
|
per_page: 20,
|
|
total: 0,
|
|
saved_objects: []
|
|
});
|
|
})
|
|
));
|
|
|
|
describe('unknown type', () => {
|
|
it('should return 200 with empty response', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=wigwags')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 1,
|
|
per_page: 20,
|
|
total: 0,
|
|
saved_objects: []
|
|
});
|
|
})
|
|
));
|
|
});
|
|
|
|
describe('missing type', () => {
|
|
it('should return 400', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find')
|
|
.expect(400)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
error: 'Bad Request',
|
|
message: 'child "type" fails because ["type" is required]',
|
|
statusCode: 400,
|
|
validation: {
|
|
keys: ['type'],
|
|
source: 'query'
|
|
}
|
|
});
|
|
})
|
|
));
|
|
});
|
|
|
|
describe('page beyond total', () => {
|
|
it('should return 200 with empty response', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=visualization&page=100&per_page=100')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 100,
|
|
per_page: 100,
|
|
total: 0,
|
|
saved_objects: []
|
|
});
|
|
})
|
|
));
|
|
});
|
|
|
|
describe('unknown search field', () => {
|
|
it('should return 200 with empty response', async () => (
|
|
await supertest
|
|
.get('/api/saved_objects/_find?type=url&search_fields=a')
|
|
.expect(200)
|
|
.then(resp => {
|
|
expect(resp.body).to.eql({
|
|
page: 1,
|
|
per_page: 20,
|
|
total: 0,
|
|
saved_objects: []
|
|
});
|
|
})
|
|
));
|
|
});
|
|
});
|
|
});
|
|
}
|