Merge with dev

This commit is contained in:
Juan Ferrer Toribio 2018-01-31 12:19:34 +01:00
commit cba0645f92
12 changed files with 56 additions and 26 deletions

View File

@ -1,6 +1,6 @@
import app from '../../../server/server';
import routes from '../routes';
import restoreFixtures from '../../../../../services/db/testing_fixtures';
const app = require('../../../server/server');
const routes = require('../routes');
const restoreFixtures = require('../../../../../services/db/testing_fixtures');
describe('Auth routes', () => {
let fixturesToApply = {tables: ['`salix`.`user`'], inserts: [

View File

@ -1,5 +1,5 @@
import totalGreuge from '../total';
import {catchErrors} from '../../../../../../services/utils/jasmineHelpers';
const totalGreuge = require('../total');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
describe('Greuge totalGreuge()', () => {
it('should call the sumAmount method', done => {

View File

@ -32,11 +32,10 @@ let truncate = (tables, callback) => {
connection.connect();
export default function restoreFixtures(fixturesToApply, callback) {
module.exports = function restoreFixtures(fixturesToApply, callback) {
connection.query('SET FOREIGN_KEY_CHECKS = 0', () => {
truncate(fixturesToApply.tables, () => {
insertFixtures(fixturesToApply.inserts, callback);
});
});
}
};

View File

@ -1,6 +1,6 @@
import app from '../../../../server/server';
import {catchErrors} from '../../../../../../services/utils/jasmineHelpers';
import restoreFixtures from '../../../../../../services/db/testing_fixtures';
const app = require('../../../../server/server');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
const restoreFixtures = require('../../../../../../services/db/testing_fixtures');
describe('Client addressesPropagateRe', () => {
let fixturesToApply = {tables: ['`account`.`user`', '`vn2008`.`Clientes`', '`vn2008`.`Consignatarios`'], inserts: [

View File

@ -1,5 +1,5 @@
import app from '../../../../server/server';
import {catchErrors} from '../../../../../../services/utils/jasmineHelpers';
const app = require('../../../../server/server');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
describe('Client card', () => {
it('should call the card() method to receive a formated card of Bruce Wayne', done => {

View File

@ -1,6 +1,6 @@
import app from '../../../../server/server';
import {catchErrors} from '../../../../../../services/utils/jasmineHelpers';
import restoreFixtures from '../../../../../../services/db/testing_fixtures';
const app = require('../../../../server/server');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
const restoreFixtures = require('../../../../../../services/db/testing_fixtures');
describe('Client Create', () => {
let fixturesToApply = {tables: ['`account`.`user`', '`vn2008`.`Clientes`', '`vn2008`.`Consignatarios`'], inserts: [

View File

@ -1,5 +1,5 @@
import app from '../../../../server/server';
import {catchErrors} from '../../../../../../services/utils/jasmineHelpers';
const app = require('../../../../server/server');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
describe('Client hasCustomerRole', () => {
it('should call the hasCustomerRole() method with a customer id', done => {

View File

@ -1,5 +1,5 @@
import app from '../../../../server/server';
import {catchErrors} from '../../../../../../services/utils/jasmineHelpers';
const app = require('../../../../server/server');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers');
describe('Client addresses', () => {
it('should call the listAddresses method and receive total results and items', done => {

View File

@ -1,5 +1,5 @@
import app from '../../../../server/server';
import {catchErrors} from '../../../../../../services/utils/jasmineHelpers';
const app = require('../../../../server/server');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
describe('Client listWorkers', () => {
it('should call the listWorkers()', done => {

View File

@ -0,0 +1,33 @@
const app = require('../../../../server/server');
const catchErrors = require('../../../../../../services/utils/jasmineHelpers').catchErrors;
describe('Client activeSalesPerson', () => {
it('should call the activeSalesPerson() method with limit of 1', done => {
let filter = {
limit: 1
};
let callback = (error, result) => {
if (error) return catchErrors(done)(error);
expect(result.length).toEqual(1);
done();
};
app.models.Client.activeSalesPerson(filter, callback);
});
it('should call the activeSalesPerson() method with no limit and receive all 3 salesPersons', done => {
let filter = {
};
let callback = (error, result) => {
if (error) return catchErrors(done)(error);
expect(result.length).toEqual(3);
done();
};
app.models.Client.activeSalesPerson(filter, callback);
});
});

View File

@ -1,8 +1,8 @@
export function catchErrors(done) {
module.exports.catchErrors = function(done) {
return error => {
if (error instanceof Error) {
return done.fail(error.stack);
}
return done.fail(JSON.stringify(error));
};
}
};

View File

@ -1,5 +1,3 @@
require('babel-core/register')({presets: ['es2015']});
process.env.NODE_ENV = 'test';
process.on('warning', warning => {