This commit is contained in:
Gerard 2019-01-24 10:04:20 +01:00
commit 91b0484c74
81 changed files with 80 additions and 82 deletions

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('message send()', () => { describe('message send()', () => {
it('should call the send method and return the response', async() => { it('should call the send method and return the response', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('userConfig getUserConfig()', () => { describe('userConfig getUserConfig()', () => {
it(`should return the configuration data of a given user`, async() => { it(`should return the configuration data of a given user`, async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('workerMana getCurrentWorkerMana()', () => { describe('workerMana getCurrentWorkerMana()', () => {
it('should get the mana of the logged worker', async() => { it('should get the mana of the logged worker', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('loopback model Account', () => { describe('loopback model Account', () => {
it('should return true if the user has the given role', async() => { it('should return true if the user has the given role', async() => {

View File

@ -11,8 +11,6 @@ let verbose = false;
if (process.argv[2] === '--v') if (process.argv[2] === '--v')
verbose = true; verbose = true;
serviceRoot = `${__dirname}/../loopback`;
let Jasmine = require('jasmine'); let Jasmine = require('jasmine');
let jasmine = new Jasmine(); let jasmine = new Jasmine();
let SpecReporter = require('jasmine-spec-reporter').SpecReporter; let SpecReporter = require('jasmine-spec-reporter').SpecReporter;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Model crud()', () => { describe('Model crud()', () => {
let insertId; let insertId;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Model getSetValues()', () => { describe('Model getSetValues()', () => {
it('should extend getSetValues properties to any model passed', () => { it('should extend getSetValues properties to any model passed', () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Model rewriteDbError()', () => { describe('Model rewriteDbError()', () => {
it('should extend rewriteDbError properties to any model passed', () => { it('should extend rewriteDbError properties to any model passed', () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
// xcluded waiting for fixtures // xcluded waiting for fixtures
xdescribe('claimBeginning', () => { xdescribe('claimBeginning', () => {
let ticket; let ticket;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Claim importTicketSales()', () => { describe('Claim importTicketSales()', () => {
let claimEnds; let claimEnds;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Claim Create', () => { describe('Claim Create', () => {
let newDate = new Date(); let newDate = new Date();

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('claim getSummary()', () => { describe('claim getSummary()', () => {
it('should return summary with claim, salesClaimed, developments and actions defined ', async() => { it('should return summary with claim, salesClaimed, developments and actions defined ', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
// xcluded waiting for fixtures // xcluded waiting for fixtures
xdescribe('regularizeClaim()', () => { xdescribe('regularizeClaim()', () => {
const claimFk = 1; const claimFk = 1;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Update Claim', () => { describe('Update Claim', () => {
let newDate = new Date(); let newDate = new Date();

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client activeWorkersWithRole', () => { describe('Client activeWorkersWithRole', () => {
it('should return the sales people as result', async() => { it('should return the sales people as result', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client addressesPropagateRe', () => { describe('Client addressesPropagateRe', () => {
let client; let client;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client confirmTransaction', () => { describe('Client confirmTransaction', () => {
const transactionId = 2; const transactionId = 2;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client Create', () => { describe('Client Create', () => {
const clientName = 'Wade'; const clientName = 'Wade';

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('client getAverageInvoiced()', () => { describe('client getAverageInvoiced()', () => {
it('should call the getAverageInvoiced method', done => { it('should call the getAverageInvoiced method', done => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client card', () => { describe('Client card', () => {
it('should call the card() method to receive a formated card of Bruce Wayne', async() => { it('should call the card() method to receive a formated card of Bruce Wayne', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
xdescribe('client getDebt()', () => { xdescribe('client getDebt()', () => {
it('should return the client debt', async () => { it('should return the client debt', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('client getMana()', () => { describe('client getMana()', () => {
it('should call the getMana method', async() => { it('should call the getMana method', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client getTransations', () => { describe('Client getTransations', () => {
it('should call getTransations() method to receive a list of Web Payments from Bruce Wayne', async() => { it('should call getTransations() method to receive a list of Web Payments from Bruce Wayne', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client hasCustomerRole', () => { describe('Client hasCustomerRole', () => {
it('should call the hasCustomerRole() method with a customer id', done => { it('should call the hasCustomerRole() method with a customer id', done => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client isValidClient', () => { describe('Client isValidClient', () => {
it('should call the isValidClient() method with a client id and receive true', done => { it('should call the isValidClient() method with a client id and receive true', done => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client listWorkers', () => { describe('Client listWorkers', () => {
it('should call the listWorkers()', done => { it('should call the listWorkers()', done => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('client summary()', () => { describe('client summary()', () => {
it('should return a summary object containing data', async() => { it('should return a summary object containing data', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client updateFiscalData', () => { describe('Client updateFiscalData', () => {
afterAll(async() => { afterAll(async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Client createWithInsurance', () => { describe('Client createWithInsurance', () => {
let classificationId; let classificationId;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('receipt filter()', () => { describe('receipt filter()', () => {
it('should call the filter method', async () => { it('should call the filter method', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('loopback model address', () => { describe('loopback model address', () => {
let createdAddressId; let createdAddressId;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item filterItemTags()', () => { describe('item filterItemTags()', () => {
it('should filter ItemTags table', async () => { it('should filter ItemTags table', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item clone()', () => { describe('item clone()', () => {
let nextItemId; let nextItemId;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item filter()', () => { describe('item filter()', () => {
it('should return 1 result using filter and tags', async() => { it('should return 1 result using filter and tags', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item getShipped()', () => { describe('item getShipped()', () => {
it('should return 3 entries, the first one with the property balance -100', async() => { it('should return 3 entries, the first one with the property balance -100', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item getLastEntries()', () => { describe('item getLastEntries()', () => {
it('should return one entry for a given item', async () => { it('should return one entry for a given item', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item getSummary()', () => { describe('item getSummary()', () => {
it('should return summary with item, tags, botanical, niches, available and visible defined ', async() => { it('should return summary with item, tags, botanical, niches, available and visible defined ', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item new()', () => { describe('item new()', () => {
let item; let item;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('regularize()', () => { describe('regularize()', () => {
const itemFk = 1; const itemFk = 1;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('item updateTaxes()', () => { describe('item updateTaxes()', () => {
afterAll(async() => { afterAll(async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('loopback model Item', () => { describe('loopback model Item', () => {
describe('availableId()', () => { describe('availableId()', () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order addToOrder()', () => { describe('order addToOrder()', () => {
let rowToDelete; let rowToDelete;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order removes()', () => { describe('order removes()', () => {
let row; let row;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order catalogFilter()', () => { describe('order catalogFilter()', () => {
it('should return an array of items', async() => { it('should return an array of items', async() => {
let filter = { let filter = {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order getTaxes()', () => { describe('order getTaxes()', () => {
it('should call the getTaxes method and return undefined if its called with a string', async() => { it('should call the getTaxes method and return undefined if its called with a string', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order getTotal()', () => { describe('order getTotal()', () => {
it('should return the total', async() => { it('should return the total', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order getTotalVolume()', () => { describe('order getTotalVolume()', () => {
it('should return the total', async() => { it('should return the total', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order getVAT()', () => { describe('order getVAT()', () => {
it('should call the getVAT method and return the response', async() => { it('should call the getVAT method and return the response', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order getVolumes()', () => { describe('order getVolumes()', () => {
it('should return the volumes of a given order id', async() => { it('should return the volumes of a given order id', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order isEditable()', () => { describe('order isEditable()', () => {
it('should return false when the given order is not editable', async() => { it('should return false when the given order is not editable', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
let UserError = require('vn-loopback/util/user-error'); let UserError = require('vn-loopback/util/user-error');
describe('order new()', () => { describe('order new()', () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('order summary()', () => { describe('order summary()', () => {
it('should return a summary object containing data from 1 order', async() => { it('should return a summary object containing data from 1 order', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('Order updateBasicData', () => { describe('Order updateBasicData', () => {
afterAll(async () => { afterAll(async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket listPackaging()', () => { describe('ticket listPackaging()', () => {
it('should call the listPackaging method and return the response', async () => { it('should call the listPackaging method and return the response', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket listSaleTracking()', () => { describe('ticket listSaleTracking()', () => {
it('should call the listSaleTracking method and return the response', async() => { it('should call the listSaleTracking method and return the response', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('sale getClaimableFromTicket()', () => { describe('sale getClaimableFromTicket()', () => {
it('should return the claimable sales of a given ticket', async() => { it('should return the claimable sales of a given ticket', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('sale moveToTicket()', () => { describe('sale moveToTicket()', () => {
it('should throw an error if the ticket is not editable', async () => { it('should throw an error if the ticket is not editable', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('sale priceDifference()', () => { describe('sale priceDifference()', () => {
it('should return ticket price differences', async() => { it('should return ticket price differences', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('sale removes()', () => { describe('sale removes()', () => {
let sale; let sale;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('sale reserve()', () => { describe('sale reserve()', () => {
afterAll(async() => { afterAll(async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('sale updatePrice()', () => { describe('sale updatePrice()', () => {
it('should throw an error if the price is not a number', async() => { it('should throw an error if the price is not a number', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('sale updateQuantity()', () => { describe('sale updateQuantity()', () => {
it('should throw an error if the quantity is not a number', async() => { it('should throw an error if the quantity is not a number', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket changeState()', () => { describe('ticket changeState()', () => {
let ticket; let ticket;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket componentUpdate()', () => { describe('ticket componentUpdate()', () => {
let firstvalueBeforeChange; let firstvalueBeforeChange;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket deleted()', () => { describe('ticket deleted()', () => {
let ticket; let ticket;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket filter()', () => { describe('ticket filter()', () => {
it('should call the filter method', async () => { it('should call the filter method', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getLanded()', () => { describe('ticket getLanded()', () => {
it('should return a landing date', async() => { it('should return a landing date', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getSales()', () => { describe('ticket getSales()', () => {
it('should return the sales of a ticket', async () => { it('should return the sales of a ticket', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getSalesPersonMana()', () => { describe('ticket getSalesPersonMana()', () => {
it('should get the mana of a salesperson of a given ticket', async() => { it('should get the mana of a salesperson of a given ticket', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getShipped()', () => { describe('ticket getShipped()', () => {
it('should return a shipment date', async() => { it('should return a shipment date', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getTaxes()', () => { describe('ticket getTaxes()', () => {
it('should return the tax of a given ticket', async() => { it('should return the tax of a given ticket', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getTotal()', () => { describe('ticket getTotal()', () => {
it('should return the total of a ticket', async() => { it('should return the total of a ticket', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getTotalVolume()', () => { describe('ticket getTotalVolume()', () => {
it('should return the total volume of a ticket', async() => { it('should return the total volume of a ticket', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getVAT()', () => { describe('ticket getVAT()', () => {
it('should call the getVAT method and return the response', async() => { it('should call the getVAT method and return the response', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket getVolume()', () => { describe('ticket getVolume()', () => {
it('should call the getVolume method', async() => { it('should call the getVolume method', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket isEditable()', () => { describe('ticket isEditable()', () => {
it('should return false if the ticket given is not editable', async () => { it('should return false if the ticket given is not editable', async () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket new()', () => { describe('ticket new()', () => {
let ticket; let ticket;

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket summary()', () => { describe('ticket summary()', () => {
it('should return a summary object containing data from 1 ticket', async() => { it('should return a summary object containing data from 1 ticket', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket threeLastActive()', () => { describe('ticket threeLastActive()', () => {
it('should return the last three active tickets', async() => { it('should return the last three active tickets', async() => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('loopback model State', () => { describe('loopback model State', () => {
describe('isAlertLevelZero()', () => { describe('isAlertLevelZero()', () => {

View File

@ -1,4 +1,4 @@
const app = require(`${serviceRoot}/server/server`); const app = require('vn-loopback/server/server');
describe('ticket model TicketTracking', () => { describe('ticket model TicketTracking', () => {
let ticketTrackingId; let ticketTrackingId;