fix bad coordinates in unit tests
This commit is contained in:
parent
2dd6ab1b1b
commit
ab6959038e
|
@ -15,8 +15,8 @@ const originWaypointProps: WaypointProps = {
|
||||||
postalCode: '54000',
|
postalCode: '54000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -27,8 +27,8 @@ const destinationWaypointProps: WaypointProps = {
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -339,8 +339,8 @@ describe('Ad entity create', () => {
|
||||||
postalCode: '54000',
|
postalCode: '54000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
@ -351,8 +351,8 @@ describe('Ad entity create', () => {
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
|
|
|
@ -9,8 +9,8 @@ describe('Address value object', () => {
|
||||||
postalCode: '54000',
|
postalCode: '54000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
expect(addressVO.houseNumber).toBe('5');
|
expect(addressVO.houseNumber).toBe('5');
|
||||||
|
@ -18,7 +18,7 @@ describe('Address value object', () => {
|
||||||
expect(addressVO.locality).toBe('Nancy');
|
expect(addressVO.locality).toBe('Nancy');
|
||||||
expect(addressVO.postalCode).toBe('54000');
|
expect(addressVO.postalCode).toBe('54000');
|
||||||
expect(addressVO.country).toBe('France');
|
expect(addressVO.country).toBe('France');
|
||||||
expect(addressVO.coordinates.lon).toBe(48.689445);
|
expect(addressVO.coordinates.lat).toBe(48.689445);
|
||||||
expect(addressVO.name).toBeUndefined();
|
expect(addressVO.name).toBeUndefined();
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -3,10 +3,10 @@ import { Coordinates } from '@modules/ad/core/domain/value-objects/coordinates.v
|
||||||
describe('Coordinates value object', () => {
|
describe('Coordinates value object', () => {
|
||||||
it('should create a coordinates value object', () => {
|
it('should create a coordinates value object', () => {
|
||||||
const coordinatesVO = new Coordinates({
|
const coordinatesVO = new Coordinates({
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
});
|
});
|
||||||
expect(coordinatesVO.lon).toBe(48.689445);
|
expect(coordinatesVO.lat).toBe(48.689445);
|
||||||
expect(coordinatesVO.lat).toBe(6.17651);
|
expect(coordinatesVO.lon).toBe(6.17651);
|
||||||
});
|
});
|
||||||
});
|
});
|
||||||
|
|
|
@ -18,8 +18,8 @@ import { DateTimeTransformerPort } from '@modules/ad/core/application/ports/date
|
||||||
|
|
||||||
const originWaypoint: WaypointDto = {
|
const originWaypoint: WaypointDto = {
|
||||||
position: 0,
|
position: 0,
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
houseNumber: '5',
|
houseNumber: '5',
|
||||||
street: 'Avenue Foch',
|
street: 'Avenue Foch',
|
||||||
locality: 'Nancy',
|
locality: 'Nancy',
|
||||||
|
@ -28,8 +28,8 @@ const originWaypoint: WaypointDto = {
|
||||||
};
|
};
|
||||||
const destinationWaypoint: WaypointDto = {
|
const destinationWaypoint: WaypointDto = {
|
||||||
position: 1,
|
position: 1,
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
locality: 'Paris',
|
locality: 'Paris',
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
|
|
|
@ -19,8 +19,8 @@ const originWaypointProps: WaypointProps = {
|
||||||
postalCode: '54000',
|
postalCode: '54000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
@ -31,8 +31,8 @@ const destinationWaypointProps: WaypointProps = {
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
};
|
};
|
||||||
|
|
|
@ -11,8 +11,8 @@ describe('Waypoint value object', () => {
|
||||||
postalCode: '54000',
|
postalCode: '54000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
coordinates: {
|
coordinates: {
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
},
|
},
|
||||||
},
|
},
|
||||||
});
|
});
|
||||||
|
|
|
@ -11,8 +11,8 @@ import { Test, TestingModule } from '@nestjs/testing';
|
||||||
|
|
||||||
const originWaypoint: WaypointDto = {
|
const originWaypoint: WaypointDto = {
|
||||||
position: 0,
|
position: 0,
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
houseNumber: '5',
|
houseNumber: '5',
|
||||||
street: 'Avenue Foch',
|
street: 'Avenue Foch',
|
||||||
locality: 'Nancy',
|
locality: 'Nancy',
|
||||||
|
@ -21,8 +21,8 @@ const originWaypoint: WaypointDto = {
|
||||||
};
|
};
|
||||||
const destinationWaypoint: WaypointDto = {
|
const destinationWaypoint: WaypointDto = {
|
||||||
position: 1,
|
position: 1,
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
locality: 'Paris',
|
locality: 'Paris',
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
|
|
|
@ -44,8 +44,8 @@ const mockAdMapper = {
|
||||||
waypoints: [
|
waypoints: [
|
||||||
{
|
{
|
||||||
position: 0,
|
position: 0,
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
houseNumber: '5',
|
houseNumber: '5',
|
||||||
street: 'Avenue Foch',
|
street: 'Avenue Foch',
|
||||||
locality: 'Nancy',
|
locality: 'Nancy',
|
||||||
|
@ -54,8 +54,8 @@ const mockAdMapper = {
|
||||||
},
|
},
|
||||||
{
|
{
|
||||||
position: 1,
|
position: 1,
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
locality: 'Paris',
|
locality: 'Paris',
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
|
|
|
@ -16,8 +16,8 @@ describe('valid position indexes decorator', () => {
|
||||||
myClassInstance.waypoints = [
|
myClassInstance.waypoints = [
|
||||||
{
|
{
|
||||||
position: 0,
|
position: 0,
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
locality: 'Paris',
|
locality: 'Paris',
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
|
@ -40,8 +40,8 @@ describe('valid position indexes decorator', () => {
|
||||||
myClassInstance.waypoints = [
|
myClassInstance.waypoints = [
|
||||||
{
|
{
|
||||||
position: 1,
|
position: 1,
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
locality: 'Paris',
|
locality: 'Paris',
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
|
|
|
@ -3,8 +3,8 @@ import { WaypointDto } from '@modules/ad/interface/grpc-controllers/dtos/waypoin
|
||||||
|
|
||||||
describe('addresses position validator', () => {
|
describe('addresses position validator', () => {
|
||||||
const mockAddress1: WaypointDto = {
|
const mockAddress1: WaypointDto = {
|
||||||
lon: 48.689445,
|
lat: 48.689445,
|
||||||
lat: 6.17651,
|
lon: 6.17651,
|
||||||
houseNumber: '5',
|
houseNumber: '5',
|
||||||
street: 'Avenue Foch',
|
street: 'Avenue Foch',
|
||||||
locality: 'Nancy',
|
locality: 'Nancy',
|
||||||
|
@ -12,8 +12,8 @@ describe('addresses position validator', () => {
|
||||||
country: 'France',
|
country: 'France',
|
||||||
};
|
};
|
||||||
const mockAddress2: WaypointDto = {
|
const mockAddress2: WaypointDto = {
|
||||||
lon: 48.8566,
|
lat: 48.8566,
|
||||||
lat: 2.3522,
|
lon: 2.3522,
|
||||||
locality: 'Paris',
|
locality: 'Paris',
|
||||||
postalCode: '75000',
|
postalCode: '75000',
|
||||||
country: 'France',
|
country: 'France',
|
||||||
|
|
Loading…
Reference in New Issue