mirror of
https://github.com/node-ebics/node-ebics-client.git
synced 2025-08-14 19:55:36 +00:00
test: add additional tests
This commit is contained in:
@@ -3,19 +3,39 @@
|
||||
/* eslint-env node, mocha */
|
||||
|
||||
const { assert } = require('chai');
|
||||
const { resolve } = require('path');
|
||||
|
||||
|
||||
const response = require('../../lib/middleware/response');
|
||||
const serializer = require('../../lib/middleware/serializer');
|
||||
const signer = require('../../lib/middleware/signer');
|
||||
const ebics = require('../../');
|
||||
|
||||
|
||||
const client = new ebics.Client({
|
||||
url: 'https://iso20022test.credit-suisse.com/ebicsweb/ebicsweb',
|
||||
partnerId: 'CRS04381',
|
||||
userId: 'CRS04381',
|
||||
hostId: 'CRSISOTB',
|
||||
passphrase: 'test',
|
||||
keyStorage: ebics.fsKeysStorage(resolve(__dirname, '../support/TEST_KEYS.key')),
|
||||
});
|
||||
|
||||
|
||||
describe('Middlewares', () => {
|
||||
describe('Response Middleware', () => {
|
||||
it('should throw with no unspported protocol version', () => assert.throws(() => response('H003')));
|
||||
it('should not throw with supported protocol version', () => assert.doesNotThrow(() => response.version('H004')));
|
||||
it('should throw with no unsupported protocol version', () => assert.throws(() => response.version('H003')));
|
||||
});
|
||||
describe('Signer Middleware', () => {
|
||||
it('should throw with no unspported protocol version', () => assert.throws(() => signer('H003')));
|
||||
it('should not throw with supported protocol version', () => assert.doesNotThrow(() => signer.version('H004')));
|
||||
it('should throw with no unsupported protocol version', () => assert.throws(() => signer.version('H003')));
|
||||
});
|
||||
describe('Signer Middleware', () => {
|
||||
it('should throw with no unspported protocol version', () => assert.throws(() => serializer('H003')));
|
||||
describe('Serializer Middleware', () => {
|
||||
it('should not throw with supported protocol version and ini operation', () => assert.doesNotThrow(() => serializer.use(ebics.Orders.INI, client)));
|
||||
it('should not throw with supported protocol version and download operation', () => assert.doesNotThrow(() => serializer.use(ebics.Orders.STA('2018-01-01', '2018-02-01'), client)));
|
||||
it('should not throw with supported protocol version and upload operation', () => assert.doesNotThrow(() => serializer.use(ebics.Orders.AZV('<xml />'), client)));
|
||||
it('should throw with no supported protocol version and ', () => assert.throws(() => serializer.use({ version: 'H004', operation: 'unspported' }, client)));
|
||||
it('should throw with no unuspported protocol version', () => assert.throws(() => serializer.use({ version: 'H003' }, client)));
|
||||
});
|
||||
});
|
||||
|
Reference in New Issue
Block a user