Skip to content

Commit

Permalink
Adding option to /api/features to ignore valid licenses
Browse files Browse the repository at this point in the history
This allow us to take advantage of the /api/featues endpoint within our
tests to disable all features, including those which are disabled by the
current license. The ui capabilities don't take into considerating the
license at the moment, so they're separate entirely separeate mechanisms
at this point in time.
  • Loading branch information
kobelb committed Jan 24, 2020
1 parent 3077534 commit 1014777
Show file tree
Hide file tree
Showing 4 changed files with 75 additions and 7 deletions.
65 changes: 62 additions & 3 deletions x-pack/plugins/features/server/routes/index.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -53,7 +53,7 @@ describe('GET /api/features', () => {

it('returns a list of available features', async () => {
const mockResponse = httpServerMock.createResponseFactory();
routeHandler(undefined as any, undefined as any, mockResponse);
routeHandler(undefined as any, { query: {} } as any, mockResponse);

expect(mockResponse.ok.mock.calls).toMatchInlineSnapshot(`
Array [
Expand Down Expand Up @@ -84,11 +84,11 @@ describe('GET /api/features', () => {
`);
});

it(`does not return features that arent allowed by current license`, async () => {
it(`by default does not return features that arent allowed by current license`, async () => {
currentLicenseLevel = 'basic';

const mockResponse = httpServerMock.createResponseFactory();
routeHandler(undefined as any, undefined as any, mockResponse);
routeHandler(undefined as any, { query: {} } as any, mockResponse);

expect(mockResponse.ok.mock.calls).toMatchInlineSnapshot(`
Array [
Expand All @@ -107,4 +107,63 @@ describe('GET /api/features', () => {
]
`);
});

it(`ignoreValidLicenses=false does not return features that arent allowed by current license`, async () => {
currentLicenseLevel = 'basic';

const mockResponse = httpServerMock.createResponseFactory();
routeHandler(undefined as any, { query: { ignoreValidLicenses: false } } as any, mockResponse);

expect(mockResponse.ok.mock.calls).toMatchInlineSnapshot(`
Array [
Array [
Object {
"body": Array [
Object {
"app": Array [],
"id": "feature_1",
"name": "Feature 1",
"privileges": Object {},
},
],
},
],
]
`);
});

it(`ignoreValidLicenses=true returns features that arent allowed by current license`, async () => {
currentLicenseLevel = 'basic';

const mockResponse = httpServerMock.createResponseFactory();
routeHandler(undefined as any, { query: { ignoreValidLicenses: true } } as any, mockResponse);

expect(mockResponse.ok.mock.calls).toMatchInlineSnapshot(`
Array [
Array [
Object {
"body": Array [
Object {
"app": Array [],
"id": "feature_1",
"name": "Feature 1",
"privileges": Object {},
},
Object {
"app": Array [
"bar-app",
],
"id": "licensed_feature",
"name": "Licensed Feature",
"privileges": Object {},
"validLicenses": Array [
"gold",
],
},
],
},
],
]
`);
});
});
8 changes: 7 additions & 1 deletion x-pack/plugins/features/server/routes/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,7 @@
* you may not use this file except in compliance with the Elastic License.
*/

import { schema } from '@kbn/config-schema';
import { IRouter } from '../../../../../src/core/server';
import { LegacyAPI } from '../plugin';
import { FeatureRegistry } from '../feature_registry';
Expand All @@ -19,13 +20,18 @@ export interface RouteDefinitionParams {

export function defineRoutes({ router, featureRegistry, getLegacyAPI }: RouteDefinitionParams) {
router.get(
{ path: '/api/features', options: { tags: ['access:features'] }, validate: false },
{
path: '/api/features',
options: { tags: ['access:features'] },
validate: { query: schema.object({ ignoreValidLicenses: schema.maybe(schema.boolean()) }) },
},
(context, request, response) => {
const allFeatures = featureRegistry.getAll();

return response.ok({
body: allFeatures.filter(
feature =>
request.query.ignoreValidLicenses === true ||
!feature.validLicenses ||
!feature.validLicenses.length ||
getLegacyAPI().xpackInfo.license.isOneOf(feature.validLicenses)
Expand Down
6 changes: 4 additions & 2 deletions x-pack/test/ui_capabilities/common/services/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,9 +22,11 @@ export class FeaturesService {
});
}

public async get(): Promise<Features> {
public async get({ ignoreValidLicenses } = { ignoreValidLicenses: false }): Promise<Features> {
this.log.debug('requesting /api/features to get the features');
const response = await this.axios.get('/api/features');
const response = await this.axios.get(
`/api/features${ignoreValidLicenses ? '?ignoreValidLicenses=true' : ''}`
);

if (response.status !== 200) {
throw new Error(
Expand Down
3 changes: 2 additions & 1 deletion x-pack/test/ui_capabilities/spaces_only/tests/index.ts
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@ export default function uiCapabilitesTests({ loadTestFile, getService }: FtrProv
this.tags('ciGroup9');

before(async () => {
const features = await featuresService.get();
// we're using a basic license, so if we want to disable all features, we have to ignore the valid licenses
const features = await featuresService.get({ ignoreValidLicenses: true });
for (const space of SpaceScenarios) {
const disabledFeatures =
space.disabledFeatures === '*' ? Object.keys(features) : space.disabledFeatures;
Expand Down

0 comments on commit 1014777

Please sign in to comment.