open-vault/ui/tests/unit/machines/replication-machine-test.js
Hamid Ghaf 27bb03bbc0
adding copyright header (#19555)
* adding copyright header

* fix fmt and a test
2023-03-15 09:00:52 -07:00

42 lines
1.3 KiB
JavaScript

/**
* Copyright (c) HashiCorp, Inc.
* SPDX-License-Identifier: MPL-2.0
*/
import { module, test } from 'qunit';
import { Machine } from 'xstate';
import ReplicationMachineConfig from 'vault/machines/replication-machine';
module('Unit | Machine | replication-machine', function () {
const replicationMachine = Machine(ReplicationMachineConfig);
const testCases = [
{
currentState: replicationMachine.initialState,
event: 'ENABLEREPLICATION',
params: null,
expectedResults: {
value: 'details',
actions: [{ type: 'render', level: 'feature', component: 'wizard/replication-details' }],
},
},
{
currentState: 'details',
event: 'CONTINUE',
params: null,
expectedResults: {
value: 'complete',
actions: ['completeFeature'],
},
},
];
testCases.forEach((testCase) => {
test(`transition: ${testCase.event} for currentState ${testCase.currentState} and componentState ${testCase.params}`, function (assert) {
const result = replicationMachine.transition(testCase.currentState, testCase.event, testCase.params);
assert.strictEqual(result.value, testCase.expectedResults.value);
assert.deepEqual(result.actions, testCase.expectedResults.actions);
});
});
});