mirror of
https://github.com/hashicorp/vault.git
synced 2026-05-28 04:10:44 -04:00
* license: update headers to IBM Corp. * `make proto` * update offset because source file changed Signed-off-by: Ryan Cragun <me@ryan.ec> Co-authored-by: Ryan Cragun <me@ryan.ec>
19 lines
574 B
JavaScript
19 lines
574 B
JavaScript
/**
|
|
* Copyright IBM Corp. 2016, 2025
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import { setupTest } from 'ember-qunit';
|
|
import { validate } from 'uuid';
|
|
|
|
module('Unit | Serializer | cluster', function (hooks) {
|
|
setupTest(hooks);
|
|
|
|
test('it should generate ids for replication attributes', async function (assert) {
|
|
const serializer = this.owner.lookup('serializer:cluster');
|
|
const data = {};
|
|
serializer.setReplicationId(data);
|
|
assert.true(validate(data.id), 'UUID is generated for replication attribute');
|
|
});
|
|
});
|