chore: Reorganize tests, remove duplicated ones.
This commit is contained in:
parent
2bcb862319
commit
ac866e3943
4 changed files with 64 additions and 587 deletions
|
@ -331,5 +331,5 @@ export function template(str, data) {
|
|||
value = value(data)
|
||||
}
|
||||
return value
|
||||
}
|
||||
})
|
||||
}
|
||||
|
|
|
@ -1,397 +1,4 @@
|
|||
describe('L.Util', function () {
|
||||
describe('#toHTML()', function () {
|
||||
it('should handle title', function () {
|
||||
assert.equal(L.Util.toHTML('# A title'), '<h3>A title</h3>')
|
||||
})
|
||||
|
||||
it('should handle title in the middle of the content', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A phrase\n## A title'),
|
||||
'A phrase<br>\n<h4>A title</h4>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle hr', function () {
|
||||
assert.equal(L.Util.toHTML('---'), '<hr>')
|
||||
})
|
||||
|
||||
it('should handle bold', function () {
|
||||
assert.equal(L.Util.toHTML('Some **bold**'), 'Some <strong>bold</strong>')
|
||||
})
|
||||
|
||||
it('should handle italic', function () {
|
||||
assert.equal(L.Util.toHTML('Some *italic*'), 'Some <em>italic</em>')
|
||||
})
|
||||
|
||||
it('should handle newlines', function () {
|
||||
assert.equal(L.Util.toHTML('two\nlines'), 'two<br>\nlines')
|
||||
})
|
||||
|
||||
it('should not change last newline', function () {
|
||||
assert.equal(L.Util.toHTML('two\nlines\n'), 'two<br>\nlines\n')
|
||||
})
|
||||
|
||||
it('should handle two successive newlines', function () {
|
||||
assert.equal(L.Util.toHTML('two\n\nlines\n'), 'two<br>\n<br>\nlines\n')
|
||||
})
|
||||
|
||||
it('should handle links without formatting', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple http://osm.org link'),
|
||||
'A simple <a href="http://osm.org" target="_blank">http://osm.org</a> link'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle simple link in title', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('# http://osm.org'),
|
||||
'<h3><a href="http://osm.org" target="_blank">http://osm.org</a></h3>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle links with url parameter', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple https://osm.org/?url=https%3A//anotherurl.com link'),
|
||||
'A simple <a href="https://osm.org/?url=https%3A//anotherurl.com" target="_blank">https://osm.org/?url=https%3A//anotherurl.com</a> link'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle simple link inside parenthesis', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple link (http://osm.org)'),
|
||||
'A simple link (<a href="http://osm.org" target="_blank">http://osm.org</a>)'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle simple link with formatting', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple [[http://osm.org]] link'),
|
||||
'A simple <a href="http://osm.org" target="_blank">http://osm.org</a> link'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle simple link with formatting and content', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple [[http://osm.org|link]]'),
|
||||
'A simple <a href="http://osm.org" target="_blank">link</a>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle simple link followed by a carriage return', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple link http://osm.org\nAnother line'),
|
||||
'A simple link <a href="http://osm.org" target="_blank">http://osm.org</a><br>\nAnother line'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle target option', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple http://osm.org link', { target: 'self' }),
|
||||
'A simple <a href="http://osm.org" target="_self">http://osm.org</a> link'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle image', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple image: {{http://osm.org/pouet.png}}'),
|
||||
'A simple image: <img src="http://osm.org/pouet.png">'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle image without text', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('{{http://osm.org/pouet.png}}'),
|
||||
'<img src="http://osm.org/pouet.png">'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle image with width', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple image: {{http://osm.org/pouet.png|100}}'),
|
||||
'A simple image: <img style="width:100px;min-width:100px;" src="http://osm.org/pouet.png">'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle iframe', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple iframe: {{{http://osm.org/pouet.html}}}'),
|
||||
'A simple iframe: <div><iframe height="300px" width="100%" src="http://osm.org/pouet.html" frameborder="0"></iframe></div>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle iframe with height', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple iframe: {{{http://osm.org/pouet.html|200}}}'),
|
||||
'A simple iframe: <div><iframe height="200px" width="100%" src="http://osm.org/pouet.html" frameborder="0"></iframe></div>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle iframe with height and width', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple iframe: {{{http://osm.org/pouet.html|200*400}}}'),
|
||||
'A simple iframe: <div><iframe height="200px" width="400px" src="http://osm.org/pouet.html" frameborder="0"></iframe></div>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle iframe with height with px', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML('A simple iframe: {{{http://osm.org/pouet.html|200px}}}'),
|
||||
'A simple iframe: <div><iframe height="200px" width="100%" src="http://osm.org/pouet.html" frameborder="0"></iframe></div>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle iframe with url parameter', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML(
|
||||
'A simple iframe: {{{https://osm.org/?url=https%3A//anotherurl.com}}}'
|
||||
),
|
||||
'A simple iframe: <div><iframe height="300px" width="100%" src="https://osm.org/?url=https%3A//anotherurl.com" frameborder="0"></iframe></div>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle iframe with height with px', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML(
|
||||
'A double iframe: {{{https://osm.org/pouet}}}{{{https://osm.org/boudin}}}'
|
||||
),
|
||||
'A double iframe: <div><iframe height="300px" width="100%" src="https://osm.org/pouet" frameborder="0"></iframe></div><div><iframe height="300px" width="100%" src="https://osm.org/boudin" frameborder="0"></iframe></div>'
|
||||
)
|
||||
})
|
||||
|
||||
it('http link with http link as parameter as variable', function () {
|
||||
assert.equal(
|
||||
L.Util.toHTML(
|
||||
'A phrase with a [[http://iframeurl.com?to=http://another.com]].'
|
||||
),
|
||||
'A phrase with a <a href="http://iframeurl.com?to=http://another.com" target="_blank">http://iframeurl.com?to=http://another.com</a>.'
|
||||
)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#escapeHTML', function () {
|
||||
it('should escape HTML tags', function () {
|
||||
assert.equal(L.Util.escapeHTML('<span onload="alert(oups)">'), '<span></span>')
|
||||
})
|
||||
|
||||
it('should not escape geo: links', function () {
|
||||
assert.equal(
|
||||
L.Util.escapeHTML('<a href="geo:1,2"></a>'),
|
||||
'<a href="geo:1,2"></a>'
|
||||
)
|
||||
})
|
||||
|
||||
it('should not fail with int value', function () {
|
||||
assert.equal(L.Util.escapeHTML(25), '25')
|
||||
})
|
||||
|
||||
it('should not fail with null value', function () {
|
||||
assert.equal(L.Util.escapeHTML(null), '')
|
||||
})
|
||||
})
|
||||
|
||||
describe('#greedyTemplate', function () {
|
||||
it('should replace simple props', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {variable}.', { variable: 'thing' }),
|
||||
'A phrase with a thing.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should not fail when missing key', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {missing}', {}),
|
||||
'A phrase with a '
|
||||
)
|
||||
})
|
||||
|
||||
it('should process brakets in brakets', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {{{variable}}}.', { variable: 'value' }),
|
||||
'A phrase with a {{value}}.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should not process http links', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {{{http://iframeurl.com}}}.', {
|
||||
'http://iframeurl.com': 'value',
|
||||
}),
|
||||
'A phrase with a {{{http://iframeurl.com}}}.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should not accept dash', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {var-iable}.', { 'var-iable': 'value' }),
|
||||
'A phrase with a {var-iable}.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should accept colon', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {variable:fr}.', {
|
||||
'variable:fr': 'value',
|
||||
}),
|
||||
'A phrase with a value.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should accept arobase', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {@variable}.', {
|
||||
'@variable': 'value',
|
||||
}),
|
||||
'A phrase with a value.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should accept space', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {var iable}.', {
|
||||
'var iable': 'value',
|
||||
}),
|
||||
'A phrase with a value.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should accept non ascii chars', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {Accessibilité} and {переменная}.', {
|
||||
Accessibilité: 'value',
|
||||
переменная: 'another',
|
||||
}),
|
||||
'A phrase with a value and another.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should replace even with ignore if key is found', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate(
|
||||
'A phrase with a {variable:fr}.',
|
||||
{ 'variable:fr': 'value' },
|
||||
true
|
||||
),
|
||||
'A phrase with a value.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should keep string when using ignore if key is not found', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {variable:fr}.', {}, true),
|
||||
'A phrase with a {variable:fr}.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should replace nested variables', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var}.', { fr: { var: 'value' } }),
|
||||
'A phrase with a value.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should not fail if nested variable is missing', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var.foo}.', {
|
||||
fr: { var: 'value' },
|
||||
}),
|
||||
'A phrase with a .'
|
||||
)
|
||||
})
|
||||
|
||||
it('should not fail with nested variables and no data', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var.foo}.', {}),
|
||||
'A phrase with a .'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle fallback value if any', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var.bar|"default"}.', {}),
|
||||
'A phrase with a default.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle fallback var if any', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var.bar|fallback}.', {
|
||||
fallback: 'default',
|
||||
}),
|
||||
'A phrase with a default.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should handle multiple fallbacks', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var.bar|try.again|"default"}.', {}),
|
||||
'A phrase with a default.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should use the first defined value', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var.bar|try.again|"default"}.', {
|
||||
try: { again: 'please' },
|
||||
}),
|
||||
'A phrase with a please.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should use the first defined value', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with a {fr.var.bar|try.again|"default"}.', {
|
||||
try: { again: 'again' },
|
||||
fr: { var: { bar: 'value' } },
|
||||
}),
|
||||
'A phrase with a value.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should support the first example from #820 when translated to final syntax', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('# {name} ({ele|"-"} m ü. M.)', { name: 'Portalet' }),
|
||||
'# Portalet (- m ü. M.)'
|
||||
)
|
||||
})
|
||||
|
||||
it('should support the first example from #820 when translated to final syntax when no fallback required', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('# {name} ({ele|"-"} m ü. M.)', {
|
||||
name: 'Portalet',
|
||||
ele: 3344,
|
||||
}),
|
||||
'# Portalet (3344 m ü. M.)'
|
||||
)
|
||||
})
|
||||
|
||||
it('should support white space in fallback', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate('A phrase with {var|"white space in the fallback."}', {}),
|
||||
'A phrase with white space in the fallback.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should support empty string as fallback', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate(
|
||||
'A phrase with empty string ("{var|""}") in the fallback.',
|
||||
{}
|
||||
),
|
||||
'A phrase with empty string ("") in the fallback.'
|
||||
)
|
||||
})
|
||||
|
||||
it('should support e.g. links as fallback', function () {
|
||||
assert.equal(
|
||||
L.Util.greedyTemplate(
|
||||
'A phrase with {var|"[[https://osm.org|link]]"} as fallback.',
|
||||
{}
|
||||
),
|
||||
'A phrase with [[https://osm.org|link]] as fallback.'
|
||||
)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#TextColorFromBackgroundColor', function () {
|
||||
it('should output white for black', function () {
|
||||
document.body.style.backgroundColor = 'black'
|
||||
|
@ -418,186 +25,4 @@ describe('L.Util', function () {
|
|||
assert.equal(L.DomUtil.TextColorFromBackgroundColor(document.body), '#000000')
|
||||
})
|
||||
})
|
||||
|
||||
describe('#flattenCoordinates()', function () {
|
||||
it('should not alter already flat coords', function () {
|
||||
var coords = [
|
||||
[1, 2],
|
||||
[3, 4],
|
||||
]
|
||||
assert.deepEqual(L.Util.flattenCoordinates(coords), coords)
|
||||
})
|
||||
|
||||
it('should flatten nested coords', function () {
|
||||
var coords = [
|
||||
[
|
||||
[1, 2],
|
||||
[3, 4],
|
||||
],
|
||||
]
|
||||
assert.deepEqual(L.Util.flattenCoordinates(coords), coords[0])
|
||||
coords = [
|
||||
[
|
||||
[
|
||||
[1, 2],
|
||||
[3, 4],
|
||||
],
|
||||
],
|
||||
]
|
||||
assert.deepEqual(L.Util.flattenCoordinates(coords), coords[0][0])
|
||||
})
|
||||
|
||||
it('should not fail on empty coords', function () {
|
||||
var coords = []
|
||||
assert.deepEqual(L.Util.flattenCoordinates(coords), coords)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#usableOption()', function () {
|
||||
it('should consider false', function () {
|
||||
assert.ok(L.Util.usableOption({ key: false }, 'key'))
|
||||
})
|
||||
|
||||
it('should consider 0', function () {
|
||||
assert.ok(L.Util.usableOption({ key: 0 }, 'key'))
|
||||
})
|
||||
|
||||
it('should not consider undefined', function () {
|
||||
assert.notOk(L.Util.usableOption({}, 'key'))
|
||||
})
|
||||
|
||||
it('should not consider empty string', function () {
|
||||
assert.notOk(L.Util.usableOption({ key: '' }, 'key'))
|
||||
})
|
||||
|
||||
it('should consider null', function () {
|
||||
assert.ok(L.Util.usableOption({ key: null }, 'key'))
|
||||
})
|
||||
})
|
||||
|
||||
describe('#normalize()', function () {
|
||||
if (
|
||||
('should remove accents',
|
||||
function () {
|
||||
// French é
|
||||
assert.equal(L.Util.normalize('aéroport'), 'aeroport')
|
||||
// American é
|
||||
assert.equal(L.Util.normalize('aéroport'), 'aeroport')
|
||||
})
|
||||
);
|
||||
})
|
||||
|
||||
describe('#sortFeatures()', function () {
|
||||
let feat1, feat2, feat3
|
||||
before(function () {
|
||||
feat1 = { properties: {} }
|
||||
feat2 = { properties: {} }
|
||||
feat3 = { properties: {} }
|
||||
})
|
||||
it('should sort feature from custom key', function () {
|
||||
feat1.properties.mykey = '13. foo'
|
||||
feat2.properties.mykey = '7. foo'
|
||||
feat3.properties.mykey = '111. foo'
|
||||
let features = L.Util.sortFeatures([feat1, feat2, feat3], 'mykey')
|
||||
assert.equal(features[0], feat2)
|
||||
assert.equal(features[1], feat1)
|
||||
assert.equal(features[2], feat3)
|
||||
})
|
||||
it('should sort feature from multiple keys', function () {
|
||||
feat1.properties.mykey = '13. foo'
|
||||
feat2.properties.mykey = '111. foo'
|
||||
feat3.properties.mykey = '111. foo'
|
||||
feat1.properties.otherkey = 'C'
|
||||
feat2.properties.otherkey = 'B'
|
||||
feat3.properties.otherkey = 'A'
|
||||
let features = L.Util.sortFeatures([feat1, feat2, feat3], 'mykey,otherkey')
|
||||
assert.equal(features[0], feat1)
|
||||
assert.equal(features[1], feat3)
|
||||
assert.equal(features[2], feat2)
|
||||
})
|
||||
it('should sort feature from custom key reverse', function () {
|
||||
feat1.properties.mykey = '13. foo'
|
||||
feat2.properties.mykey = '7. foo'
|
||||
feat3.properties.mykey = '111. foo'
|
||||
let features = L.Util.sortFeatures([feat1, feat2, feat3], '-mykey')
|
||||
assert.equal(features[0], feat3)
|
||||
assert.equal(features[1], feat1)
|
||||
assert.equal(features[2], feat2)
|
||||
})
|
||||
it('should sort feature from multiple keys with reverse', function () {
|
||||
feat1.properties.mykey = '13. foo'
|
||||
feat2.properties.mykey = '111. foo'
|
||||
feat3.properties.mykey = '111. foo'
|
||||
feat1.properties.otherkey = 'C'
|
||||
feat2.properties.otherkey = 'B'
|
||||
feat3.properties.otherkey = 'A'
|
||||
let features = L.Util.sortFeatures([feat1, feat2, feat3], 'mykey,-otherkey')
|
||||
assert.equal(features[0], feat1)
|
||||
assert.equal(features[1], feat2)
|
||||
assert.equal(features[2], feat3)
|
||||
})
|
||||
it('should sort feature with space first', function () {
|
||||
feat1.properties.mykey = '1 foo'
|
||||
feat2.properties.mykey = '2 foo'
|
||||
feat3.properties.mykey = '1a foo'
|
||||
let features = L.Util.sortFeatures([feat1, feat2, feat3], 'mykey')
|
||||
assert.equal(features[0], feat1)
|
||||
assert.equal(features[1], feat3)
|
||||
assert.equal(features[2], feat2)
|
||||
})
|
||||
})
|
||||
|
||||
describe('#getImpactsFromSchema()', function () {
|
||||
let getImpactsFromSchema = U.Utils.getImpactsFromSchema
|
||||
it('should return an array', function () {
|
||||
expect(getImpactsFromSchema(['foo'], {})).to.be.an('array')
|
||||
expect(getImpactsFromSchema(['foo'], { foo: {} })).to.be.an('array')
|
||||
expect(getImpactsFromSchema(['foo'], { foo: { impacts: [] } })).to.be.an('array')
|
||||
expect(getImpactsFromSchema(['foo'], { foo: { impacts: ['A'] } })).to.be.an(
|
||||
'array'
|
||||
)
|
||||
})
|
||||
|
||||
it('should return a list of unique impacted values', function () {
|
||||
let schema = {
|
||||
foo: { impacts: ['A'] },
|
||||
bar: { impacts: ['A', 'B'] },
|
||||
baz: { impacts: ['B', 'C'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['foo'], schema), ['A'])
|
||||
assert.deepEqual(getImpactsFromSchema(['foo', 'bar'], schema), ['A', 'B'])
|
||||
assert.deepEqual(getImpactsFromSchema(['foo', 'bar', 'baz'], schema), [
|
||||
'A',
|
||||
'B',
|
||||
'C',
|
||||
])
|
||||
})
|
||||
it('should return an empty list if nothing is found', function () {
|
||||
let schema = {
|
||||
foo: { impacts: ['A'] },
|
||||
bar: { impacts: ['A', 'B'] },
|
||||
baz: { impacts: ['B', 'C'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['bad'], schema), [])
|
||||
})
|
||||
|
||||
it('should return an empty list if the schema key does not exist', function () {
|
||||
let schema = {
|
||||
foo: { impacts: ['A'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['bad'], schema), [])
|
||||
})
|
||||
it('should work if the "impacts" key is not defined', function () {
|
||||
let schema = {
|
||||
foo: {},
|
||||
bar: { impacts: ['A'] },
|
||||
baz: { impacts: ['B'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['foo', 'bar', 'baz'], schema), ['A', 'B'])
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { describe, it } from 'mocha'
|
||||
|
||||
import pkg from 'chai'
|
||||
const { expect, assert } = pkg
|
||||
const { expect } = pkg
|
||||
|
||||
import URLs from '../js/modules/urls.js'
|
||||
|
||||
|
|
|
@ -1,7 +1,7 @@
|
|||
import { describe, it } from 'mocha'
|
||||
import * as Utils from '../js/modules/utils.js'
|
||||
import pkg from 'chai'
|
||||
const { assert } = pkg
|
||||
const { assert, expect } = pkg
|
||||
|
||||
// Export JSDOM to the global namespace, to be able to check for its presence
|
||||
// in the actual implementation. Avoiding monkeypatching the implementations here.
|
||||
|
@ -454,15 +454,13 @@ describe('Utils', function () {
|
|||
})
|
||||
|
||||
describe('#normalize()', function () {
|
||||
if (
|
||||
('should remove accents',
|
||||
function () {
|
||||
// French é
|
||||
assert.equal(Utils.normalize('aéroport'), 'aeroport')
|
||||
// American é
|
||||
assert.equal(Utils.normalize('aéroport'), 'aeroport')
|
||||
})
|
||||
);
|
||||
it('should remove accents',
|
||||
function () {
|
||||
// French é
|
||||
assert.equal(Utils.normalize('aéroport'), 'aeroport')
|
||||
// American é
|
||||
assert.equal(Utils.normalize('aéroport'), 'aeroport')
|
||||
})
|
||||
})
|
||||
|
||||
describe('#sortFeatures()', function () {
|
||||
|
@ -538,4 +536,58 @@ describe('Utils', function () {
|
|||
assert.deepEqual(returned, { "some": "json" })
|
||||
})
|
||||
})
|
||||
|
||||
describe('#getImpactsFromSchema()', function () {
|
||||
let getImpactsFromSchema = Utils.getImpactsFromSchema
|
||||
it('should return an array', function () {
|
||||
expect(getImpactsFromSchema(['foo'], {})).to.be.an('array')
|
||||
expect(getImpactsFromSchema(['foo'], { foo: {} })).to.be.an('array')
|
||||
expect(getImpactsFromSchema(['foo'], { foo: { impacts: [] } })).to.be.an('array')
|
||||
expect(getImpactsFromSchema(['foo'], { foo: { impacts: ['A'] } })).to.be.an(
|
||||
'array'
|
||||
)
|
||||
})
|
||||
|
||||
it('should return a list of unique impacted values', function () {
|
||||
let schema = {
|
||||
foo: { impacts: ['A'] },
|
||||
bar: { impacts: ['A', 'B'] },
|
||||
baz: { impacts: ['B', 'C'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['foo'], schema), ['A'])
|
||||
assert.deepEqual(getImpactsFromSchema(['foo', 'bar'], schema), ['A', 'B'])
|
||||
assert.deepEqual(getImpactsFromSchema(['foo', 'bar', 'baz'], schema), [
|
||||
'A',
|
||||
'B',
|
||||
'C',
|
||||
])
|
||||
})
|
||||
it('should return an empty list if nothing is found', function () {
|
||||
let schema = {
|
||||
foo: { impacts: ['A'] },
|
||||
bar: { impacts: ['A', 'B'] },
|
||||
baz: { impacts: ['B', 'C'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['bad'], schema), [])
|
||||
})
|
||||
|
||||
it('should return an empty list if the schema key does not exist', function () {
|
||||
let schema = {
|
||||
foo: { impacts: ['A'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['bad'], schema), [])
|
||||
})
|
||||
it('should work if the "impacts" key is not defined', function () {
|
||||
let schema = {
|
||||
foo: {},
|
||||
bar: { impacts: ['A'] },
|
||||
baz: { impacts: ['B'] },
|
||||
}
|
||||
|
||||
assert.deepEqual(getImpactsFromSchema(['foo', 'bar', 'baz'], schema), ['A', 'B'])
|
||||
})
|
||||
})
|
||||
})
|
||||
|
|
Loading…
Reference in a new issue