fa84808048
no issue Since `ember-moment@10.0` it's not been necessary to use the `ember-cli-moment-shim` package, with `moment` instead being usable directly via `ember-auto-import`. Getting rid of the shim package is necessary for compatibility with `embroider`, Ember's new build tooling. - dropped `ember-cli-moment-shim` dependency - added `moment-timezone` dependency and updated all imports to reflect the different package - worked around `ember-power-calendar` having `ember-cli-moment-shim` as a sub-dependency - added empty in-repo-addon `ember-power-calendar-moment` to avoid `ember-power-calendar` complaining about a missing package - added `ember-power-calendar-utils` in-repo-addon that is a copy of `ember-power-calendar-moment` but without the build-time renaming of the tree for better compatibility with embroider
86 lines
3.1 KiB
JavaScript
86 lines
3.1 KiB
JavaScript
import moment from 'moment-timezone';
|
|
import {describe, it} from 'mocha';
|
|
import {expect} from 'chai';
|
|
import {setupTest} from 'ember-mocha';
|
|
|
|
describe('Unit: Service: membersStats', function () {
|
|
setupTest();
|
|
|
|
let memberStatsService;
|
|
|
|
beforeEach(function () {
|
|
memberStatsService = this.owner.lookup('service:membersStats');
|
|
});
|
|
|
|
it('fills correct date and value for mrr data when no data points', function () {
|
|
const data = [];
|
|
const output = memberStatsService.fillDates(data);
|
|
const values = Object.values(output);
|
|
const keys = Object.keys(output);
|
|
|
|
expect(values[0]).to.equal(0);
|
|
expect(keys[0]).to.equal(moment().subtract(30, 'days').format('YYYY-MM-DD'));
|
|
expect(keys[keys.length - 1]).to.equal(moment().format('YYYY-MM-DD'));
|
|
expect(values[values.length - 1]).to.equal(0);
|
|
});
|
|
|
|
it('fills correct date and value for mrr data when no data point in range', function () {
|
|
const data = [
|
|
{
|
|
date: moment().subtract(40, 'days').format('YYYY-MM-DD'),
|
|
value: 10459
|
|
},
|
|
{
|
|
date: moment().subtract(31, 'days').format('YYYY-MM-DD'),
|
|
value: 14459
|
|
}
|
|
];
|
|
const output = memberStatsService.fillDates(data);
|
|
const values = Object.values(output);
|
|
const keys = Object.keys(output);
|
|
|
|
expect(values[0]).to.equal(14459);
|
|
expect(keys[0]).to.equal(moment().subtract(30, 'days').format('YYYY-MM-DD'));
|
|
expect(keys[keys.length - 1]).to.equal(moment().format('YYYY-MM-DD'));
|
|
expect(values[values.length - 1]).to.equal(14459);
|
|
});
|
|
|
|
it('fills correct date and value for mrr data when first data point outside range', function () {
|
|
const data = [
|
|
{
|
|
date: moment().subtract(31, 'days').format('YYYY-MM-DD'),
|
|
value: 14459
|
|
},
|
|
{
|
|
date: moment().subtract(10, 'days').format('YYYY-MM-DD'),
|
|
value: 98176
|
|
}
|
|
];
|
|
const output = memberStatsService.fillDates(data);
|
|
const values = Object.values(output);
|
|
const keys = Object.keys(output);
|
|
|
|
expect(values[0]).to.equal(14459);
|
|
expect(keys[0]).to.equal(moment().subtract(30, 'days').format('YYYY-MM-DD'));
|
|
expect(keys[keys.length - 1]).to.equal(moment().format('YYYY-MM-DD'));
|
|
expect(values[values.length - 1]).to.equal(98176);
|
|
});
|
|
|
|
it('fills correct date and value for mrr data when only 1 data point in range', function () {
|
|
const data = [
|
|
{
|
|
date: moment().subtract(29, 'days').format('YYYY-MM-DD'),
|
|
value: 14459
|
|
}
|
|
];
|
|
const output = memberStatsService.fillDates(data);
|
|
const values = Object.values(output);
|
|
const keys = Object.keys(output);
|
|
|
|
expect(values[0]).to.equal(14459);
|
|
expect(keys[0]).to.equal(moment().subtract(30, 'days').format('YYYY-MM-DD'));
|
|
expect(keys[keys.length - 1]).to.equal(moment().format('YYYY-MM-DD'));
|
|
expect(values[values.length - 1]).to.equal(14459);
|
|
});
|
|
});
|