2022-05-30 17:10:44 +00:00
|
|
|
import { module, test } from 'qunit';
|
|
|
|
import { setupTest } from 'ember-qunit';
|
|
|
|
|
|
|
|
module('Unit | Model | variable', function (hooks) {
|
|
|
|
setupTest(hooks);
|
|
|
|
|
|
|
|
test('it has basic fetchable properties', function (assert) {
|
|
|
|
let store = this.owner.lookup('service:store');
|
|
|
|
|
|
|
|
let model = store.createRecord('variable');
|
|
|
|
model.setProperties({
|
|
|
|
path: 'my/fun/path',
|
|
|
|
namespace: 'default',
|
|
|
|
keyValues: [
|
|
|
|
{ key: 'foo', value: 'bar' },
|
|
|
|
{ key: 'myVar', value: 'myValue' },
|
|
|
|
],
|
|
|
|
});
|
|
|
|
assert.ok(model.path);
|
|
|
|
assert.equal(model.keyValues.length, 2);
|
|
|
|
});
|
|
|
|
|
|
|
|
test('it has a single keyValue by default', function (assert) {
|
|
|
|
let store = this.owner.lookup('service:store');
|
|
|
|
|
|
|
|
let model = store.createRecord('variable');
|
|
|
|
model.setProperties({
|
|
|
|
path: 'my/fun/path',
|
|
|
|
namespace: 'default',
|
|
|
|
});
|
|
|
|
assert.equal(model.keyValues.length, 1);
|
|
|
|
});
|
2022-06-21 19:49:35 +00:00
|
|
|
|
|
|
|
test('it correctly moves between keyValues and items', function (assert) {
|
|
|
|
let store = this.owner.lookup('service:store');
|
|
|
|
|
|
|
|
let model = store.createRecord('variable');
|
|
|
|
model.setProperties({
|
|
|
|
path: 'my/fun/path',
|
|
|
|
keyValues: [
|
|
|
|
{ key: 'foo', value: 'bar' },
|
|
|
|
{ key: 'myVar', value: 'myValue' },
|
|
|
|
],
|
|
|
|
});
|
|
|
|
assert.equal(model.keyValues.length, 2);
|
|
|
|
assert.equal(Object.entries(model.items)[0][0], 'foo');
|
|
|
|
assert.equal(Object.entries(model.items)[0][1], 'bar');
|
|
|
|
assert.equal(Object.entries(model.items)[1][0], 'myVar');
|
|
|
|
assert.equal(Object.entries(model.items)[1][1], 'myValue');
|
|
|
|
});
|
2022-05-30 17:10:44 +00:00
|
|
|
});
|