Files
privacy.sexy/tests/unit/infrastructure/EnvironmentVariables/EnvironmentVariablesValidator.spec.ts
undergroundwires 949fac1a7c Refactor to enforce strictNullChecks
This commit applies `strictNullChecks` to the entire codebase to improve
maintainability and type safety. Key changes include:

- Remove some explicit null-checks where unnecessary.
- Add necessary null-checks.
- Refactor static factory functions for a more functional approach.
- Improve some test names and contexts for better debugging.
- Add unit tests for any additional logic introduced.
- Refactor `createPositionFromRegexFullMatch` to its own function as the
  logic is reused.
- Prefer `find` prefix on functions that may return `undefined` and
  `get` prefix for those that always return a value.
2023-11-12 22:54:00 +01:00

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 { 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);
});
});
});