LearningSalesForceCommerceC.../storefront-reference-architecture/test/mocks/models/shippingMethod.js

86 lines
2.5 KiB
JavaScript
Raw Normal View History

2021-12-21 10:57:31 -08:00
'use strict';
var proxyquire = require('proxyquire').noCallThru().noPreserveCache();
var defaultShippingMethod =
{
description: 'Order received within 7-10 business days',
displayName: 'Ground',
ID: '001',
custom: {
estimatedArrivalTime: '7-10 Business Days'
}
};
function createShipmentShippingModel() {
return {
applicableShippingMethods: [
{
description: 'Order received within 7-10 business days',
displayName: 'Ground',
ID: '001',
custom: {
estimatedArrivalTime: '7-10 Business Days'
}
},
{
description: 'Order received in 2 business days',
displayName: '2-Day Express',
ID: '002',
shippingCost: '$0.00',
custom: {
estimatedArrivalTime: '2 Business Days'
}
}
],
getApplicableShippingMethods: function () {
return [
{
description: 'Order received within 7-10 business days',
displayName: 'Ground',
ID: '001',
custom: {
estimatedArrivalTime: '7-10 Business Days'
}
},
{
description: 'Order received in 2 business days',
displayName: '2-Day Express',
ID: '002',
shippingCost: '$0.00',
custom: {
estimatedArrivalTime: '2 Business Days'
}
}
];
},
getShippingCost: function () {
return {
amount: {
valueOrNull: 7.99
}
};
}
};
}
function proxyModel() {
return proxyquire('../../../cartridges/app_storefront_base/cartridge/models/shipping/shippingMethod', {
'*/cartridge/scripts/util/formatting': {
formatCurrency: function () {
return '$0.00';
}
},
'dw/order/ShippingMgr': {
getDefaultShippingMethod: function () {
return defaultShippingMethod;
},
getShipmentShippingModel: function (shipment) {
return createShipmentShippingModel(shipment);
}
}
});
}
module.exports = proxyModel();