SymphonyElectron/spec/ttl-handler-spec.ts
Vishwas Shashidhar e9773721e4
chore: SDA-2799: format all files with prettier (#1181)
* format all files with prettier

* chore: format the problematic files

* chore: fix few more linting issues
2021-01-29 15:53:22 +05:30

30 lines
994 B
TypeScript

import * as ttlHandler from '../src/app/ttl-handler';
describe('ttl handler', () => {
beforeEach(() => {
jest.resetModules();
});
it('should return -1 for getExpiryTime', () => {
expect(ttlHandler.getExpiryTime()).toBeDefined();
});
it('should return true if build is expired', () => {
const expiryMock = jest.spyOn(ttlHandler, 'getExpiryTime');
expiryMock.mockImplementation(() => Date.now() - 10 * 24 * 60);
expect(ttlHandler.checkIfBuildExpired()).toBeTruthy();
});
it('should return false if build is valid', () => {
const expiryMock = jest.spyOn(ttlHandler, 'getExpiryTime');
expiryMock.mockImplementation(() => Date.now() + 10 * 24 * 60);
expect(ttlHandler.checkIfBuildExpired()).toBeFalsy();
});
it('should return false if ttl is not applicable', () => {
const expiryMock = jest.spyOn(ttlHandler, 'getExpiryTime');
expiryMock.mockImplementation(() => -1);
expect(ttlHandler.checkIfBuildExpired()).toBeFalsy();
});
});