90 lines
3.2 KiB
JavaScript
90 lines
3.2 KiB
JavaScript
/**
|
|
* Internal dependencies
|
|
*/
|
|
import Currency from '../src';
|
|
|
|
describe( 'formatCurrency', () => {
|
|
it( 'should use defaults (USD) when currency not passed in', () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatCurrency( 9.99 ) ).toBe( '$9.99' );
|
|
expect( currency.formatCurrency( 30 ) ).toBe( '$30.00' );
|
|
} );
|
|
|
|
it( 'should uses store currency settings, not locale-based', () => {
|
|
const currency = new Currency( {
|
|
code: 'JPY',
|
|
symbol: '¥',
|
|
precision: 3,
|
|
priceFormat: '%2$s%1$s',
|
|
thousandSeparator: '.',
|
|
decimalSeparator: ',',
|
|
} );
|
|
expect( currency.formatCurrency( 9.49258 ) ).toBe( '9,493¥' );
|
|
expect( currency.formatCurrency( 3000 ) ).toBe( '3.000,000¥' );
|
|
expect( currency.formatCurrency( 3.0002 ) ).toBe( '3,000¥' );
|
|
} );
|
|
|
|
it( "should return empty string when given an input that isn't a number", () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatCurrency( 'abc' ) ).toBe( '' );
|
|
expect( currency.formatCurrency( false ) ).toBe( '' );
|
|
expect( currency.formatCurrency( null ) ).toBe( '' );
|
|
} );
|
|
} );
|
|
|
|
describe( 'currency.formatDecimal', () => {
|
|
it( 'should round a number to 2 decimal places in USD', () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatDecimal( 9.49258 ) ).toBe( 9.49 );
|
|
expect( currency.formatDecimal( 30 ) ).toBe( 30 );
|
|
expect( currency.formatDecimal( 3.0002 ) ).toBe( 3 );
|
|
} );
|
|
|
|
it( 'should round a number to 0 decimal places in JPY', () => {
|
|
const currency = new Currency( { precision: 0 } );
|
|
expect( currency.formatDecimal( 1239.88 ) ).toBe( 1240 );
|
|
expect( currency.formatDecimal( 1500 ) ).toBe( 1500 );
|
|
expect( currency.formatDecimal( 33715.02 ) ).toBe( 33715 );
|
|
} );
|
|
|
|
it( 'should correctly convert and round a string', () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatDecimal( '19.80' ) ).toBe( 19.8 );
|
|
} );
|
|
|
|
it( "should return 0 when given an input that isn't a number", () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatDecimal( 'abc' ) ).toBe( 0 );
|
|
expect( currency.formatDecimal( false ) ).toBe( 0 );
|
|
expect( currency.formatDecimal( null ) ).toBe( 0 );
|
|
} );
|
|
} );
|
|
|
|
describe( 'currency.formatDecimalString', () => {
|
|
it( 'should round a number to 2 decimal places in USD', () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatDecimalString( 9.49258 ) ).toBe( '9.49' );
|
|
expect( currency.formatDecimalString( 30 ) ).toBe( '30.00' );
|
|
expect( currency.formatDecimalString( 3.0002 ) ).toBe( '3.00' );
|
|
} );
|
|
|
|
it( 'should round a number to 0 decimal places in JPY', () => {
|
|
const currency = new Currency( { precision: 0 } );
|
|
expect( currency.formatDecimalString( 1239.88 ) ).toBe( '1240' );
|
|
expect( currency.formatDecimalString( 1500 ) ).toBe( '1500' );
|
|
expect( currency.formatDecimalString( 33715.02 ) ).toBe( '33715' );
|
|
} );
|
|
|
|
it( 'should correctly convert and round a string', () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatDecimalString( '19.80' ) ).toBe( '19.80' );
|
|
} );
|
|
|
|
it( "should return empty string when given an input that isn't a number", () => {
|
|
const currency = new Currency();
|
|
expect( currency.formatDecimalString( 'abc' ) ).toBe( '' );
|
|
expect( currency.formatDecimalString( false ) ).toBe( '' );
|
|
expect( currency.formatDecimalString( null ) ).toBe( '' );
|
|
} );
|
|
} );
|