All files / workspace/modules DominosErrors.js

72.66% Statements 101/139
87.5% Branches 7/8
55.56% Functions 5/9
72.66% Lines 101/139

Press n or j to go to the next uncovered block, b, p or k for the previous block.

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 1391x 1x 1x 1x 1x 1x 1x 1x                   1x 1x 1x 1x                   1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x               1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x               1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 3x 3x 1x 1x 1x             1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x 1x
//all of these classes will be globally available
 
import Is from "strong-type";
 
const is=new Is;
 
class DominosValidationError extends Error{
    constructor(response){
        is.object(response);
        super();

        //console.log(response)

        this.message='Dominos Order Validation failed with the following information:';
        
        return createErrorMessage(this,response);
    }
};
 
class DominosPriceError extends Error{
    constructor(response){
        is.object(response);
        super();

        //console.log(response)

        this.message='Dominos Order Pricing failed with the following information:';

        return createErrorMessage(this,response);
    }
};
 
class DominosPlaceOrderError extends Error{
    constructor(response){
        is.object(response);
        super();
 
        //console.log(response)
 
        this.message='Dominos Place Order failed with the following information:';
 
        return createErrorMessage(this,response);
    }
};
 
class DominosAddressError extends Error{
    constructor(message){
        is.string(message);
        super();
 
        this.message='Dominos Address Error: '+message;
 
        return this;
    }
};
 
class DominosDateError extends Error{
    constructor(message){
        is.string(message);
        super();

        this.message='Dominos Date Error: '+message;

        return this;
    }
};
 
class DominosStoreError extends Error{
    constructor(message){
        is.string(message);
        super();
 
        this.message='Dominos Store Error: '+message;
 
        return this;
    }
};
 
class DominosProductsError extends Error{
    constructor(message){
        is.string(message);
        super();

        this.message='Dominos Products Error: '+message;

        return this;
    }
};
 
class DominosTrackingError extends Error{
    constructor(message){
        is.string(message);
        super();
 
        this.message='Dominos Tracking Error: '+message;
 
        return this;
    }
};
 
const createErrorMessage=function(self,response){
    is.object(self);
    is.object(response);
 
    //console.dir(response,{depth:2})
 
    if(response.Order.StatusItems){
        for(const [i,statusItem] 
            of Object.entries(response.Order.StatusItems)
        ){
            self.message+=` ${statusItem.Code}:'${statusItem.Message||''}',`
        }
    }
 
    if(response.Order.CorrectiveAction){
        for(const [key,value] 
            of Object.entries(response.Order.CorrectiveAction)
        ){
            self.message+=` ${key}:'${value}',`
        }
    }
 
    for(const [i,statusItem] 
        of Object.entries(response.StatusItems)
    ){
        self.message+=` ${statusItem.Code},`
    }
 
    return self;
}
 
global.DominosValidationError=DominosValidationError;
global.DominosPriceError=DominosPriceError;
global.DominosPlaceOrderError=DominosPlaceOrderError;
global.DominosAddressError=DominosAddressError;
global.DominosDateError=DominosDateError;
global.DominosStoreError=DominosStoreError;
global.DominosProductsError=DominosProductsError;
global.DominosTrackingError=DominosTrackingError;