mirror of
https://github.com/PanJiaChen/vue-element-admin.git
synced 2025-08-10 12:01:57 +08:00
74 lines
2.8 KiB
JavaScript
74 lines
2.8 KiB
JavaScript
// ADempiere-Vue (Frontend) for ADempiere ERP & CRM Smart Business Solution
|
|
// Copyright (C) 2017-Present E.R.P. Consultores y Asociados, C.A.
|
|
// Contributor(s): Sofia Calderon sofia.ester.calderon@gmail.com www.westfalia-it.com
|
|
// This program is free software: you can redistribute it and/or modify
|
|
// it under the terms of the GNU General Public License as published by
|
|
// the Free Software Foundation, either version 3 of the License, or
|
|
// (at your option) any later version.
|
|
|
|
// This program is distributed in the hope that it will be useful,
|
|
// but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
// MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
// GNU General Public License for more details.
|
|
|
|
// You should have received a copy of the GNU General Public License
|
|
// along with this program. If not, see <https://www.gnu.org/licenses/>.
|
|
|
|
import {
|
|
convertOrder,
|
|
convertPointOfSales,
|
|
convertOrderLine,
|
|
convertKeyLayout,
|
|
paymentsMethod
|
|
} from '@/utils/ADempiere/apiConverts/pos'
|
|
import pointOfSales from './objects/fromApi/pointOfSales.json'
|
|
import convertedPointOfSales from './objects/converted/pointOfSales.json'
|
|
import order from './objects/fromApi/order.json'
|
|
import convertedOrder from './objects/converted/order.json'
|
|
import orderLine from './objects/fromApi/orderLine.json'
|
|
import convertedOrderLine from './objects/converted/orderLine.json'
|
|
import keyLayout from './objects/fromApi/keyLayout.json'
|
|
import convertedKeyLayout from './objects/converted/keyLayout.json'
|
|
import paymentMethod from './objects/fromApi/paymentMethod.json'
|
|
import convertedPaymentMethod from './objects/converted/paymentMethod.json'
|
|
|
|
describe('point of sales', () => {
|
|
it('should return a converted point of sales object', () => {
|
|
const actualPointOfSales = convertPointOfSales(pointOfSales)
|
|
expect(actualPointOfSales).toEqual(convertedPointOfSales)
|
|
})
|
|
})
|
|
|
|
describe('order', () => {
|
|
it('should return a converted order object', () => {
|
|
const actualOrder = convertOrder(order)
|
|
expect(actualOrder).toEqual(convertedOrder)
|
|
})
|
|
})
|
|
|
|
describe('orderLine', () => {
|
|
it('should return a converted orderLine object', () => {
|
|
const actualOrderLine = convertOrderLine(orderLine)
|
|
expect(actualOrderLine).toEqual(convertedOrderLine)
|
|
})
|
|
})
|
|
|
|
describe('keyLayout', () => {
|
|
it('should return a converted keyLayout object', () => {
|
|
const actualKeyLayout = convertKeyLayout(keyLayout)
|
|
expect(actualKeyLayout).toEqual(convertedKeyLayout)
|
|
})
|
|
})
|
|
|
|
describe('paymentMethod', () => {
|
|
it('should return a converted paymentMethod object', () => {
|
|
const actualPaymentMethod = paymentsMethod(paymentMethod)
|
|
expect(actualPaymentMethod).toEqual(convertedPaymentMethod)
|
|
})
|
|
|
|
it('should return an undefined object', () => {
|
|
const actualPaymentMethod = paymentsMethod(undefined)
|
|
expect(actualPaymentMethod).toBeUndefined()
|
|
})
|
|
})
|