1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798 |
- import 'reflect-metadata';
- import { assert } from 'chai';
- import { ServiceIdentifiers } from '../../../src/container/ServiceIdentifiers';
- import { ICryptUtils } from '../../../src/interfaces/utils/ICryptUtils';
- import { IInversifyContainerFacade } from '../../../src/interfaces/container/IInversifyContainerFacade';
- import { InversifyContainerFacade } from '../../../src/container/InversifyContainerFacade';
- import { swapLettersCase } from '../../helpers/swapLettersCase';
- describe('CryptUtils', () => {
- let cryptUtils: ICryptUtils;
- before(() => {
- const inversifyContainerFacade: IInversifyContainerFacade = new InversifyContainerFacade();
- inversifyContainerFacade.load('', '', {});
- cryptUtils = inversifyContainerFacade.get<ICryptUtils>(ServiceIdentifiers.ICryptUtils);
- });
- describe('btoa', () => {
- const expectedString: string = swapLettersCase('c3RyaW5n');
- let string: string;
- before(() => {
- string = cryptUtils.btoa('string');
- });
- it('should create a base-64 encoded string from a given string', () => {
- assert.equal(string, expectedString);
- });
- });
- describe('hideString', () => {
- const originalString: string = 'example.com';
- const hiddenStringLength: number = 30;
- let hiddenString: string,
- diffString: string;
- before(() => {
- [hiddenString, diffString] = cryptUtils.hideString(originalString, hiddenStringLength);
- });
- describe('hidden string length check', () => {
- let originalStringActualLength: number,
- hiddenStringActualLength: number;
- before(() => {
- originalStringActualLength = originalString.length;
- hiddenStringActualLength = hiddenString.length;
- });
- it('should create hidden string with length equal or bigger than given length', () => {
- assert.isTrue(hiddenStringActualLength > originalStringActualLength);
- });
- });
- describe('hidden string content', () => {
- let hiddenStringWithoutDiff: string;
- before(() => {
- const regExp: RegExp = new RegExp(`[${diffString}]`, 'g');
- hiddenStringWithoutDiff = hiddenString.replace(regExp, '');
- });
- it('should return a hidden string with the original string within', () => {
- assert.equal(hiddenStringWithoutDiff, originalString);
- });
- });
- });
- describe('rc4', () => {
- const string: string = 'test';
- const key: string = 'key';
- let encodedString: string,
- decodedString: string;
- before(() => {
- encodedString = cryptUtils.rc4(string, key);
- decodedString = cryptUtils.rc4(encodedString, key);
- });
- it('should encode string using the rc4 algorithm', () => {
- assert.notEqual(encodedString, string);
- });
- it('should encode and successfully decode string using the rc4 algorithm', () => {
- assert.equal(decodedString, string);
- });
- });
- });
|