Merge branch 'geocoderConfig' into 'main'

Geocoder configuration

See merge request v3/service/configuration!39
This commit is contained in:
Sylvain Briat 2024-01-17 14:42:35 +00:00
commit 5a5f1172a4
25 changed files with 1130 additions and 1189 deletions

View File

@ -74,7 +74,11 @@ GEOCODER_PROXIMITY=5
# population vs distance prioritizer coef # population vs distance prioritizer coef
# "boost" population weight for results with a short distance # "boost" population weight for results with a short distance
# => multiply the population by COEF / distance (in km) # => multiply the population by COEF / distance (in km)
GEOCODDER_POPULATION_PRIORITIZER_COEF=100 GEOCODER_POPULATION_PRIORITIZER_COEF=100
# main providers, separated by a comma
GEOCODER_PROVIDERS=ADDOK,PELIAS_SEARCH,PELIAS_AUTOCOMPLETE
# fallback providers, separated by a comma
GEOCODER_PROVIDERS_FALLBACK=GMAPS
# PAGINATION # PAGINATION
# number of results per page # number of results per page

View File

@ -52,7 +52,7 @@ Redis database is automatically populated at the start of the service. If keys a
The app exposes the following [gRPC](https://grpc.io/) services : The app exposes the following [gRPC](https://grpc.io/) services :
- **Get** : get a configuration item by its domain and key - **Get** : get a configuration item by its domain and key (retrieves the domain, key, value and type)
```json ```json
{ {

1868
package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@ -1,6 +1,6 @@
{ {
"name": "@mobicoop/configuration", "name": "@mobicoop/configuration",
"version": "2.6.0", "version": "2.7.0",
"description": "Mobicoop V3 Configuration Service", "description": "Mobicoop V3 Configuration Service",
"author": "sbriat", "author": "sbriat",
"private": true, "private": true,
@ -24,48 +24,48 @@
"test:e2e": "jest --config ./test/jest-e2e.json" "test:e2e": "jest --config ./test/jest-e2e.json"
}, },
"dependencies": { "dependencies": {
"@grpc/grpc-js": "^1.9.9", "@grpc/grpc-js": "^1.9.13",
"@grpc/proto-loader": "^0.7.10", "@grpc/proto-loader": "^0.7.10",
"@mobicoop/configuration-module": "^7.3.0", "@mobicoop/configuration-module": "^8.0.0",
"@mobicoop/ddd-library": "^2.3.0", "@mobicoop/ddd-library": "^2.4.2",
"@mobicoop/health-module": "^2.3.1", "@mobicoop/health-module": "^2.3.1",
"@mobicoop/message-broker-module": "^2.1.1", "@mobicoop/message-broker-module": "^2.1.1",
"@nestjs/common": "^10.2.8", "@nestjs/common": "^10.3.0",
"@nestjs/config": "^3.1.1", "@nestjs/config": "^3.1.1",
"@nestjs/core": "^10.2.8", "@nestjs/core": "^10.3.0",
"@nestjs/cqrs": "^10.2.6", "@nestjs/cqrs": "^10.2.6",
"@nestjs/event-emitter": "^2.0.3", "@nestjs/event-emitter": "^2.0.3",
"@nestjs/microservices": "^10.2.8", "@nestjs/microservices": "^10.3.0",
"@nestjs/platform-express": "^10.2.8", "@nestjs/platform-express": "^10.3.0",
"@nestjs/terminus": "^10.1.1", "@nestjs/terminus": "^10.2.0",
"class-transformer": "^0.5.1", "class-transformer": "^0.5.1",
"class-validator": "^0.14.0", "class-validator": "^0.14.1",
"reflect-metadata": "^0.1.13", "reflect-metadata": "^0.1.12",
"rimraf": "^5.0.5" "rimraf": "^5.0.5"
}, },
"devDependencies": { "devDependencies": {
"@nestjs/cli": "^10.2.1", "@nestjs/cli": "^10.3.0",
"@nestjs/schematics": "^10.0.3", "@nestjs/schematics": "^10.1.0",
"@nestjs/testing": "^10.2.8", "@nestjs/testing": "^10.3.0",
"@types/express": "^4.17.21", "@types/express": "^4.17.21",
"@types/jest": "29.5.8", "@types/jest": "29.5.11",
"@types/node": "^20.9.0", "@types/node": "^20.11.2",
"@types/supertest": "^2.0.16", "@types/supertest": "^6.0.2",
"@typescript-eslint/eslint-plugin": "^6.10.0", "@typescript-eslint/eslint-plugin": "^6.18.1",
"@typescript-eslint/parser": "^6.10.0", "@typescript-eslint/parser": "^6.18.1",
"dotenv-cli": "^7.3.0", "dotenv-cli": "^7.3.0",
"eslint": "^8.53.0", "eslint": "^8.56.0",
"eslint-config-prettier": "^9.0.0", "eslint-config-prettier": "^9.1.0",
"eslint-plugin-prettier": "^5.0.1", "eslint-plugin-prettier": "^5.1.3",
"jest": "29.7.0", "jest": "29.7.0",
"prettier": "^3.0.3", "prettier": "^3.2.2",
"source-map-support": "^0.5.21", "source-map-support": "^0.5.21",
"supertest": "^6.3.3", "supertest": "^6.3.4",
"ts-jest": "29.1.1", "ts-jest": "29.1.1",
"ts-loader": "^9.5.0", "ts-loader": "^9.5.1",
"ts-node": "^10.9.1", "ts-node": "^10.9.2",
"tsconfig-paths": "4.2.0", "tsconfig-paths": "4.2.0",
"typescript": "^5.2.2" "typescript": "^5.3.3"
}, },
"jest": { "jest": {
"moduleFileExtensions": [ "moduleFileExtensions": [

View File

@ -1,5 +1,5 @@
import { ConfigurationDomain } from '@mobicoop/configuration-module'; import { Domain } from '@mobicoop/configuration-module';
export interface Config { export interface Config {
domain: ConfigurationDomain; domain: Domain;
} }

View File

@ -46,7 +46,10 @@ export default registerAs('geography', () => ({
.GEOCODER_POPULATION_PRIORITIZER_COEF .GEOCODER_POPULATION_PRIORITIZER_COEF
? parseInt(process.env.GEOCODER_POPULATION_PRIORITIZER_COEF) ? parseInt(process.env.GEOCODER_POPULATION_PRIORITIZER_COEF)
: 100, : 100,
geocoderProviders: geocoderProviders: process.env.GEOCODER_PROVIDERS
process.env.GEOCODER_PROVIDERS ?? 'ADDOK,PELIAS_SEARCH,PELIAS_AUTOCOMPLETE', ? process.env.GEOCODER_PROVIDERS?.split(',')
geocoderProvidersFallback: process.env.GEOCODER_PROVIDERS_FALLBACK ?? 'GMAPS', : ['ADDOK,PELIAS_SEARCH,PELIAS_AUTOCOMPLETE'],
geocoderProvidersFallback: process.env.GEOCODER_PROVIDERS_FALLBACK
? process.env.GEOCODER_PROVIDERS_FALLBACK?.split(',')
: ['GMAPS'],
})); }));

View File

@ -1,9 +1,6 @@
import { Injectable } from '@nestjs/common'; import { Injectable } from '@nestjs/common';
import { ConfigurationResponseDto } from './interface/dtos/configuration.response.dto'; import { ConfigurationResponseDto } from './interface/dtos/configuration.response.dto';
import { import { Identifier, Value } from '@mobicoop/configuration-module';
ConfigurationIdentifier,
ConfigurationValue,
} from '@mobicoop/configuration-module';
import { ConfigurationsManagerService } from './core/application/services/configurations-manager.service'; import { ConfigurationsManagerService } from './core/application/services/configurations-manager.service';
@Injectable() @Injectable()
@ -13,15 +10,14 @@ export class ConfigurationMapper {
) {} ) {}
toResponse = ( toResponse = (
configurationIdentifier: ConfigurationIdentifier, identifier: Identifier,
configurationValue: ConfigurationValue, value: Value,
): ConfigurationResponseDto => { ): ConfigurationResponseDto => {
const response = new ConfigurationResponseDto(); const response = new ConfigurationResponseDto();
response.domain = configurationIdentifier.domain; response.domain = identifier.domain;
response.key = configurationIdentifier.key; response.key = identifier.key;
response.value = configurationValue; response.value = value;
response.type = response.type = this.configurationsManager.configurationType(value);
this.configurationsManager.configurationType(configurationValue);
return response; return response;
}; };
} }

View File

@ -1,13 +1,13 @@
import { ConfigurationIdentifier } from '@mobicoop/configuration-module'; import { Identifier } from '@mobicoop/configuration-module';
import { Command, CommandProps } from '@mobicoop/ddd-library'; import { Command, CommandProps } from '@mobicoop/ddd-library';
export class SetConfigurationCommand extends Command { export class SetConfigurationCommand extends Command {
readonly configurationIdentifier: ConfigurationIdentifier; readonly identifier: Identifier;
readonly value: string | boolean | number; readonly value: string | boolean | number;
constructor(props: CommandProps<SetConfigurationCommand>) { constructor(props: CommandProps<SetConfigurationCommand>) {
super(props); super(props);
this.configurationIdentifier = props.configurationIdentifier; this.identifier = props.identifier;
this.value = props.value; this.value = props.value;
} }
} }

View File

@ -3,8 +3,8 @@ import { Inject } from '@nestjs/common';
import { SetConfigurationCommand } from './set-configuration.command'; import { SetConfigurationCommand } from './set-configuration.command';
import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens'; import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens';
import { import {
ConfigurationIdentifier, Identifier,
ConfigurationType, Type,
SetConfigurationRepositoryPort, SetConfigurationRepositoryPort,
} from '@mobicoop/configuration-module'; } from '@mobicoop/configuration-module';
import { ConfigurationsManagerService } from '../../services/configurations-manager.service'; import { ConfigurationsManagerService } from '../../services/configurations-manager.service';
@ -18,26 +18,19 @@ export class SetConfigurationService implements ICommandHandler {
private readonly configurationsManager: ConfigurationsManagerService, private readonly configurationsManager: ConfigurationsManagerService,
) {} ) {}
async execute( async execute(command: SetConfigurationCommand): Promise<Identifier> {
command: SetConfigurationCommand, const type: Type = this.configurationsManager.identifierType(
): Promise<ConfigurationIdentifier> { command.identifier,
const configurationType: ConfigurationType = );
this.configurationsManager.identifierType(
command.configurationIdentifier,
);
const value: any = this.configurationsManager.cast( const value: any = this.configurationsManager.cast(
`${command.value}`, `${command.value}`,
configurationType, type,
); );
if ( if ((type === Type.INT || type === Type.FLOAT) && isNaN(value))
(configurationType === ConfigurationType.INT ||
configurationType === ConfigurationType.FLOAT) &&
isNaN(value)
)
throw new ArgumentInvalidException('Bad value'); throw new ArgumentInvalidException('Bad value');
return await this.configurationRepository.set( return await this.configurationRepository.set(
command.configurationIdentifier.domain, command.identifier.domain,
command.configurationIdentifier.key, command.identifier.key,
value, value,
); );
} }

