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
25 lines
626 B
JavaScript
25 lines
626 B
JavaScript
import Service, { inject as service } from '@ember/service';
|
|
import { get } from '@ember/object';
|
|
|
|
export default Service.extend({
|
|
store: service('store'),
|
|
findByNode: function(node, dc) {
|
|
return get(this, 'store').query('session', {
|
|
id: node,
|
|
dc: dc,
|
|
});
|
|
},
|
|
// TODO: Why Key? Probably should be findBySlug like the others
|
|
findByKey: function(slug, dc) {
|
|
return get(this, 'store').queryRecord('session', {
|
|
id: slug,
|
|
dc: dc,
|
|
});
|
|
},
|
|
remove: function(item) {
|
|
return item.destroyRecord().then(item => {
|
|
return get(this, 'store').unloadRecord(item);
|
|
});
|
|
},
|
|
});
|