This commit upgrades TypeScript to the latest version 5.3 and introduces `verbatimModuleSyntax` in line with the official Vue guide recommendatinos (vuejs/docs#2592). By enforcing `import type` for type-only imports, this commit improves code clarity and supports tooling optimization, ensuring imports are only bundled when necessary for runtime. Changes: - Bump TypeScript to 5.3.3 across the project. - Adjust import statements to utilize `import type` where applicable, promoting cleaner and more efficient code.
77 lines
2.7 KiB
TypeScript
77 lines
2.7 KiB
TypeScript
import { describe, it, expect } from 'vitest';
|
|
import { EnvironmentVariablesStub } from '@tests/unit/shared/Stubs/EnvironmentVariablesStub';
|
|
import { validateEnvironmentVariables } from '@/infrastructure/EnvironmentVariables/EnvironmentVariablesValidator';
|
|
import type { IEnvironmentVariables } from '@/infrastructure/EnvironmentVariables/IEnvironmentVariables';
|
|
|
|
describe('EnvironmentVariablesValidator', () => {
|
|
it('does not throw if all environment keys have values', () => {
|
|
// arrange
|
|
const environment = new EnvironmentVariablesStub();
|
|
// act
|
|
const act = () => validateEnvironmentVariables(environment);
|
|
// assert
|
|
expect(act).to.not.throw();
|
|
});
|
|
it('does not throw if a boolean key has false value', () => {
|
|
// arrange
|
|
const environmentWithFalseBoolean: Partial<IEnvironmentVariables> = {
|
|
isNonProduction: false,
|
|
};
|
|
const environment: IEnvironmentVariables = {
|
|
...new EnvironmentVariablesStub(),
|
|
...environmentWithFalseBoolean,
|
|
};
|
|
// act
|
|
const act = () => validateEnvironmentVariables(environment);
|
|
// assert
|
|
expect(act).to.not.throw();
|
|
});
|
|
describe('throws as expected', () => {
|
|
it('"missing keys" if environment has properties with missing values', () => {
|
|
// arrange
|
|
const expectedError = 'Environment keys missing: name, homepageUrl';
|
|
const missingData: Partial<IEnvironmentVariables> = {
|
|
name: undefined,
|
|
homepageUrl: undefined,
|
|
};
|
|
const environment: IEnvironmentVariables = {
|
|
...new EnvironmentVariablesStub(),
|
|
...missingData,
|
|
};
|
|
// act
|
|
const act = () => validateEnvironmentVariables(environment);
|
|
// assert
|
|
expect(act).to.throw(expectedError);
|
|
});
|
|
it('"missing keys" if environment has getters with missing values', () => {
|
|
// arrange
|
|
const expectedError = 'Environment keys missing: name, homepageUrl';
|
|
const stubWithGetters: Partial<IEnvironmentVariables> = {
|
|
get name() {
|
|
return undefined;
|
|
},
|
|
get homepageUrl() {
|
|
return undefined;
|
|
},
|
|
};
|
|
const environment: IEnvironmentVariables = {
|
|
...new EnvironmentVariablesStub(),
|
|
...stubWithGetters,
|
|
};
|
|
// act
|
|
const act = () => validateEnvironmentVariables(environment);
|
|
// assert
|
|
expect(act).to.throw(expectedError);
|
|
});
|
|
it('throws "unable to capture" if environment has no getters or properties', () => {
|
|
// arrange
|
|
const expectedError = 'Unable to capture key/value pairs';
|
|
const environment = {} as IEnvironmentVariables;
|
|
// act
|
|
const act = () => validateEnvironmentVariables(environment);
|
|
// assert
|
|
expect(act).to.throw(expectedError);
|
|
});
|
|
});
|
|
});
|