UNPKG

2.11 kBJavaScriptView Raw
1"use strict";
2/**
3 * This file is part of the @egodigital/egoose distribution.
4 * Copyright (c) e.GO Digital GmbH, Aachen, Germany (https://www.e-go-digital.com/)
5 *
6 * @egodigital/egoose is free software: you can redistribute it and/or modify
7 * it under the terms of the GNU Lesser General Public License as
8 * published by the Free Software Foundation, version 3.
9 *
10 * @egodigital/egoose is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of
12 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
13 * Lesser General Public License for more details.
14 *
15 * You should have received a copy of the GNU Lesser General Public License
16 * along with this program. If not, see <http://www.gnu.org/licenses/>.
17 */
18Object.defineProperty(exports, "__esModule", { value: true });
19const assert = require("assert");
20const mocha_1 = require("mocha");
21const egoose = require("../index");
22const EGO_DIGITAL = {
23 lat: 50.782131,
24 lng: 6.047182
25};
26const EGO_FACTORY_1 = {
27 lat: 50.775635,
28 lng: 6.132818,
29};
30mocha_1.describe('#calcDistance', function () {
31 mocha_1.describe('route #1', function () {
32 mocha_1.it('should return', async function () {
33 const DISTANCE = egoose.calcDistance(EGO_DIGITAL.lat, EGO_DIGITAL.lng, EGO_FACTORY_1.lat, EGO_FACTORY_1.lng);
34 assert.ok(typeof DISTANCE === 'number');
35 const ACTUAL = parseInt('' + (Math.floor(DISTANCE / 1000.0) * 1000));
36 assert.equal(ACTUAL, 6000);
37 assert.strictEqual(ACTUAL, 6000);
38 });
39 });
40 mocha_1.describe('route #2', function () {
41 mocha_1.it('should return a random string', function () {
42 const DISTANCE = egoose.calcDistance(EGO_FACTORY_1.lat, EGO_FACTORY_1.lng, EGO_DIGITAL.lat, EGO_DIGITAL.lng);
43 assert.ok(typeof DISTANCE === 'number');
44 const ACTUAL = parseInt('' + (Math.floor(DISTANCE / 1000.0) * 1000));
45 assert.equal(ACTUAL, 6000);
46 assert.strictEqual(ACTUAL, 6000);
47 });
48 });
49});
50//# sourceMappingURL=calcDistance.js.map
\No newline at end of file