9974f32561
* ui: Test Coverage Reporting (#7027) * Serve up the /coverage folder whilst developing * Upgrade ember-cli-api-double now it supports passthrough per url * ui: make env into a service and use it where we need to be injectable * Give http/client a body method so we can use it on its own for testing * Add test helper for testing with and without nspaces enabled * Add two tests, one thay needs nspaces and one that doesn't * Keep cleaning up client/http, whilst figuring out a immutable bug * Convert tests to new return format ([actual, leftovers])
25 lines
718 B
JavaScript
25 lines
718 B
JavaScript
import Adapter from './http';
|
|
import { inject as service } from '@ember/service';
|
|
|
|
export const DATACENTER_QUERY_PARAM = 'dc';
|
|
export const NSPACE_QUERY_PARAM = 'ns';
|
|
export default Adapter.extend({
|
|
client: service('client/http'),
|
|
env: service('env'),
|
|
formatNspace: function(nspace) {
|
|
if (this.env.env('CONSUL_NSPACES_ENABLED')) {
|
|
return nspace !== '' ? { [NSPACE_QUERY_PARAM]: nspace } : undefined;
|
|
}
|
|
},
|
|
formatDatacenter: function(dc) {
|
|
return {
|
|
[DATACENTER_QUERY_PARAM]: dc,
|
|
};
|
|
},
|
|
// TODO: Deprecated, remove `request` usage from everywhere and replace with
|
|
// `HTTPAdapter.rpc`
|
|
request: function(req, resp, obj, modelName) {
|
|
return this.rpc(...arguments);
|
|
},
|
|
});
|