2018-10-09 11:25:53 -04:00
|
|
|
/* eslint-disable no-var, no-return-assign */
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2018-03-09 15:18:59 -05:00
|
|
|
import $ from 'jquery';
|
2017-12-13 04:26:44 -05:00
|
|
|
import syntaxHighlight from '~/syntax_highlight';
|
2016-07-24 16:45:11 -04:00
|
|
|
|
2017-12-13 04:26:44 -05:00
|
|
|
describe('Syntax Highlighter', function() {
|
|
|
|
var stubUserColorScheme;
|
|
|
|
stubUserColorScheme = function(value) {
|
|
|
|
if (window.gon == null) {
|
|
|
|
window.gon = {};
|
|
|
|
}
|
2018-10-17 03:13:26 -04:00
|
|
|
return (window.gon.user_color_scheme = value);
|
2017-12-13 04:26:44 -05:00
|
|
|
};
|
|
|
|
describe('on a js-syntax-highlight element', function() {
|
|
|
|
beforeEach(function() {
|
|
|
|
return setFixtures('<div class="js-syntax-highlight"></div>');
|
2016-07-24 16:45:11 -04:00
|
|
|
});
|
2018-10-09 14:03:09 -04:00
|
|
|
|
|
|
|
it('applies syntax highlighting', function() {
|
2017-12-13 04:26:44 -05:00
|
|
|
stubUserColorScheme('monokai');
|
|
|
|
syntaxHighlight($('.js-syntax-highlight'));
|
2018-10-09 14:03:09 -04:00
|
|
|
|
|
|
|
expect($('.js-syntax-highlight')).toHaveClass('monokai');
|
2016-07-24 16:45:11 -04:00
|
|
|
});
|
|
|
|
});
|
2018-10-09 14:03:09 -04:00
|
|
|
|
|
|
|
describe('on a parent element', function() {
|
2017-12-13 04:26:44 -05:00
|
|
|
beforeEach(function() {
|
2018-10-17 03:13:26 -04:00
|
|
|
return setFixtures(
|
|
|
|
'<div class="parent">\n <div class="js-syntax-highlight"></div>\n <div class="foo"></div>\n <div class="js-syntax-highlight"></div>\n</div>',
|
|
|
|
);
|
2017-12-13 04:26:44 -05:00
|
|
|
});
|
2018-10-09 13:01:49 -04:00
|
|
|
|
2017-12-13 04:26:44 -05:00
|
|
|
it('applies highlighting to all applicable children', function() {
|
|
|
|
stubUserColorScheme('monokai');
|
|
|
|
syntaxHighlight($('.parent'));
|
2018-10-09 14:03:09 -04:00
|
|
|
|
2017-12-13 04:26:44 -05:00
|
|
|
expect($('.parent, .foo')).not.toHaveClass('monokai');
|
2018-10-09 14:03:09 -04:00
|
|
|
expect($('.monokai').length).toBe(2);
|
2017-12-13 04:26:44 -05:00
|
|
|
});
|
2018-10-09 14:03:09 -04:00
|
|
|
|
|
|
|
it('prevents an infinite loop when no matches exist', function() {
|
2017-12-13 04:26:44 -05:00
|
|
|
var highlight;
|
|
|
|
setFixtures('<div></div>');
|
|
|
|
highlight = function() {
|
|
|
|
return syntaxHighlight($('div'));
|
|
|
|
};
|
2018-10-09 14:03:09 -04:00
|
|
|
|
|
|
|
expect(highlight).not.toThrow();
|
2017-12-13 04:26:44 -05:00
|
|
|
});
|
|
|
|
});
|
|
|
|
});
|