mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-09 16:17:01 +02:00
39 lines
1.2 KiB
JavaScript
39 lines
1.2 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupRenderingTest } from 'ember-qunit';
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
|
import { render, triggerEvent, click, waitFor } from '@ember/test-helpers';
|
|
import hbs from 'htmlbars-inline-precompile';
|
|
import { GENERAL } from 'vault/tests/helpers/general-selectors';
|
|
|
|
module('Integration | Component | raft-storage-restore', function (hooks) {
|
|
setupRenderingTest(hooks);
|
|
setupMirage(hooks);
|
|
|
|
test('it should restore snapshot', async function (assert) {
|
|
assert.expect(2);
|
|
|
|
this.server.post('/sys/storage/raft/snapshot', () => {
|
|
assert.ok(true, 'Request made to restore snapshot');
|
|
return;
|
|
});
|
|
this.server.post('/sys/storage/raft/snapshot-force', () => {
|
|
assert.ok(true, 'Request made to force restore snapshot');
|
|
return;
|
|
});
|
|
|
|
await render(hbs`<RaftStorageRestore />`);
|
|
await triggerEvent('[data-test-file-input]', 'change', {
|
|
files: [new Blob(['Raft Snapshot'])],
|
|
});
|
|
await click(GENERAL.submitButton);
|
|
await waitFor('#force-restore');
|
|
await click('#force-restore');
|
|
await click(GENERAL.submitButton);
|
|
});
|
|
});
|