diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 17:54:43 +0000 |
commit | e4283f6d48b98e764b988b43bbc86b9d52e6ec94 (patch) | |
tree | c8f7f7a6c2f5faa2942d27cefc6fd46cca492656 /tests/unit/highlighter.js | |
parent | Initial commit. (diff) | |
download | gnome-shell-54cc9b72c7f1eca5c7acbdf783df9cfc8e4c2680.tar.xz gnome-shell-54cc9b72c7f1eca5c7acbdf783df9cfc8e4c2680.zip |
Adding upstream version 43.9.upstream/43.9upstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'tests/unit/highlighter.js')
-rw-r--r-- | tests/unit/highlighter.js | 106 |
1 files changed, 106 insertions, 0 deletions
diff --git a/tests/unit/highlighter.js b/tests/unit/highlighter.js new file mode 100644 index 0000000..d582d38 --- /dev/null +++ b/tests/unit/highlighter.js @@ -0,0 +1,106 @@ +// -*- mode: js; js-indent-level: 4; indent-tabs-mode: nil -*- + +// Test cases for SearchResult description match highlighter + +const JsUnit = imports.jsUnit; +const Pango = imports.gi.Pango; + +const Environment = imports.ui.environment; +Environment.init(); + +const Util = imports.misc.util; + +const tests = [ + { input: 'abc cba', + terms: null, + output: 'abc cba' }, + { input: 'abc cba', + terms: [], + output: 'abc cba' }, + { input: 'abc cba', + terms: [''], + output: 'abc cba' }, + { input: 'abc cba', + terms: ['a'], + output: '<b>a</b>bc cb<b>a</b>' }, + { input: 'abc cba', + terms: ['a', 'a'], + output: '<b>a</b>bc cb<b>a</b>' }, + { input: 'CaSe InSenSiTiVe', + terms: ['cas', 'sens'], + output: '<b>CaS</b>e In<b>SenS</b>iTiVe' }, + { input: 'This contains the < character', + terms: null, + output: 'This contains the < character' }, + { input: 'Don\'t', + terms: ['t'], + output: 'Don'<b>t</b>' }, + { input: 'Don\'t', + terms: ['n\'t'], + output: 'Do<b>n't</b>' }, + { input: 'Don\'t', + terms: ['o', 't'], + output: 'D<b>o</b>n'<b>t</b>' }, + { input: 'salt&pepper', + terms: ['salt'], + output: '<b>salt</b>&pepper' }, + { input: 'salt&pepper', + terms: ['salt', 'alt'], + output: '<b>salt</b>&pepper' }, + { input: 'salt&pepper', + terms: ['pepper'], + output: 'salt&<b>pepper</b>' }, + { input: 'salt&pepper', + terms: ['salt', 'pepper'], + output: '<b>salt</b>&<b>pepper</b>' }, + { input: 'salt&pepper', + terms: ['t', 'p'], + output: 'sal<b>t</b>&<b>p</b>e<b>p</b><b>p</b>er' }, + { input: 'salt&pepper', + terms: ['t', '&', 'p'], + output: 'sal<b>t</b><b>&</b><b>p</b>e<b>p</b><b>p</b>er' }, + { input: 'salt&pepper', + terms: ['e'], + output: 'salt&p<b>e</b>pp<b>e</b>r' }, + { input: 'salt&pepper', + terms: ['&a', '&am', '&', '&'], + output: 'salt&pepper' }, + { input: '&&&&&', + terms: ['a'], + output: '&&&&&' }, + { input: '&;&;&;&;&;', + terms: ['a'], + output: '&;&;&;&;&;' }, + { input: '&;&;&;&;&;', + terms: [';'], + output: '&<b>;</b>&<b>;</b>&<b>;</b>&<b>;</b>&<b>;</b>' }, + { input: '&', + terms: ['a'], + output: '&<b>a</b>mp;' } +]; + +try { + for (let i = 0; i < tests.length; i++) { + let highlighter = new Util.Highlighter(tests[i].terms); + let output = highlighter.highlight(tests[i].input); + + JsUnit.assertEquals(`Test ${i + 1} highlight ` + + `"${tests[i].terms}" in "${tests[i].input}"`, + output, tests[i].output); + + let parsed = false; + try { + Pango.parse_markup(output, -1, ''); + parsed = true; + } catch (e) {} + JsUnit.assertEquals(`Test ${i + 1} is valid markup`, true, parsed); + } +} catch (e) { + if (typeof(e.isJsUnitException) != 'undefined' + && e.isJsUnitException) + { + if (e.comment) + log(`Error in: ${e.comment}`); + } + throw e; +} |