mirror of
https://github.com/kremalicious/metamask-extension.git
synced 2024-11-23 10:30:04 +01:00
564f76584b
Previously the `getMessage` function would throw if a substitution was falsey. Now it will accept any substitution, including `undefined`. A substitution of `null` or `undefined` will still be reported to Sentry and printed to the console as an error, but it will not interrupt execution. Any `null` or `undefined` substitutions will be rendered as empty strings. Ideally we'd never pass in `null` or `undefined` as a substitution, but in practice this sometimes just occurs breifly between renders, which isn't a severe enough problem to justify crashing the UI. The detection of React component substitutions has been updated as well, to ensure that `null` values aren't counted as React substitutions.
161 lines
5.8 KiB
JavaScript
161 lines
5.8 KiB
JavaScript
import { getMessage } from './i18n-helper'
|
|
import React from 'react'
|
|
import { shallow } from 'enzyme'
|
|
import assert from 'assert'
|
|
|
|
describe('i18n helper', function () {
|
|
const TEST_LOCALE_CODE = 'TEST_LOCALE_CODE'
|
|
|
|
const TEST_KEY_1 = 'TEST_KEY_1'
|
|
const TEST_KEY_2 = 'TEST_KEY_2'
|
|
const TEST_KEY_3 = 'TEST_KEY_3'
|
|
const TEST_KEY_4 = 'TEST_KEY_4'
|
|
const TEST_KEY_5 = 'TEST_KEY_5'
|
|
const TEST_KEY_6 = 'TEST_KEY_6'
|
|
const TEST_KEY_6_HELPER = 'TEST_KEY_6_HELPER'
|
|
const TEST_KEY_7 = 'TEST_KEY_7'
|
|
const TEST_KEY_7_HELPER_1 = 'TEST_KEY_7_HELPER_1'
|
|
const TEST_KEY_7_HELPER_2 = 'TEST_KEY_7_HELPER_2'
|
|
const TEST_KEY_8 = 'TEST_KEY_8'
|
|
const TEST_KEY_8_HELPER_1 = 'TEST_KEY_8_HELPER_1'
|
|
const TEST_KEY_8_HELPER_2 = 'TEST_KEY_8_HELPER_2'
|
|
|
|
const TEST_SUBSTITUTION_1 = 'TEST_SUBSTITUTION_1'
|
|
const TEST_SUBSTITUTION_2 = 'TEST_SUBSTITUTION_2'
|
|
const TEST_SUBSTITUTION_3 = 'TEST_SUBSTITUTION_3'
|
|
const TEST_SUBSTITUTION_4 = 'TEST_SUBSTITUTION_4'
|
|
const TEST_SUBSTITUTION_5 = 'TEST_SUBSTITUTION_5'
|
|
|
|
const testLocaleMessages = {
|
|
[TEST_KEY_1]: {
|
|
message: 'This is a simple message.',
|
|
expectedResult: 'This is a simple message.',
|
|
},
|
|
[TEST_KEY_2]: {
|
|
message: 'This is a message with a single non-react substitution $1.',
|
|
},
|
|
[TEST_KEY_3]: {
|
|
message: 'This is a message with two non-react substitutions $1 and $2.',
|
|
},
|
|
[TEST_KEY_4]: {
|
|
message: '$1 - $2 - $3 - $4 - $5',
|
|
},
|
|
[TEST_KEY_5]: {
|
|
message: '$1 - $2 - $3',
|
|
},
|
|
[TEST_KEY_6]: {
|
|
'message': 'Testing a react substitution $1.',
|
|
},
|
|
[TEST_KEY_6_HELPER]: {
|
|
'message': TEST_SUBSTITUTION_1,
|
|
},
|
|
[TEST_KEY_7]: {
|
|
'message': 'Testing a react substitution $1 and another $2.',
|
|
},
|
|
[TEST_KEY_7_HELPER_1]: {
|
|
'message': TEST_SUBSTITUTION_1,
|
|
},
|
|
[TEST_KEY_7_HELPER_2]: {
|
|
'message': TEST_SUBSTITUTION_2,
|
|
},
|
|
[TEST_KEY_8]: {
|
|
'message': 'Testing a mix $1 of react substitutions $2 and string substitutions $3 + $4.',
|
|
},
|
|
[TEST_KEY_8_HELPER_1]: {
|
|
'message': TEST_SUBSTITUTION_3,
|
|
},
|
|
[TEST_KEY_8_HELPER_2]: {
|
|
'message': TEST_SUBSTITUTION_4,
|
|
},
|
|
}
|
|
const t = getMessage.bind(null, TEST_LOCALE_CODE, testLocaleMessages)
|
|
|
|
const TEST_SUBSTITUTION_6 = (
|
|
<div
|
|
style={{ color: 'red' }}
|
|
key="test-react-substitutions-1"
|
|
>
|
|
{ t(TEST_KEY_6_HELPER) }
|
|
</div>
|
|
)
|
|
const TEST_SUBSTITUTION_7_1 = (
|
|
<div
|
|
style={{ color: 'red' }}
|
|
key="test-react-substitutions-1"
|
|
>
|
|
{ t(TEST_KEY_7_HELPER_1) }
|
|
</div>
|
|
)
|
|
const TEST_SUBSTITUTION_7_2 = (
|
|
<div
|
|
style={{ color: 'blue' }}
|
|
key="test-react-substitutions-1"
|
|
>
|
|
{ t(TEST_KEY_7_HELPER_2) }
|
|
</div>
|
|
)
|
|
const TEST_SUBSTITUTION_8_1 = (
|
|
<div
|
|
style={{ color: 'orange' }}
|
|
key="test-react-substitutions-1"
|
|
>
|
|
{ t(TEST_KEY_8_HELPER_1) }
|
|
</div>
|
|
)
|
|
const TEST_SUBSTITUTION_8_2 = (
|
|
<div
|
|
style={{ color: 'pink' }}
|
|
key="test-react-substitutions-1"
|
|
>
|
|
{ t(TEST_KEY_8_HELPER_2) }
|
|
</div>
|
|
)
|
|
|
|
describe('getMessage', function () {
|
|
it('should return the exact message paired with key if there are no substitutions', function () {
|
|
const result = t(TEST_KEY_1)
|
|
assert.equal(result, 'This is a simple message.')
|
|
})
|
|
|
|
it('should return the correct message when a single non-react substitution is made', function () {
|
|
const result = t(TEST_KEY_2, [ TEST_SUBSTITUTION_1 ])
|
|
assert.equal(result, `This is a message with a single non-react substitution ${TEST_SUBSTITUTION_1}.`)
|
|
})
|
|
|
|
it('should return the correct message when two non-react substitutions are made', function () {
|
|
const result = t(TEST_KEY_3, [ TEST_SUBSTITUTION_1, TEST_SUBSTITUTION_2 ])
|
|
assert.equal(result, `This is a message with two non-react substitutions ${TEST_SUBSTITUTION_1} and ${TEST_SUBSTITUTION_2}.`)
|
|
})
|
|
|
|
it('should return the correct message when multiple non-react substitutions are made', function () {
|
|
const result = t(TEST_KEY_4, [ TEST_SUBSTITUTION_1, TEST_SUBSTITUTION_2, TEST_SUBSTITUTION_3, TEST_SUBSTITUTION_4, TEST_SUBSTITUTION_5 ])
|
|
assert.equal(result, `${TEST_SUBSTITUTION_1} - ${TEST_SUBSTITUTION_2} - ${TEST_SUBSTITUTION_3} - ${TEST_SUBSTITUTION_4} - ${TEST_SUBSTITUTION_5}`)
|
|
})
|
|
|
|
it('should correctly render falsey substitutions', function () {
|
|
const result = t(TEST_KEY_4, [ 0, -0, '', false, NaN ])
|
|
assert.equal(result, '0 - 0 - - false - NaN')
|
|
})
|
|
|
|
it('should render nothing for "null" and "undefined" substitutions', function () {
|
|
const result = t(TEST_KEY_5, [ null, TEST_SUBSTITUTION_2 ])
|
|
assert.equal(result, ` - ${TEST_SUBSTITUTION_2} - `)
|
|
})
|
|
|
|
it('should return the correct message when a single react substitution is made', function () {
|
|
const result = t(TEST_KEY_6, [ TEST_SUBSTITUTION_6 ])
|
|
assert.equal(shallow(result).html(), '<span> Testing a react substitution <div style="color:red">TEST_SUBSTITUTION_1</div>. </span>')
|
|
})
|
|
|
|
it('should return the correct message when two react substitutions are made', function () {
|
|
const result = t(TEST_KEY_7, [ TEST_SUBSTITUTION_7_1, TEST_SUBSTITUTION_7_2 ])
|
|
assert.equal(shallow(result).html(), '<span> Testing a react substitution <div style="color:red">TEST_SUBSTITUTION_1</div> and another <div style="color:blue">TEST_SUBSTITUTION_2</div>. </span>')
|
|
})
|
|
|
|
it('should return the correct message when substituting a mix of react elements and strings', function () {
|
|
const result = t(TEST_KEY_8, [ TEST_SUBSTITUTION_1, TEST_SUBSTITUTION_8_1, TEST_SUBSTITUTION_2, TEST_SUBSTITUTION_8_2 ])
|
|
assert.equal(shallow(result).html(), '<span> Testing a mix TEST_SUBSTITUTION_1 of react substitutions <div style="color:orange">TEST_SUBSTITUTION_3</div> and string substitutions TEST_SUBSTITUTION_2 + <div style="color:pink">TEST_SUBSTITUTION_4</div>. </span>')
|
|
})
|
|
})
|
|
})
|