4232561a38
ui: Repo layer integration tests for methods that touch the API Includes a `repo` test helper to make repetitive tasks easier, plus a injectable reporter for sending performance metrics to a centralized metrics system Also noticed somewhere in the ember models that I'd like to improve, but left for the moment to make sure I concentrate on one task at a time, more or less: The tests currently asserts against the existing JSON tree, which doesn't seem to be a very nice tree. The work at hand here is to refactor what is there, so test for the not nice tree to ensure we don't get any regression, and add a skipped test so I can come back here later
35 lines
958 B
JavaScript
35 lines
958 B
JavaScript
import Model from 'ember-data/model';
|
|
import attr from 'ember-data/attr';
|
|
import writable from 'consul-ui/utils/model/writable';
|
|
|
|
export const PRIMARY_KEY = 'uid';
|
|
export const SLUG_KEY = 'ID';
|
|
const model = Model.extend({
|
|
[PRIMARY_KEY]: attr('string'),
|
|
[SLUG_KEY]: attr('string'),
|
|
Description: attr('string'),
|
|
SourceNS: attr('string'),
|
|
SourceName: attr('string'),
|
|
DestinationName: attr('string'),
|
|
DestinationNS: attr('string'),
|
|
Precedence: attr('number'),
|
|
SourceType: attr('string', { defaultValue: 'consul' }),
|
|
Action: attr('string', { defaultValue: 'deny' }),
|
|
DefaultAddr: attr('string'),
|
|
DefaultPort: attr('number'),
|
|
Meta: attr(),
|
|
Datacenter: attr('string'),
|
|
CreatedAt: attr('date'),
|
|
UpdatedAt: attr('date'),
|
|
CreateIndex: attr('number'),
|
|
ModifyIndex: attr('number'),
|
|
});
|
|
export const ATTRS = writable(model, [
|
|
'Action',
|
|
'SourceName',
|
|
'DestinationName',
|
|
'SourceType',
|
|
'Description',
|
|
]);
|
|
export default model;
|