View File

@ -3,7 +3,7 @@ import { GetConfigurationQuery } from './get-configuration.query';
import { Inject } from '@nestjs/common'; import { Inject } from '@nestjs/common';
import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens'; import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens';
import { import {
ConfigurationValue, Value,
GetConfigurationRepositoryPort, GetConfigurationRepositoryPort,
} from '@mobicoop/configuration-module'; } from '@mobicoop/configuration-module';
import { ConfigurationsManagerService } from '../../services/configurations-manager.service'; import { ConfigurationsManagerService } from '../../services/configurations-manager.service';
@ -15,11 +15,10 @@ export class GetConfigurationQueryHandler implements IQueryHandler {
private readonly configurationRepository: GetConfigurationRepositoryPort, private readonly configurationRepository: GetConfigurationRepositoryPort,
private readonly configurationsManager: ConfigurationsManagerService, private readonly configurationsManager: ConfigurationsManagerService,
) {} ) {}
async execute(query: GetConfigurationQuery): Promise<ConfigurationValue> { async execute(query: GetConfigurationQuery): Promise<Value> {
return await this.configurationRepository.get( return await this.configurationRepository.get(query.identifier.domain, {
query.configurationIdentifier.domain, key: query.identifier.key,
query.configurationIdentifier.key, type: this.configurationsManager.identifierType(query.identifier),
this.configurationsManager.identifierType(query.configurationIdentifier), });
);
} }
} }

