diff --git a/x-pack/plugins/reporting/server/lib/enqueue_job.ts b/x-pack/plugins/reporting/server/lib/enqueue_job.ts index 31960c782b7b9c..3e3aef92c55a3c 100644 --- a/x-pack/plugins/reporting/server/lib/enqueue_job.ts +++ b/x-pack/plugins/reporting/server/lib/enqueue_job.ts @@ -6,15 +6,14 @@ import { KibanaRequest, RequestHandlerContext } from 'src/core/server'; import { ReportingCore } from '../'; -import { AuthenticatedUser } from '../../../security/server'; -import { CreateJobBaseParams, CreateJobFn } from '../types'; +import { CreateJobBaseParams, CreateJobFn, ReportingUser } from '../types'; import { LevelLogger } from './'; import { Report } from './store'; export type EnqueueJobFn = ( exportTypeId: string, jobParams: CreateJobBaseParams, - user: AuthenticatedUser | null, + user: ReportingUser, context: RequestHandlerContext, request: KibanaRequest ) => Promise; @@ -28,13 +27,12 @@ export function enqueueJobFactory( return async function enqueueJob( exportTypeId: string, jobParams: CreateJobBaseParams, - user: AuthenticatedUser | null, + user: ReportingUser, context: RequestHandlerContext, request: KibanaRequest ) { type ScheduleTaskFnType = CreateJobFn; - const username: string | null = user ? user.username : null; const exportType = reporting.getExportTypesRegistry().getById(exportTypeId); if (exportType == null) { @@ -50,7 +48,7 @@ export function enqueueJobFactory( const payload = await scheduleTask(jobParams, context, request); // store the pending report, puts it in the Reporting Management UI table - const report = await store.addReport(exportType.jobType, username, payload); + const report = await store.addReport(exportType.jobType, user, payload); logger.info(`Scheduled ${exportType.name} report: ${report._id}`); diff --git a/x-pack/plugins/reporting/server/lib/store/report.ts b/x-pack/plugins/reporting/server/lib/store/report.ts index 5ff71ae7a71824..5c9b9ced7cce75 100644 --- a/x-pack/plugins/reporting/server/lib/store/report.ts +++ b/x-pack/plugins/reporting/server/lib/store/report.ts @@ -18,7 +18,7 @@ interface ReportingDocument { _seq_no: unknown; _primary_term: unknown; jobtype: string; - created_by: string | null; + created_by: string | false; payload: { headers: string; // encrypted headers objectType: string; @@ -53,7 +53,7 @@ export class Report implements Partial { public readonly jobtype: string; public readonly created_at?: string; - public readonly created_by?: string | null; + public readonly created_by?: string | false; public readonly payload: { headers: string; // encrypted headers objectType: string; diff --git a/x-pack/plugins/reporting/server/lib/store/store.test.ts b/x-pack/plugins/reporting/server/lib/store/store.test.ts index c66e2dd7742c4f..e6c4eb73464609 100644 --- a/x-pack/plugins/reporting/server/lib/store/store.test.ts +++ b/x-pack/plugins/reporting/server/lib/store/store.test.ts @@ -53,7 +53,9 @@ describe('ReportingStore', () => { headers: 'rp_headers_1', objectType: 'testOt', }; - await expect(store.addReport(reportType, 'username1', reportPayload)).resolves.toMatchObject({ + await expect( + store.addReport(reportType, { username: 'username1' }, reportPayload) + ).resolves.toMatchObject({ _primary_term: undefined, _seq_no: undefined, attempts: 0, @@ -84,9 +86,9 @@ describe('ReportingStore', () => { headers: 'rp_headers_2', objectType: 'testOt', }; - expect(store.addReport(reportType, 'user1', reportPayload)).rejects.toMatchInlineSnapshot( - `[Error: Invalid index interval: centurially]` - ); + expect( + store.addReport(reportType, { username: 'user1' }, reportPayload) + ).rejects.toMatchInlineSnapshot(`[Error: Invalid index interval: centurially]`); }); it('handles error creating the index', async () => { @@ -102,7 +104,7 @@ describe('ReportingStore', () => { objectType: 'testOt', }; await expect( - store.addReport(reportType, 'user1', reportPayload) + store.addReport(reportType, { username: 'user1' }, reportPayload) ).rejects.toMatchInlineSnapshot(`[Error: horrible error]`); }); @@ -125,7 +127,7 @@ describe('ReportingStore', () => { objectType: 'testOt', }; await expect( - store.addReport(reportType, 'user1', reportPayload) + store.addReport(reportType, { username: 'user1' }, reportPayload) ).rejects.toMatchInlineSnapshot(`[Error: devastating error]`); }); @@ -143,7 +145,9 @@ describe('ReportingStore', () => { headers: 'rp_headers_5', objectType: 'testOt', }; - await expect(store.addReport(reportType, 'user1', reportPayload)).resolves.toMatchObject({ + await expect( + store.addReport(reportType, { username: 'user1' }, reportPayload) + ).resolves.toMatchObject({ _primary_term: undefined, _seq_no: undefined, attempts: 0, @@ -160,7 +164,7 @@ describe('ReportingStore', () => { }); }); - it('allows username string to be `null`', async () => { + it('allows username string to be `false`', async () => { // setup callClusterStub.withArgs('indices.exists').resolves(false); callClusterStub @@ -174,13 +178,13 @@ describe('ReportingStore', () => { headers: 'rp_test_headers', objectType: 'testOt', }; - await expect(store.addReport(reportType, null, reportPayload)).resolves.toMatchObject({ + await expect(store.addReport(reportType, false, reportPayload)).resolves.toMatchObject({ _primary_term: undefined, _seq_no: undefined, attempts: 0, browser_type: undefined, completed_at: undefined, - created_by: null, + created_by: false, jobtype: 'unknowntype', max_attempts: undefined, payload: {}, diff --git a/x-pack/plugins/reporting/server/lib/store/store.ts b/x-pack/plugins/reporting/server/lib/store/store.ts index 12cff0e973ed62..88f6fa418a1b35 100644 --- a/x-pack/plugins/reporting/server/lib/store/store.ts +++ b/x-pack/plugins/reporting/server/lib/store/store.ts @@ -7,7 +7,11 @@ import { ElasticsearchServiceSetup } from 'src/core/server'; import { LevelLogger, statuses } from '../'; import { ReportingCore } from '../../'; -import { CreateJobBaseParams, CreateJobBaseParamsEncryptedFields } from '../../types'; +import { + CreateJobBaseParams, + CreateJobBaseParamsEncryptedFields, + ReportingUser, +} from '../../types'; import { indexTimestamp } from './index_timestamp'; import { mapping } from './mapping'; import { Report } from './report'; @@ -140,7 +144,7 @@ export class ReportingStore { public async addReport( type: string, - username: string | null, + user: ReportingUser, payload: CreateJobBaseParams & CreateJobBaseParamsEncryptedFields ): Promise { const timestamp = indexTimestamp(this.indexInterval); @@ -151,7 +155,7 @@ export class ReportingStore { _index: index, payload, jobtype: type, - created_by: username, + created_by: user ? user.username : false, ...this.jobSettings, }); diff --git a/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.test.ts b/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.test.ts index f4591f8436bd2c..50780a577af02b 100644 --- a/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.test.ts +++ b/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.test.ts @@ -46,7 +46,7 @@ describe('authorized_user_pre_routing', function () { mockCore = await createMockReportingCore(mockReportingConfig); }); - it('should return from handler with a "null" user when security plugin is not found', async function () { + it('should return from handler with a "false" user when security plugin is not found', async function () { mockCore.getPluginSetupDeps = () => (({ // @ts-ignore @@ -58,7 +58,7 @@ describe('authorized_user_pre_routing', function () { let handlerCalled = false; authorizedUserPreRouting((user: unknown) => { - expect(user).toBe(null); // verify the user is a null value + expect(user).toBe(false); // verify the user is a false value handlerCalled = true; return Promise.resolve({ status: 200, options: {} }); })(getMockContext(), getMockRequest(), mockResponseFactory); @@ -66,7 +66,7 @@ describe('authorized_user_pre_routing', function () { expect(handlerCalled).toBe(true); }); - it('should return from handler with a "null" user when security is disabled', async function () { + it('should return from handler with a "false" user when security is disabled', async function () { mockCore.getPluginSetupDeps = () => (({ // @ts-ignore @@ -82,7 +82,7 @@ describe('authorized_user_pre_routing', function () { let handlerCalled = false; authorizedUserPreRouting((user: unknown) => { - expect(user).toBe(null); // verify the user is a null value + expect(user).toBe(false); // verify the user is a false value handlerCalled = true; return Promise.resolve({ status: 200, options: {} }); })(getMockContext(), getMockRequest(), mockResponseFactory); diff --git a/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.ts b/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.ts index e2f393aad57d23..4d57bc154444ee 100644 --- a/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.ts +++ b/x-pack/plugins/reporting/server/routes/lib/authorized_user_pre_routing.ts @@ -9,11 +9,11 @@ import { AuthenticatedUser } from '../../../../security/server'; import { ReportingCore } from '../../core'; import { getUserFactory } from './get_user'; -type ReportingUser = AuthenticatedUser | null; const superuserRole = 'superuser'; +type ReportingRequestUser = AuthenticatedUser | false; export type RequestHandlerUser = RequestHandler extends (...a: infer U) => infer R - ? (user: ReportingUser, ...a: U) => R + ? (user: ReportingRequestUser, ...a: U) => R : never; export const authorizedUserPreRoutingFactory = function authorizedUserPreRoutingFn( @@ -23,7 +23,7 @@ export const authorizedUserPreRoutingFactory = function authorizedUserPreRouting const getUser = getUserFactory(setupDeps.security); return (handler: RequestHandlerUser): RequestHandler => { return (context, req, res) => { - let user: ReportingUser = null; + let user: ReportingRequestUser = false; if (setupDeps.security && setupDeps.security.license.isEnabled()) { // find the authenticated user, or null if security is not enabled user = getUser(req); diff --git a/x-pack/plugins/reporting/server/routes/lib/get_user.ts b/x-pack/plugins/reporting/server/routes/lib/get_user.ts index fd56e8cfc28c77..ee6ad6ad7d6716 100644 --- a/x-pack/plugins/reporting/server/routes/lib/get_user.ts +++ b/x-pack/plugins/reporting/server/routes/lib/get_user.ts @@ -9,6 +9,6 @@ import { SecurityPluginSetup } from '../../../../security/server'; export function getUserFactory(security?: SecurityPluginSetup) { return (request: KibanaRequest) => { - return security?.authc.getCurrentUser(request) ?? null; + return security?.authc.getCurrentUser(request) ?? false; }; } diff --git a/x-pack/plugins/reporting/server/routes/lib/job_response_handler.ts b/x-pack/plugins/reporting/server/routes/lib/job_response_handler.ts index df346c8b9b832e..aec1eee0eee147 100644 --- a/x-pack/plugins/reporting/server/routes/lib/job_response_handler.ts +++ b/x-pack/plugins/reporting/server/routes/lib/job_response_handler.ts @@ -6,8 +6,8 @@ import { kibanaResponseFactory } from 'kibana/server'; import { ReportingCore } from '../../'; -import { AuthenticatedUser } from '../../../../security/server'; import { WHITELISTED_JOB_CONTENT_TYPES } from '../../../common/constants'; +import { ReportingUser } from '../../types'; import { getDocumentPayloadFactory } from './get_document_payload'; import { jobsQueryFactory } from './jobs_query'; @@ -27,7 +27,7 @@ export function downloadJobResponseHandlerFactory(reporting: ReportingCore) { return async function jobResponseHandler( res: typeof kibanaResponseFactory, validJobTypes: string[], - user: AuthenticatedUser | null, + user: ReportingUser, params: JobResponseHandlerParams, opts: JobResponseHandlerOpts = {} ) { @@ -71,7 +71,7 @@ export function deleteJobResponseHandlerFactory(reporting: ReportingCore) { return async function deleteJobResponseHander( res: typeof kibanaResponseFactory, validJobTypes: string[], - user: AuthenticatedUser | null, + user: ReportingUser, params: JobResponseHandlerParams ) { const { docId } = params; diff --git a/x-pack/plugins/reporting/server/routes/lib/jobs_query.ts b/x-pack/plugins/reporting/server/routes/lib/jobs_query.ts index f3955b4871b314..b01c880abe8205 100644 --- a/x-pack/plugins/reporting/server/routes/lib/jobs_query.ts +++ b/x-pack/plugins/reporting/server/routes/lib/jobs_query.ts @@ -8,12 +8,12 @@ import { i18n } from '@kbn/i18n'; import { errors as elasticsearchErrors } from 'elasticsearch'; import { get } from 'lodash'; import { ReportingCore } from '../../'; -import { AuthenticatedUser } from '../../../../security/server'; -import { JobSource } from '../../types'; +import { JobSource, ReportingUser } from '../../types'; const esErrors = elasticsearchErrors as Record; const defaultSize = 10; +// TODO: use SearchRequest from elasticsearch-client interface QueryBody { size?: number; from?: number; @@ -35,11 +35,12 @@ interface GetOpts { includeContent?: boolean; } +// TODO: use SearchResult from elasticsearch-client interface CountAggResult { count: number; } -const getUsername = (user: AuthenticatedUser | null) => (user ? user.username : false); +const getUsername = (user: ReportingUser) => (user ? user.username : false); export function jobsQueryFactory(reportingCore: ReportingCore) { const { elasticsearch } = reportingCore.getPluginSetupDeps(); @@ -80,7 +81,7 @@ export function jobsQueryFactory(reportingCore: ReportingCore) { return { list( jobTypes: string[], - user: AuthenticatedUser | null, + user: ReportingUser, page = 0, size = defaultSize, jobIds: string[] | null @@ -109,7 +110,7 @@ export function jobsQueryFactory(reportingCore: ReportingCore) { return getHits(execQuery('search', body)); }, - count(jobTypes: string[], user: AuthenticatedUser | null) { + count(jobTypes: string[], user: ReportingUser) { const username = getUsername(user); const body: QueryBody = { query: { @@ -129,11 +130,7 @@ export function jobsQueryFactory(reportingCore: ReportingCore) { }); }, - get( - user: AuthenticatedUser | null, - id: string, - opts: GetOpts = {} - ): Promise | void> { + get(user: ReportingUser, id: string, opts: GetOpts = {}): Promise | void> { if (!id) return Promise.resolve(); const username = getUsername(user); diff --git a/x-pack/plugins/reporting/server/routes/types.d.ts b/x-pack/plugins/reporting/server/routes/types.d.ts index c92c9fb7eef749..ab1dd841bbbc22 100644 --- a/x-pack/plugins/reporting/server/routes/types.d.ts +++ b/x-pack/plugins/reporting/server/routes/types.d.ts @@ -5,11 +5,10 @@ */ import { KibanaRequest, KibanaResponseFactory, RequestHandlerContext } from 'src/core/server'; -import { AuthenticatedUser } from '../../../security/server'; -import { CreateJobBaseParams, ScheduledTaskParams } from '../types'; +import { CreateJobBaseParams, ReportingUser, ScheduledTaskParams } from '../types'; export type HandlerFunction = ( - user: AuthenticatedUser | null, + user: ReportingUser, exportType: string, jobParams: CreateJobBaseParams, context: RequestHandlerContext, diff --git a/x-pack/plugins/reporting/server/types.ts b/x-pack/plugins/reporting/server/types.ts index c9649cb6e558b2..542c9cdb3f6774 100644 --- a/x-pack/plugins/reporting/server/types.ts +++ b/x-pack/plugins/reporting/server/types.ts @@ -11,7 +11,7 @@ import { DataPluginStart } from 'src/plugins/data/server/plugin'; import { UsageCollectionSetup } from 'src/plugins/usage_collection/server'; import { CancellationToken } from '../../../plugins/reporting/common'; import { LicensingPluginSetup } from '../../licensing/server'; -import { SecurityPluginSetup } from '../../security/server'; +import { AuthenticatedUser, SecurityPluginSetup } from '../../security/server'; import { JobStatus } from '../common/types'; import { ReportingConfigType } from './config'; import { ReportingCore } from './core'; @@ -164,6 +164,8 @@ export type ReportingSetup = object; * Internal Types */ +export type ReportingUser = { username: AuthenticatedUser['username'] } | false; + export type CaptureConfig = ReportingConfigType['capture']; export type ScrollConfig = ReportingConfigType['csv']['scroll']; diff --git a/x-pack/scripts/functional_tests.js b/x-pack/scripts/functional_tests.js index a6550bef46d4a1..f79e2c3b34497d 100644 --- a/x-pack/scripts/functional_tests.js +++ b/x-pack/scripts/functional_tests.js @@ -58,7 +58,8 @@ const onlyNotInCoverageTests = [ require.resolve('../test/licensing_plugin/config.public.ts'), require.resolve('../test/licensing_plugin/config.legacy.ts'), require.resolve('../test/endpoint_api_integration_no_ingest/config.ts'), - require.resolve('../test/reporting_api_integration/config.js'), + require.resolve('../test/reporting_api_integration/reporting_and_security.config.ts'), + require.resolve('../test/reporting_api_integration/reporting_without_security.config.ts'), require.resolve('../test/security_solution_endpoint_api_int/config.ts'), require.resolve('../test/ingest_manager_api_integration/config.ts'), ]; diff --git a/x-pack/test/reporting_api_integration/config.js b/x-pack/test/reporting_api_integration/reporting_and_security.config.ts similarity index 90% rename from x-pack/test/reporting_api_integration/config.js rename to x-pack/test/reporting_api_integration/reporting_and_security.config.ts index 930c90da5637c8..dc5aaba69604f5 100644 --- a/x-pack/test/reporting_api_integration/config.js +++ b/x-pack/test/reporting_api_integration/reporting_and_security.config.ts @@ -5,10 +5,11 @@ */ import { esTestConfig, kbnTestConfig, kibanaServerTestUser } from '@kbn/test'; +import { FtrConfigProviderContext } from '@kbn/test/types/ftr'; import { format as formatUrl } from 'url'; import { ReportingAPIProvider } from './services'; -export default async function ({ readConfigFile }) { +export default async function ({ readConfigFile }: FtrConfigProviderContext) { const apiConfig = await readConfigFile(require.resolve('../api_integration/config')); const functionalConfig = await readConfigFile(require.resolve('../functional/config')); // Reporting API tests need a fully working UI @@ -23,7 +24,7 @@ export default async function ({ readConfigFile }) { return { servers: apiConfig.get('servers'), junit: { reportName: 'X-Pack Reporting API Integration Tests' }, - testFiles: [require.resolve('./reporting')], + testFiles: [require.resolve('./reporting_and_security')], services: { ...apiConfig.get('services'), reportingAPI: ReportingAPIProvider, diff --git a/x-pack/test/reporting_api_integration/reporting/constants.ts b/x-pack/test/reporting_api_integration/reporting_and_security/constants.ts similarity index 100% rename from x-pack/test/reporting_api_integration/reporting/constants.ts rename to x-pack/test/reporting_api_integration/reporting_and_security/constants.ts diff --git a/x-pack/test/reporting_api_integration/reporting/csv_job_params.ts b/x-pack/test/reporting_api_integration/reporting_and_security/csv_job_params.ts similarity index 100% rename from x-pack/test/reporting_api_integration/reporting/csv_job_params.ts rename to x-pack/test/reporting_api_integration/reporting_and_security/csv_job_params.ts diff --git a/x-pack/test/reporting_api_integration/reporting/csv_saved_search.ts b/x-pack/test/reporting_api_integration/reporting_and_security/csv_saved_search.ts similarity index 100% rename from x-pack/test/reporting_api_integration/reporting/csv_saved_search.ts rename to x-pack/test/reporting_api_integration/reporting_and_security/csv_saved_search.ts diff --git a/x-pack/test/reporting_api_integration/reporting/index.ts b/x-pack/test/reporting_api_integration/reporting_and_security/index.ts similarity index 100% rename from x-pack/test/reporting_api_integration/reporting/index.ts rename to x-pack/test/reporting_api_integration/reporting_and_security/index.ts diff --git a/x-pack/test/reporting_api_integration/reporting/network_policy.ts b/x-pack/test/reporting_api_integration/reporting_and_security/network_policy.ts similarity index 100% rename from x-pack/test/reporting_api_integration/reporting/network_policy.ts rename to x-pack/test/reporting_api_integration/reporting_and_security/network_policy.ts diff --git a/x-pack/test/reporting_api_integration/reporting/usage.ts b/x-pack/test/reporting_api_integration/reporting_and_security/usage.ts similarity index 100% rename from x-pack/test/reporting_api_integration/reporting/usage.ts rename to x-pack/test/reporting_api_integration/reporting_and_security/usage.ts diff --git a/x-pack/test/reporting_api_integration/reporting_without_security.config.ts b/x-pack/test/reporting_api_integration/reporting_without_security.config.ts new file mode 100644 index 00000000000000..b040040fc51140 --- /dev/null +++ b/x-pack/test/reporting_api_integration/reporting_without_security.config.ts @@ -0,0 +1,45 @@ +/* + * 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 { esTestConfig, kbnTestConfig } from '@kbn/test'; +import { FtrConfigProviderContext } from '@kbn/test/types/ftr'; +import { format as formatUrl } from 'url'; +import { ReportingAPIProvider } from './services'; + +export default async function ({ readConfigFile }: FtrConfigProviderContext) { + const apiConfig = await readConfigFile(require.resolve('../api_integration/config')); + + return { + servers: apiConfig.get('servers'), + junit: { reportName: 'X-Pack Reporting Without Security API Integration Tests' }, + testFiles: [require.resolve('./reporting_without_security')], + services: { + ...apiConfig.get('services'), + reportingAPI: ReportingAPIProvider, + }, + esArchiver: apiConfig.get('esArchiver'), + esTestCluster: { + ...apiConfig.get('esTestCluster'), + serverArgs: [ + ...apiConfig.get('esTestCluster.serverArgs'), + 'node.name=UnsecuredClusterNode01', + 'xpack.security.enabled=false', + ], + }, + kbnTestServer: { + ...apiConfig.get('kbnTestServer'), + serverArgs: [ + `--elasticsearch.hosts=${formatUrl(esTestConfig.getUrlParts())}`, + `--logging.json=false`, + `--server.maxPayloadBytes=1679958`, + `--server.port=${kbnTestConfig.getPort()}`, + `--xpack.reporting.capture.maxAttempts=1`, + `--xpack.reporting.csv.maxSizeBytes=2850`, + `--xpack.security.enabled=false`, + ], + }, + }; +} diff --git a/x-pack/test/reporting_api_integration/reporting_without_security/index.ts b/x-pack/test/reporting_api_integration/reporting_without_security/index.ts new file mode 100644 index 00000000000000..09351a2c9907a2 --- /dev/null +++ b/x-pack/test/reporting_api_integration/reporting_without_security/index.ts @@ -0,0 +1,15 @@ +/* + * 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 { FtrProviderContext } from '../ftr_provider_context'; + +// eslint-disable-next-line import/no-default-export +export default function ({ loadTestFile }: FtrProviderContext) { + describe('Reporting APIs', function () { + this.tags('ciGroup2'); + loadTestFile(require.resolve('./job_apis')); + }); +} diff --git a/x-pack/test/reporting_api_integration/reporting_without_security/job_apis.ts b/x-pack/test/reporting_api_integration/reporting_without_security/job_apis.ts new file mode 100644 index 00000000000000..ab26f27076ebb6 --- /dev/null +++ b/x-pack/test/reporting_api_integration/reporting_without_security/job_apis.ts @@ -0,0 +1,126 @@ +/* + * 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 '@kbn/expect'; +import { forOwn } from 'lodash'; +import { JOB_PARAMS_RISON } from '../fixtures'; +import { FtrProviderContext } from '../ftr_provider_context'; + +// eslint-disable-next-line import/no-default-export +export default function ({ getService }: FtrProviderContext) { + const esArchiver = getService('esArchiver'); + const supertestNoAuth = getService('supertestWithoutAuth'); + const reportingAPI = getService('reportingAPI'); + + describe('Job Listing APIs, Without Security', () => { + before(async () => { + await esArchiver.load('reporting/logs'); + await esArchiver.load('logstash_functional'); + }); + + after(async () => { + await esArchiver.unload('reporting/logs'); + await esArchiver.unload('logstash_functional'); + }); + + afterEach(async () => { + await reportingAPI.deleteAllReports(); + }); + + it('Posted CSV job is visible in the job count', async () => { + const { status: resStatus, text: resText } = await supertestNoAuth + .post(`/api/reporting/generate/csv`) + .set('kbn-xsrf', 'xxx') + .send({ jobParams: JOB_PARAMS_RISON }); + + expect(resStatus).to.be(200); + + const { job: resJob } = JSON.parse(resText); + const expectedResJob: Record = { + attempts: 0, + created_by: false, + jobtype: 'csv', + max_attempts: 1, + priority: 10, + status: 'pending', + timeout: 120000, + browser_type: 'chromium', // TODO: remove this field from the API response + // TODO: remove the payload field from the api respones + }; + forOwn(expectedResJob, (value: any, key: string) => { + expect(resJob[key]).to.eql(value, key); + }); + + // call the job count api + const { text: countText } = await supertestNoAuth + .get(`/api/reporting/jobs/count`) + .set('kbn-xsrf', 'xxx'); + + const countResult = JSON.parse(countText); + expect(countResult).to.be(1); + }); + + it('Posted CSV job is visible in the status check', async () => { + const { status: resStatus, text: resText } = await supertestNoAuth + .post(`/api/reporting/generate/csv`) + .set('kbn-xsrf', 'xxx') + .send({ jobParams: JOB_PARAMS_RISON }); + + expect(resStatus).to.be(200); + + const { job: resJob } = JSON.parse(resText); + // call the single job listing api (status check) + const { text: listText } = await supertestNoAuth + .get(`/api/reporting/jobs/list?page=0&ids=${resJob.id}`) + .set('kbn-xsrf', 'xxx'); + + const listingJobs = JSON.parse(listText); + const expectedListJob: Record = { + attempts: 0, + created_by: false, + jobtype: 'csv', + timeout: 120000, + browser_type: 'chromium', + }; + forOwn(expectedListJob, (value: any, key: string) => { + expect(listingJobs[0]._source[key]).to.eql(value, key); + }); + + expect(listingJobs.length).to.be(1); + expect(listingJobs[0]._id).to.be(resJob.id); + }); + + it('Posted CSV job is visible in the first page of jobs listing', async () => { + const { status: resStatus, text: resText } = await supertestNoAuth + .post(`/api/reporting/generate/csv`) + .set('kbn-xsrf', 'xxx') + .send({ jobParams: JOB_PARAMS_RISON }); + + expect(resStatus).to.be(200); + + const { job: resJob } = JSON.parse(resText); + // call the ALL job listing api + const { text: listText } = await supertestNoAuth + .get(`/api/reporting/jobs/list?page=0`) + .set('kbn-xsrf', 'xxx'); + + const listingJobs = JSON.parse(listText); + const expectedListJob: Record = { + attempts: 0, + created_by: false, + jobtype: 'csv', + timeout: 120000, + browser_type: 'chromium', + }; + forOwn(expectedListJob, (value: any, key: string) => { + expect(listingJobs[0]._source[key]).to.eql(value, key); + }); + + expect(listingJobs.length).to.be(1); + expect(listingJobs[0]._id).to.be(resJob.id); + }); + }); +} diff --git a/x-pack/test/reporting_api_integration/services.ts b/x-pack/test/reporting_api_integration/services.ts index f98d8246fc01e6..e61e6483855af8 100644 --- a/x-pack/test/reporting_api_integration/services.ts +++ b/x-pack/test/reporting_api_integration/services.ts @@ -186,6 +186,7 @@ export function ReportingAPIProvider({ getService }: FtrProviderContext) { export const services = { ...xpackServices, + supertestWithoutAuth: apiIntegrationServices.supertestWithoutAuth, usageAPI: apiIntegrationServices.usageAPI, reportingAPI: ReportingAPIProvider, };