Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

fix: corrected the Costa Rican IBAN format #646

Merged
merged 5 commits into from
Mar 23, 2022
Merged
Show file tree
Hide file tree
Changes from 4 commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 6 additions & 2 deletions src/iban.ts
Original file line number Diff line number Diff line change
Expand Up @@ -206,8 +206,12 @@ export = {
},
{
country: 'CR',
total: 21,
total: 22,
bban: [
{
type: 'n',
count: 1,
},
{
type: 'n',
count: 3,
Expand All @@ -217,7 +221,7 @@ export = {
count: 14,
},
],
format: 'CRkk bbbc cccc cccc cccc c',
format: 'CRkk xbbb cccc cccc cccc cc',
},
{
country: 'HR',
Expand Down
44 changes: 44 additions & 0 deletions test/finance_iban.spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -255,6 +255,50 @@ describe('finance_iban', () => {
'the result should be equal to 1'
).toBe(1);
});

it('IBAN for Costa Rica is correct', () => {
// Costa Rica
// https://wise.com/us/iban/costa-rica
// Length 22
// BBAN 1n,3n,14n
// CRkk xbbb cccc cccc cccc cccc cccc
// x = reserve digit
// b = National bank code (digits)
// c = Account number (digits)

// example IBAN CR05 0152 0200 1026 2840 66

const iban = faker.finance.iban(false, 'CR');

expect(iban).satisfy(validator.isIBAN);

const ibanFormated = iban.match(/.{1,4}/g).join(' ');
const bban = iban.substring(4) + iban.substring(0, 4);

expect(
22,
`CR IBAN would be 22 chars length, given is ${iban.length}`
).toBe(iban.length);

expect(
iban.substring(0, 2),
iban.substring(0, 2) +
"must start with 'CR' in CR IBAN " +
ibanFormated
).to.eq('CR');

expect(
iban.substring(2, 22),
iban.substring(2, 22) +
' must contains only digit in AZ IBAN ' +
ibanFormated
).match(/^\d{20}$/);

expect(
ibanLib.mod97(ibanLib.toDigitString(bban)),
'the result should be equal to 1'
).toBe(1);
});
});
}
});
Expand Down