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.
[Infra UI] Test for metrics GraphQL endpoint (elastic#24179)
* [Infra UI] Test for metrics GraphQL endpoint * Moving apollo-boost to devDeps * Converting tests to typescript * Renaming infraops to infra
- Loading branch information
1 parent
c5e61c3
commit 3c15067
Showing
9 changed files
with
10,896 additions
and
0 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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
|
||
export default function ({ loadTestFile }) { | ||
describe('InfraOps GraphQL Endpoints', () => { | ||
loadTestFile(require.resolve('./metrics')); | ||
}); | ||
} |
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,77 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import expect from 'expect.js'; | ||
import { first, last } from 'lodash'; | ||
import { MetricsQuery } from '../../../../plugins/infra/common/graphql/types'; | ||
import { metricsQuery } from '../../../../plugins/infra/public/containers/metrics/metrics.gql_query'; | ||
import { KbnTestProvider } from './types'; | ||
|
||
const metricTests: KbnTestProvider = ({ getService }) => { | ||
const esArchiver = getService('esArchiver'); | ||
const client = getService('infraOpsGraphQLClient'); | ||
|
||
describe('metrics', () => { | ||
before(() => esArchiver.load('infra')); | ||
after(() => esArchiver.unload('infra')); | ||
|
||
it('should basically work', () => { | ||
return client | ||
.query<MetricsQuery.Query>({ | ||
query: metricsQuery, | ||
variables: { | ||
sourceId: 'default', | ||
metrics: ['hostCpuUsage'], | ||
timerange: { | ||
to: 1539806283952, | ||
from: 1539805341208, | ||
interval: '>=1m', | ||
}, | ||
nodeId: 'demo-stack-nginx-01', | ||
nodeType: 'host', | ||
}, | ||
}) | ||
.then(resp => { | ||
const { metrics } = resp.data.source; | ||
expect(metrics.length).to.equal(1); | ||
const metric = first(metrics); | ||
expect(metric).to.have.property('id', 'hostCpuUsage'); | ||
expect(metric).to.have.property('series'); | ||
const series = first(metric.series); | ||
expect(series).to.have.property('id', 'user'); | ||
expect(series).to.have.property('data'); | ||
const datapoint = last(series.data); | ||
expect(datapoint).to.have.property('timestamp', 1539806220000); | ||
expect(datapoint).to.have.property('value', 0.0065); | ||
}); | ||
}); | ||
|
||
it('should support multiple metrics', () => { | ||
return client | ||
.query<MetricsQuery.Query>({ | ||
query: metricsQuery, | ||
variables: { | ||
sourceId: 'default', | ||
metrics: ['hostCpuUsage', 'hostLoad'], | ||
timerange: { | ||
to: 1539806283952, | ||
from: 1539805341208, | ||
interval: '>=1m', | ||
}, | ||
nodeId: 'demo-stack-nginx-01', | ||
nodeType: 'host', | ||
}, | ||
}) | ||
.then(resp => { | ||
const { metrics } = resp.data.source; | ||
expect(metrics.length).to.equal(2); | ||
}); | ||
}); | ||
}); | ||
}; | ||
|
||
// tslint:disable-next-line no-default-export | ||
export default metricTests; |
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,21 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { InMemoryCache } from 'apollo-cache-inmemory'; | ||
import { ApolloClient } from 'apollo-client'; | ||
|
||
export interface EsArchiver { | ||
load(name: string): void; | ||
unload(name: string): void; | ||
} | ||
|
||
export interface KbnTestProviderOptions { | ||
getService(name: string): any; | ||
getService(name: 'esArchiver'): EsArchiver; | ||
getService(name: 'infraOpsGraphQLClient'): ApolloClient<InMemoryCache>; | ||
} | ||
|
||
export type KbnTestProvider = (options: KbnTestProviderOptions) => void; |
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
30 changes: 30 additions & 0 deletions
30
x-pack/test/api_integration/services/infraops_graphql_client.js
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,30 @@ | ||
/* | ||
* Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one | ||
* or more contributor license agreements. Licensed under the Elastic License; | ||
* you may not use this file except in compliance with the Elastic License. | ||
*/ | ||
|
||
import { format as formatUrl } from 'url'; | ||
import fetch from 'node-fetch'; | ||
import { InMemoryCache } from 'apollo-cache-inmemory'; | ||
import { ApolloClient } from 'apollo-client'; | ||
import { HttpLink } from 'apollo-link-http'; | ||
|
||
export function InfraOpsGraphQLProvider({ getService }) { | ||
const config = getService('config'); | ||
const kbnURL = formatUrl(config.get('servers.kibana')); | ||
|
||
return new ApolloClient({ | ||
cache: new InMemoryCache(), | ||
link: new HttpLink({ | ||
credentials: 'same-origin', | ||
fetch, | ||
headers: { | ||
'kbn-xsrf': 'xxx', | ||
}, | ||
uri: `${kbnURL}/api/infra/graphql`, | ||
}), | ||
}); | ||
|
||
} | ||
|
Binary file not shown.
Oops, something went wrong.