/* * Copyright Elasticsearch B.V. and/or licensed to Elasticsearch B.V. under one * or more contributor license agreements. Licensed under the Elastic License * 2.0; you may not use this file except in compliance with the Elastic License * 2.0. */ import path from 'path'; import type { FtrConfigProviderContext } from '@kbn/test'; import { services } from './services'; export default async function ({ readConfigFile }: FtrConfigProviderContext) { const xPackAPITestsConfig = await readConfigFile(require.resolve('../api_integration/config.ts')); return { testFiles: [require.resolve('./tests')], servers: xPackAPITestsConfig.get('servers'), services, junit: { reportName: 'X-Pack Encrypted Saved Objects API Integration Tests', }, esTestCluster: xPackAPITestsConfig.get('esTestCluster'), kbnTestServer: { ...xPackAPITestsConfig.get('kbnTestServer'), serverArgs: [ ...xPackAPITestsConfig.get('kbnTestServer.serverArgs'), '--xpack.encryptedSavedObjects.encryptionKey="wuGNaIhoMpk5sO4UBxgr3NyW1sFcLgIf"', `--xpack.encryptedSavedObjects.keyRotation.decryptionOnlyKeys=${JSON.stringify([ 'a'.repeat(32), 'b'.repeat(32), ])}`, `--plugin-path=${path.resolve(__dirname, './plugins/api_consumer_plugin')}`, ], }, }; }