-
Notifications
You must be signed in to change notification settings - Fork 8.3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[Ingest Manager] Add route for package installation by upload (#77044)
* Add route to accept a direct package upload. * Only accept application/zip or application/gzip * Use better name for response containing only a message. * Add integration test for direct package upload.
- Loading branch information
Showing
9 changed files
with
113 additions
and
12 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
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
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
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
55 changes: 55 additions & 0 deletions
55
x-pack/test/ingest_manager_api_integration/apis/epm/install_by_upload.ts
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,55 @@ | ||
/* | ||
* 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 fs from 'fs'; | ||
import path from 'path'; | ||
import expect from '@kbn/expect'; | ||
|
||
import { FtrProviderContext } from '../../../api_integration/ftr_provider_context'; | ||
import { warnAndSkipTest } from '../../helpers'; | ||
|
||
export default function ({ getService }: FtrProviderContext) { | ||
const supertest = getService('supertest'); | ||
const dockerServers = getService('dockerServers'); | ||
const log = getService('log'); | ||
|
||
const testPkgArchiveTgz = path.join( | ||
path.dirname(__filename), | ||
'../fixtures/direct_upload_packages/apache_0.1.4.tar.gz' | ||
); | ||
const testPkgKey = 'apache-0.14'; | ||
const server = dockerServers.get('registry'); | ||
|
||
const deletePackage = async (pkgkey: string) => { | ||
await supertest.delete(`/api/ingest_manager/epm/packages/${pkgkey}`).set('kbn-xsrf', 'xxxx'); | ||
}; | ||
|
||
describe('installs packages from direct upload', async () => { | ||
after(async () => { | ||
if (server.enabled) { | ||
// remove the package just in case it being installed will affect other tests | ||
await deletePackage(testPkgKey); | ||
} | ||
}); | ||
|
||
it('should install a tar archive correctly', async function () { | ||
if (server.enabled) { | ||
const buf = fs.readFileSync(testPkgArchiveTgz); | ||
const res = await supertest | ||
.post(`/api/ingest_manager/epm/packages`) | ||
.set('kbn-xsrf', 'xxxx') | ||
.type('application/gzip') | ||
.send(buf) | ||
.expect(200); | ||
expect(res.body.response).to.equal( | ||
'package upload was received ok, but not installed (not implemented yet)' | ||
); | ||
} else { | ||
warnAndSkipTest(this, log); | ||
} | ||
}); | ||
}); | ||
} |
Binary file added
BIN
+568 KB
...t/ingest_manager_api_integration/apis/fixtures/direct_upload_packages/apache_0.1.4.tar.gz
Binary file not shown.