View File

@ -1,15 +1,12 @@
import { import { Domain, Identifier } from '@mobicoop/configuration-module';
ConfigurationDomain,
ConfigurationIdentifier,
} from '@mobicoop/configuration-module';
import { QueryBase } from '@mobicoop/ddd-library'; import { QueryBase } from '@mobicoop/ddd-library';
export class GetConfigurationQuery extends QueryBase { export class GetConfigurationQuery extends QueryBase {
readonly configurationIdentifier: ConfigurationIdentifier; readonly identifier: Identifier;
constructor(domain: ConfigurationDomain, key: string) { constructor(domain: Domain, key: string) {
super(); super();
this.configurationIdentifier = { this.identifier = {
domain, domain,
key, key,
}; };

View File

@ -1,8 +1,8 @@
import { import {
ConfigurationDomain, Domain,
ConfigurationIdentifier, Identifier,
ConfigurationType, Type,
ConfigurationValue, Value,
} from '@mobicoop/configuration-module'; } from '@mobicoop/configuration-module';
import { NotFoundException } from '@mobicoop/ddd-library'; import { NotFoundException } from '@mobicoop/ddd-library';
import { Injectable } from '@nestjs/common'; import { Injectable } from '@nestjs/common';
@ -22,70 +22,81 @@ export class ConfigurationsManagerService {
return [ return [
{ {
...(this.configService.get<AuthConfig>('auth') as AuthConfig), ...(this.configService.get<AuthConfig>('auth') as AuthConfig),
domain: ConfigurationDomain.AUTH, domain: Domain.AUTH,
}, },
{ {
...(this.configService.get<CarpoolConfig>('carpool') as CarpoolConfig), ...(this.configService.get<CarpoolConfig>('carpool') as CarpoolConfig),
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
}, },
{ {
...(this.configService.get<GeographyConfig>( ...(this.configService.get<GeographyConfig>(
'geography', 'geography',
) as GeographyConfig), ) as GeographyConfig),
domain: ConfigurationDomain.GEOGRAPHY, domain: Domain.GEOGRAPHY,
}, },
{ {
...(this.configService.get<MatchConfig>('match') as MatchConfig), ...(this.configService.get<MatchConfig>('match') as MatchConfig),
domain: ConfigurationDomain.MATCH, domain: Domain.MATCH,
}, },
{ {
...(this.configService.get<PaginationConfig>( ...(this.configService.get<PaginationConfig>(
'pagination', 'pagination',
) as PaginationConfig), ) as PaginationConfig),
domain: ConfigurationDomain.PAGINATION, domain: Domain.PAGINATION,
}, },
]; ];
}; };
identifierType = ( identifierType = (identifier: Identifier): Type => {
configurationIdentifier: ConfigurationIdentifier,
): ConfigurationType => {
const configs: Config[] = this.list(); const configs: Config[] = this.list();
const configuration: Config | undefined = configs.find( const configuration: Config | undefined = configs.find(
(config: Config) => (config: Config) =>
config.domain === configurationIdentifier.domain && config.domain === identifier.domain &&
this._hasProperty(configurationIdentifier.key, config), this._hasProperty(identifier.key, config),
); );
if (!configuration) if (!configuration)
throw new NotFoundException('Configuration item not found'); throw new NotFoundException('Configuration item not found');
return this.configurationType( return this.configurationType(
this._getValue(configurationIdentifier.key, configuration), this._getValue(identifier.key, configuration),
); );
}; };
configurationType = (value: any): ConfigurationType => { configurationType = (value: any): Type => {
if (Array.isArray(value)) return this._configurationTypeArray(value);
switch (typeof value) { switch (typeof value) {
case 'number': case 'number':
if (this._isInt(value)) return ConfigurationType.INT; if (this._isInt(value)) return Type.INT;
return ConfigurationType.FLOAT; return Type.FLOAT;
case 'boolean': case 'boolean':
return ConfigurationType.BOOLEAN; return Type.BOOLEAN;
default: default:
return ConfigurationType.STRING; if (value.indexOf(',') === -1) return Type.STRING;
return this._configurationTypeArray(value.split(','));
} }
}; };
cast = ( _configurationTypeArray = (value: Array<string | number>): Type => {
value: string, return value.every((item) => typeof item === 'number' && this._isInt(item))
configurationType: ConfigurationType, ? Type.INT_ARRAY
): ConfigurationValue => { : value.every((item) => typeof item === 'number')
switch (configurationType) { ? Type.FLOAT_ARRAY
case ConfigurationType.BOOLEAN: : Type.STRING_ARRAY;
};
cast = (value: string, type: Type): Value => {
switch (type) {
case Type.BOOLEAN:
return value === 'true'; return value === 'true';
case ConfigurationType.INT: case Type.INT:
return parseInt(value); return parseInt(value);
case ConfigurationType.FLOAT: case Type.FLOAT:
return parseFloat(value); return parseFloat(value);
case Type.INT_ARRAY:
return value.split(',').map((item: string) => parseInt(item));
case Type.FLOAT_ARRAY:
return value.split(',').map((item: string) => parseFloat(item));
case Type.STRING_ARRAY:
return value.split(',');
default: default:
return value; return value;
} }

View File

@ -35,11 +35,12 @@ export class PopulateService implements OnApplicationBootstrap {
for (key in configuration) { for (key in configuration) {
try { try {
if (key !== 'domain') if (key !== 'domain')
await this.getConfigurationRepository.get( await this.getConfigurationRepository.get(config.domain, {
config.domain,
key, key,
this.configurationsManager.configurationType(configuration[key]), type: this.configurationsManager.configurationType(
); configuration[key],
),
});
} catch (error: any) { } catch (error: any) {
if (error instanceof NotFoundException) { if (error instanceof NotFoundException) {
this.setConfigurationRepository.set( this.setConfigurationRepository.set(

View File

@ -1,8 +1,8 @@
import { ConfigurationType } from '@mobicoop/configuration-module'; import { Type } from '@mobicoop/configuration-module';
export class ConfigurationResponseDto { export class ConfigurationResponseDto {
domain: string; domain: string;
key: string; key: string;
value: string | boolean | number; value: string | boolean | number | string[] | number[];
type: ConfigurationType; type: Type;
} }

View File

@ -1,10 +1,10 @@
import { ConfigurationDomain } from '@mobicoop/configuration-module'; import { Domain } from '@mobicoop/configuration-module';
import { IsEnum, IsNotEmpty, IsString } from 'class-validator'; import { IsEnum, IsNotEmpty, IsString } from 'class-validator';
export class GetConfigurationRequestDto { export class GetConfigurationRequestDto {
@IsEnum(ConfigurationDomain) @IsEnum(Domain)
@IsNotEmpty() @IsNotEmpty()
domain: ConfigurationDomain; domain: Domain;
@IsString() @IsString()
@IsNotEmpty() @IsNotEmpty()

View File

@ -1,10 +1,10 @@
import { ConfigurationDomain } from '@mobicoop/configuration-module'; import { Domain } from '@mobicoop/configuration-module';
import { IsEnum, IsNotEmpty, IsString } from 'class-validator'; import { IsEnum, IsNotEmpty, IsString } from 'class-validator';
export class SetConfigurationRequestDto { export class SetConfigurationRequestDto {
@IsEnum(ConfigurationDomain) @IsEnum(Domain)
@IsNotEmpty() @IsNotEmpty()
domain: ConfigurationDomain; domain: Domain;
@IsString() @IsString()
@IsNotEmpty() @IsNotEmpty()

View File

@ -11,7 +11,7 @@ import {
RpcExceptionCode, RpcExceptionCode,
RpcValidationPipe, RpcValidationPipe,
} from '@mobicoop/ddd-library'; } from '@mobicoop/ddd-library';
import { ConfigurationValue } from '@mobicoop/configuration-module'; import { Value } from '@mobicoop/configuration-module';
@UsePipes( @UsePipes(
new RpcValidationPipe({ new RpcValidationPipe({
@ -31,11 +31,10 @@ export class GetConfigurationGrpcController {
data: GetConfigurationRequestDto, data: GetConfigurationRequestDto,
): Promise<ConfigurationResponseDto> { ): Promise<ConfigurationResponseDto> {
try { try {
const configurationValue: ConfigurationValue = const value: Value = await this.queryBus.execute(
await this.queryBus.execute( new GetConfigurationQuery(data.domain, data.key),
new GetConfigurationQuery(data.domain, data.key), );
); return this.mapper.toResponse(data, value);
return this.mapper.toResponse(data, configurationValue);
} catch (e) { } catch (e) {
if (e instanceof NotFoundException) { if (e instanceof NotFoundException) {
throw new RpcException({ throw new RpcException({

View File

@ -5,7 +5,7 @@ import { RpcExceptionCode, RpcValidationPipe } from '@mobicoop/ddd-library';
import { GRPC_SERVICE_NAME } from '@src/app.constants'; import { GRPC_SERVICE_NAME } from '@src/app.constants';
import { SetConfigurationRequestDto } from './dtos/set-configuration.request.dto'; import { SetConfigurationRequestDto } from './dtos/set-configuration.request.dto';
import { SetConfigurationCommand } from '@modules/configuration/core/application/commands/set-configuration/set-configuration.command'; import { SetConfigurationCommand } from '@modules/configuration/core/application/commands/set-configuration/set-configuration.command';
import { ConfigurationIdentifier } from '@mobicoop/configuration-module'; import { Identifier } from '@mobicoop/configuration-module';
@UsePipes( @UsePipes(
new RpcValidationPipe({ new RpcValidationPipe({
@ -20,19 +20,18 @@ export class SetConfigurationGrpcController {
@GrpcMethod(GRPC_SERVICE_NAME, 'Set') @GrpcMethod(GRPC_SERVICE_NAME, 'Set')
async set( async set(
setConfigurationRequestDto: SetConfigurationRequestDto, setConfigurationRequestDto: SetConfigurationRequestDto,
): Promise<ConfigurationIdentifier> { ): Promise<Identifier> {
try { try {
const configurationIdentifier: ConfigurationIdentifier = const identifier: Identifier = await this.commandBus.execute(
await this.commandBus.execute( new SetConfigurationCommand({
new SetConfigurationCommand({ identifier: {
configurationIdentifier: { domain: setConfigurationRequestDto.domain,
domain: setConfigurationRequestDto.domain, key: setConfigurationRequestDto.key,
key: setConfigurationRequestDto.key, },
}, value: setConfigurationRequestDto.value,
value: setConfigurationRequestDto.value, }),
}), );
); return identifier;
return configurationIdentifier;
} catch (error: any) { } catch (error: any) {
throw new RpcException({ throw new RpcException({
code: RpcExceptionCode.UNKNOWN, code: RpcExceptionCode.UNKNOWN,

View File

@ -1,14 +1,11 @@
import { import { Domain, Type } from '@mobicoop/configuration-module';
ConfigurationDomain,
ConfigurationType,
} from '@mobicoop/configuration-module';
import { ConfigurationMapper } from '@modules/configuration/configuration.mapper'; import { ConfigurationMapper } from '@modules/configuration/configuration.mapper';
import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service'; import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service';
import { ConfigurationResponseDto } from '@modules/configuration/interface/dtos/configuration.response.dto'; import { ConfigurationResponseDto } from '@modules/configuration/interface/dtos/configuration.response.dto';
import { Test } from '@nestjs/testing'; import { Test } from '@nestjs/testing';
const mockConfigurationsManagerService = { const mockConfigurationsManagerService = {
configurationType: jest.fn().mockImplementation(() => ConfigurationType.INT), configurationType: jest.fn().mockImplementation(() => Type.INT),
}; };
describe('Configuration Mapper', () => { describe('Configuration Mapper', () => {
@ -34,7 +31,7 @@ describe('Configuration Mapper', () => {
it('should map configuration to response', async () => { it('should map configuration to response', async () => {
const mapped: ConfigurationResponseDto = configurationMapper.toResponse( const mapped: ConfigurationResponseDto = configurationMapper.toResponse(
{ {
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'seatsProposed', key: 'seatsProposed',
}, },
'3', '3',

View File

@ -1,8 +1,4 @@
import { import { Domain, Identifier, Type } from '@mobicoop/configuration-module';
ConfigurationDomain,
ConfigurationIdentifier,
ConfigurationType,
} from '@mobicoop/configuration-module';
import { NotFoundException } from '@mobicoop/ddd-library'; import { NotFoundException } from '@mobicoop/ddd-library';
import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service'; import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service';
import { ConfigService } from '@nestjs/config'; import { ConfigService } from '@nestjs/config';
@ -26,8 +22,18 @@ const mockConfigService = {
}; };
case 'geography': case 'geography':
return { return {
type: 'graphhopper', georouterType: 'graphhopper',
url: 'http://localhost:8989', georouterUrl: 'http://localhost:8989',
geocoderLang: 'fr',
geocoderMinConfidence: 0.3,
geocoderMaxResultsPerProvider: 5,
geocoderMaxResultsPerType: 5,
geocoderSanitize: true,
geocoderConsolidate: true,
geocoderProximity: 5,
geocoderPopulationPrioritizerCoef: 100,
geocoderProviders: ['provider1', 'provider2'],
geocoderProvidersFallback: ['provider3'],
}; };
case 'match': case 'match':
return { return {
@ -78,68 +84,95 @@ describe('Configurations Manager Service', () => {
describe('identifierType', () => { describe('identifierType', () => {
it('should return the type of a configuration item for a given identifier', () => { it('should return the type of a configuration item for a given identifier', () => {
const configurationIdentifier: ConfigurationIdentifier = { const identifier: Identifier = {
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'seatsProposed', key: 'seatsProposed',
}; };
const configurationType: ConfigurationType = const type: Type =
configurationsManagerService.identifierType(configurationIdentifier); configurationsManagerService.identifierType(identifier);
expect(configurationType).toBe(ConfigurationType.INT); expect(type).toBe(Type.INT);
}); });
it('should throw if configuration item is not found', () => { it('should throw if configuration item is not found', () => {
const configurationIdentifier: ConfigurationIdentifier = { const dentifier: Identifier = {
domain: ConfigurationDomain.MATCH, domain: Domain.MATCH,
key: 'maxDetour', key: 'maxDetour',
}; };
expect(() => { expect(() => {
configurationsManagerService.identifierType(configurationIdentifier); configurationsManagerService.identifierType(dentifier);
}).toThrow(NotFoundException); }).toThrow(NotFoundException);
}); });
}); });
describe('configurationType', () => { describe('Type', () => {
it('should return the configuration type of an int', () => { it('should return the configuration type of an int', () => {
expect(configurationsManagerService.configurationType(3)).toBe( expect(configurationsManagerService.configurationType(3)).toBe(Type.INT);
ConfigurationType.INT,
);
}); });
it('should return the configuration type of a float', () => { it('should return the configuration type of a float', () => {
expect(configurationsManagerService.configurationType(3.5)).toBe( expect(configurationsManagerService.configurationType(3.5)).toBe(
ConfigurationType.FLOAT, Type.FLOAT,
); );
}); });
it('should return the configuration type of a boolean', () => { it('should return the configuration type of a boolean', () => {
expect(configurationsManagerService.configurationType(true)).toBe( expect(configurationsManagerService.configurationType(true)).toBe(
ConfigurationType.BOOLEAN, Type.BOOLEAN,
); );
}); });
it('should return the configuration type of a string', () => { it('should return the configuration type of a string', () => {
expect(configurationsManagerService.configurationType('role')).toBe( expect(configurationsManagerService.configurationType('role')).toBe(
ConfigurationType.STRING, Type.STRING,
);
});
it('should return the configuration type of a string array', () => {
expect(
configurationsManagerService.configurationType(['test', 'test2']),
).toBe(Type.STRING_ARRAY);
expect(configurationsManagerService.configurationType('test,test2')).toBe(
Type.STRING_ARRAY,
);
});
it('should return the configuration type of an int array', () => {
expect(configurationsManagerService.configurationType([2, 3])).toBe(
Type.INT_ARRAY,
);
});
it('should return the configuration type of a float array', () => {
expect(configurationsManagerService.configurationType([1.2, 3.6])).toBe(
Type.FLOAT_ARRAY,
); );
}); });
}); });
describe('cast', () => { describe('cast', () => {
it('should cast a string to int', () => { it('should cast a string to int', () => {
expect( expect(configurationsManagerService.cast('1', Type.INT)).toBe(1);
configurationsManagerService.cast('1', ConfigurationType.INT),
).toBe(1);
}); });
it('should cast a string to float', () => { it('should cast a string to float', () => {
expect( expect(configurationsManagerService.cast('1.5', Type.FLOAT)).toBe(1.5);
configurationsManagerService.cast('1.5', ConfigurationType.FLOAT),
).toBe(1.5);
}); });
it('should cast a string to boolean', () => { it('should cast a string to boolean', () => {
expect( expect(
configurationsManagerService.cast('true', ConfigurationType.BOOLEAN), configurationsManagerService.cast('true', Type.BOOLEAN),
).toBeTruthy(); ).toBeTruthy();
}); });
it('should not cast a string and return it as is', () => { it('should not cast a string and return it as is', () => {
expect(configurationsManagerService.cast('role', Type.STRING)).toBe(
'role',
);
});
it('should cast a string to an array of strings', () => {
expect( expect(
configurationsManagerService.cast('role', ConfigurationType.STRING), configurationsManagerService.cast('test,test2', Type.STRING_ARRAY),
).toBe('role'); ).toStrictEqual(['test', 'test2']);
});
it('should cast a string to an array of ints', () => {
expect(
configurationsManagerService.cast('1,2', Type.INT_ARRAY),
).toStrictEqual([1, 2]);
});
it('should cast a string to an array of floats', () => {
expect(
configurationsManagerService.cast('1.2,2.3', Type.FLOAT_ARRAY),
).toStrictEqual([1.2, 2.3]);
}); });
}); });
}); });

View File

@ -2,21 +2,17 @@ import { Test, TestingModule } from '@nestjs/testing';
import { GetConfigurationQueryHandler } from '@modules/configuration/core/application/queries/get-configuration/get-configuration.query-handler'; import { GetConfigurationQueryHandler } from '@modules/configuration/core/application/queries/get-configuration/get-configuration.query-handler';
import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens'; import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens';
import { GetConfigurationQuery } from '@modules/configuration/core/application/queries/get-configuration/get-configuration.query'; import { GetConfigurationQuery } from '@modules/configuration/core/application/queries/get-configuration/get-configuration.query';
import { import { Domain, Type, Value } from '@mobicoop/configuration-module';
ConfigurationDomain,
ConfigurationType,
ConfigurationValue,
} from '@mobicoop/configuration-module';
import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service'; import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service';
const configurationValue: ConfigurationValue = '3'; const value: Value = '3';
const mockConfigurationRepository = { const mockConfigurationRepository = {
get: jest.fn().mockImplementation(() => configurationValue), get: jest.fn().mockImplementation(() => value),
}; };
const mockConfigurationsManagerService = { const mockConfigurationsManagerService = {
identifierType: jest.fn().mockImplementation(() => ConfigurationType.INT), identifierType: jest.fn().mockImplementation(() => Type.INT),
}; };
describe('Get Configuration Query Handler', () => { describe('Get Configuration Query Handler', () => {
@ -49,12 +45,13 @@ describe('Get Configuration Query Handler', () => {
describe('execution', () => { describe('execution', () => {
it('should return a configuration value', async () => { it('should return a configuration value', async () => {
const getConfigurationQuery = new GetConfigurationQuery( const getConfigurationQuery = new GetConfigurationQuery(
ConfigurationDomain.CARPOOL, Domain.CARPOOL,
'seatsProposed', 'seatsProposed',
); );
const configurationValue: ConfigurationValue = const value: Value = await getConfigurationQueryHandler.execute(
await getConfigurationQueryHandler.execute(getConfigurationQuery); getConfigurationQuery,
expect(configurationValue).toBe('3'); );
expect(value).toBe('3');
}); });
}); });
}); });

View File

@ -1,7 +1,4 @@
import { import { Domain, NotFoundException } from '@mobicoop/configuration-module';
ConfigurationDomain,
NotFoundException,
} from '@mobicoop/configuration-module';
import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens'; import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens';
import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service'; import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service';
import { PopulateService } from '@modules/configuration/core/application/services/populate.service'; import { PopulateService } from '@modules/configuration/core/application/services/populate.service';
@ -20,7 +17,7 @@ const mockConfigurationRepository = {
const mockConfigurationsManagerService = { const mockConfigurationsManagerService = {
list: jest.fn().mockImplementation(() => [ list: jest.fn().mockImplementation(() => [
{ {
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
departureTimeMargin: 900, departureTimeMargin: 900,
role: 'passenger', role: 'passenger',
seatsProposed: 3, seatsProposed: 3,
@ -28,7 +25,7 @@ const mockConfigurationsManagerService = {
strictFrequency: false, strictFrequency: false,
}, },
{ {
domain: ConfigurationDomain.PAGINATION, domain: Domain.PAGINATION,
perPage: 10, perPage: 10,
}, },
]), ]),

View File

@ -3,14 +3,11 @@ import { SetConfigurationRequestDto } from '@modules/configuration/interface/grp
import { SetConfigurationService } from '@modules/configuration/core/application/commands/set-configuration/set-configuration.service'; import { SetConfigurationService } from '@modules/configuration/core/application/commands/set-configuration/set-configuration.service';
import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens'; import { CONFIGURATION_REPOSITORY } from '@modules/configuration/configuration.di-tokens';
import { SetConfigurationCommand } from '@modules/configuration/core/application/commands/set-configuration/set-configuration.command'; import { SetConfigurationCommand } from '@modules/configuration/core/application/commands/set-configuration/set-configuration.command';
import { import { Domain, Type } from '@mobicoop/configuration-module';
ConfigurationDomain,
ConfigurationType,
} from '@mobicoop/configuration-module';
import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service'; import { ConfigurationsManagerService } from '@modules/configuration/core/application/services/configurations-manager.service';
const setConfigurationRequest: SetConfigurationRequestDto = { const setConfigurationRequest: SetConfigurationRequestDto = {
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'seatsProposed', key: 'seatsProposed',
value: '3', value: '3',
}; };
@ -25,7 +22,7 @@ const mockConfigurationRepository = {
}; };
const mockConfigurationsManagerService = { const mockConfigurationsManagerService = {
identifierType: jest.fn().mockImplementation(() => ConfigurationType.INT), identifierType: jest.fn().mockImplementation(() => Type.INT),
cast: jest.fn().mockImplementation(() => 3), cast: jest.fn().mockImplementation(() => 3),
}; };
@ -58,7 +55,7 @@ describe('Set Configuration Service', () => {
describe('execution', () => { describe('execution', () => {
const setConfigurationCommand = new SetConfigurationCommand({ const setConfigurationCommand = new SetConfigurationCommand({
configurationIdentifier: { identifier: {
domain: setConfigurationRequest.domain, domain: setConfigurationRequest.domain,
key: setConfigurationRequest.key, key: setConfigurationRequest.key,
}, },

View File

@ -1,4 +1,4 @@
import { ConfigurationDomain } from '@mobicoop/configuration-module'; import { Domain } from '@mobicoop/configuration-module';
import { NotFoundException, RpcExceptionCode } from '@mobicoop/ddd-library'; import { NotFoundException, RpcExceptionCode } from '@mobicoop/ddd-library';
import { ConfigurationMapper } from '@modules/configuration/configuration.mapper'; import { ConfigurationMapper } from '@modules/configuration/configuration.mapper';
import { GetConfigurationGrpcController } from '@modules/configuration/interface/grpc-controllers/get-configuration.grpc.controller'; import { GetConfigurationGrpcController } from '@modules/configuration/interface/grpc-controllers/get-configuration.grpc.controller';
@ -20,7 +20,7 @@ const mockQueryBus = {
const mockConfigurationMapper = { const mockConfigurationMapper = {
toResponse: jest.fn().mockImplementationOnce(() => ({ toResponse: jest.fn().mockImplementationOnce(() => ({
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'seatsProposed', key: 'seatsProposed',
value: '3', value: '3',
})), })),
@ -61,7 +61,7 @@ describe('Get Configuration Grpc Controller', () => {
jest.spyOn(mockQueryBus, 'execute'); jest.spyOn(mockQueryBus, 'execute');
jest.spyOn(mockConfigurationMapper, 'toResponse'); jest.spyOn(mockConfigurationMapper, 'toResponse');
const response = await getConfigurationGrpcController.get({ const response = await getConfigurationGrpcController.get({
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'seatsProposed', key: 'seatsProposed',
}); });
expect(response.value).toBe('3'); expect(response.value).toBe('3');
@ -75,7 +75,7 @@ describe('Get Configuration Grpc Controller', () => {
expect.assertions(4); expect.assertions(4);
try { try {
await getConfigurationGrpcController.get({ await getConfigurationGrpcController.get({
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'price', key: 'price',
}); });
} catch (e: any) { } catch (e: any) {
@ -92,7 +92,7 @@ describe('Get Configuration Grpc Controller', () => {
expect.assertions(4); expect.assertions(4);
try { try {
await getConfigurationGrpcController.get({ await getConfigurationGrpcController.get({
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'someValue', key: 'someValue',
}); });
} catch (e: any) { } catch (e: any) {

View File

@ -1,7 +1,4 @@
import { import { Domain, Identifier } from '@mobicoop/configuration-module';
ConfigurationDomain,
ConfigurationIdentifier,
} from '@mobicoop/configuration-module';
import { RpcExceptionCode } from '@mobicoop/ddd-library'; import { RpcExceptionCode } from '@mobicoop/ddd-library';
import { SetConfigurationRequestDto } from '@modules/configuration/interface/grpc-controllers/dtos/set-configuration.request.dto'; import { SetConfigurationRequestDto } from '@modules/configuration/interface/grpc-controllers/dtos/set-configuration.request.dto';
import { SetConfigurationGrpcController } from '@modules/configuration/interface/grpc-controllers/set-configuration.grpc.controller'; import { SetConfigurationGrpcController } from '@modules/configuration/interface/grpc-controllers/set-configuration.grpc.controller';
@ -10,7 +7,7 @@ import { RpcException } from '@nestjs/microservices';
import { Test, TestingModule } from '@nestjs/testing'; import { Test, TestingModule } from '@nestjs/testing';
const setConfigurationRequest: SetConfigurationRequestDto = { const setConfigurationRequest: SetConfigurationRequestDto = {
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'seatsProposed', key: 'seatsProposed',
value: '3', value: '3',
}; };
@ -19,7 +16,7 @@ const mockCommandBus = {
execute: jest execute: jest
.fn() .fn()
.mockImplementationOnce(() => ({ .mockImplementationOnce(() => ({
domain: ConfigurationDomain.CARPOOL, domain: Domain.CARPOOL,
key: 'seatsProposed', key: 'seatsProposed',
})) }))
.mockImplementationOnce(() => { .mockImplementationOnce(() => {
@ -56,9 +53,10 @@ describe('Set Configuration Grpc Controller', () => {
it('should set a configuration item', async () => { it('should set a configuration item', async () => {
jest.spyOn(mockCommandBus, 'execute'); jest.spyOn(mockCommandBus, 'execute');
const configurationIdentifier: ConfigurationIdentifier = const identifier: Identifier = await setConfigurationGrpcController.set(
await setConfigurationGrpcController.set(setConfigurationRequest); setConfigurationRequest,
expect(configurationIdentifier.key).toBe('seatsProposed'); );
expect(identifier.key).toBe('seatsProposed');
expect(mockCommandBus.execute).toHaveBeenCalledTimes(1); expect(mockCommandBus.execute).toHaveBeenCalledTimes(1);
}); });