mirror of
https://github.com/hashicorp/vault.git
synced 2025-08-18 04:27:02 +02:00
* Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Adding explicit MPL license for sub-package. This directory and its subdirectories (packages) contain files licensed with the MPLv2 `LICENSE` file in this directory and are intentionally licensed separately from the BSL `LICENSE` file at the root of this repository. * Updating the license from MPL to Business Source License. Going forward, this project will be licensed under the Business Source License v1.1. Please see our blog post for more details at https://hashi.co/bsl-blog, FAQ at www.hashicorp.com/licensing-faq, and details of the license at www.hashicorp.com/bsl. * add missing license headers * Update copyright file headers to BUS-1.1 * Fix test that expected exact offset on hcl file --------- Co-authored-by: hashicorp-copywrite[bot] <110428419+hashicorp-copywrite[bot]@users.noreply.github.com> Co-authored-by: Sarah Thompson <sthompson@hashicorp.com> Co-authored-by: Brian Kassouf <bkassouf@hashicorp.com>
143 lines
4.6 KiB
JavaScript
143 lines
4.6 KiB
JavaScript
/**
|
|
* Copyright (c) HashiCorp, Inc.
|
|
* SPDX-License-Identifier: BUSL-1.1
|
|
*/
|
|
|
|
import { module, test } from 'qunit';
|
|
import sinon from 'sinon';
|
|
import { setupTest } from 'ember-qunit';
|
|
import { setupMirage } from 'ember-cli-mirage/test-support';
|
|
import { subMonths, fromUnixTime, addMonths } from 'date-fns';
|
|
import { parseAPITimestamp } from 'core/utils/date-formatters';
|
|
import timestamp from 'core/utils/timestamp';
|
|
|
|
module('Unit | Adapter | clients activity', function (hooks) {
|
|
setupTest(hooks);
|
|
setupMirage(hooks);
|
|
|
|
hooks.before(function () {
|
|
sinon.stub(timestamp, 'now').callsFake(() => new Date('2023-01-13T09:30:15'));
|
|
});
|
|
hooks.beforeEach(function () {
|
|
this.store = this.owner.lookup('service:store');
|
|
this.modelName = 'clients/activity';
|
|
this.startDate = subMonths(timestamp.now(), 6);
|
|
this.endDate = timestamp.now();
|
|
this.readableUnix = (unix) => parseAPITimestamp(fromUnixTime(unix).toISOString(), 'MMMM dd yyyy');
|
|
});
|
|
hooks.after(function () {
|
|
timestamp.now.restore();
|
|
});
|
|
|
|
test('it does not format if both params are timestamp strings', async function (assert) {
|
|
assert.expect(1);
|
|
const queryParams = {
|
|
start_time: { timestamp: this.startDate.toISOString() },
|
|
end_time: { timestamp: this.endDate.toISOString() },
|
|
};
|
|
this.server.get('sys/internal/counters/activity', (schema, req) => {
|
|
assert.propEqual(req.queryParams, {
|
|
start_time: this.startDate.toISOString(),
|
|
end_time: this.endDate.toISOString(),
|
|
});
|
|
});
|
|
|
|
this.store.queryRecord(this.modelName, queryParams);
|
|
});
|
|
|
|
test('it formats start_time if only end_time is a timestamp string', async function (assert) {
|
|
assert.expect(2);
|
|
const twoMonthsAhead = addMonths(this.startDate, 2);
|
|
const month = twoMonthsAhead.getMonth();
|
|
const year = twoMonthsAhead.getFullYear();
|
|
const queryParams = {
|
|
start_time: {
|
|
monthIdx: month,
|
|
year,
|
|
},
|
|
end_time: {
|
|
timestamp: this.endDate.toISOString(),
|
|
},
|
|
};
|
|
|
|
this.server.get('sys/internal/counters/activity', (schema, req) => {
|
|
const { start_time, end_time } = req.queryParams;
|
|
const readableStart = this.readableUnix(start_time);
|
|
assert.strictEqual(
|
|
readableStart,
|
|
`September 01 2022`,
|
|
`formatted unix start time is the first of the month: ${readableStart}`
|
|
);
|
|
assert.strictEqual(end_time, this.endDate.toISOString(), 'end time is a timestamp string');
|
|
});
|
|
this.store.queryRecord(this.modelName, queryParams);
|
|
});
|
|
|
|
test('it formats end_time only if only start_time is a timestamp string', async function (assert) {
|
|
assert.expect(2);
|
|
const twoMothsAgo = subMonths(this.endDate, 2);
|
|
const endMonth = twoMothsAgo.getMonth();
|
|
const year = twoMothsAgo.getFullYear();
|
|
const queryParams = {
|
|
start_time: {
|
|
timestamp: this.startDate.toISOString(),
|
|
},
|
|
end_time: {
|
|
monthIdx: endMonth,
|
|
year,
|
|
},
|
|
};
|
|
|
|
this.server.get('sys/internal/counters/activity', (schema, req) => {
|
|
const { start_time, end_time } = req.queryParams;
|
|
const readableEnd = this.readableUnix(end_time);
|
|
assert.strictEqual(start_time, this.startDate.toISOString(), 'start time is a timestamp string');
|
|
assert.strictEqual(
|
|
readableEnd,
|
|
`November 30 2022`,
|
|
`formatted unix end time is the last day of the month: ${readableEnd}`
|
|
);
|
|
});
|
|
|
|
this.store.queryRecord(this.modelName, queryParams);
|
|
});
|
|
|
|
test('it formats both params if neither are a timestamp', async function (assert) {
|
|
assert.expect(2);
|
|
const startDate = subMonths(this.startDate, 2);
|
|
const endDate = addMonths(this.endDate, 2);
|
|
const startMonth = startDate.getMonth();
|
|
const startYear = startDate.getFullYear();
|
|
const endMonth = endDate.getMonth();
|
|
const endYear = endDate.getFullYear();
|
|
const queryParams = {
|
|
start_time: {
|
|
monthIdx: startMonth,
|
|
year: startYear,
|
|
},
|
|
end_time: {
|
|
monthIdx: endMonth,
|
|
year: endYear,
|
|
},
|
|
};
|
|
|
|
this.server.get('sys/internal/counters/activity', (schema, req) => {
|
|
const { start_time, end_time } = req.queryParams;
|
|
const readableEnd = this.readableUnix(end_time);
|
|
const readableStart = this.readableUnix(start_time);
|
|
assert.strictEqual(
|
|
readableStart,
|
|
`May 01 2022`,
|
|
`formatted unix start time is the first of the month: ${readableStart}`
|
|
);
|
|
assert.strictEqual(
|
|
readableEnd,
|
|
`March 31 2023`,
|
|
`formatted unix end time is the last day of the month: ${readableEnd}`
|
|
);
|
|
});
|
|
|
|
this.store.queryRecord(this.modelName, queryParams);
|
|
});
|
|
});
|