2015-10-31 16:09:38 +00:00
|
|
|
import javascript from '../../../src/js/parser/javascript/parser.js';
|
|
|
|
import util from '../../../src/js/util.js';
|
2014-12-22 21:09:27 +00:00
|
|
|
import _ from 'lodash';
|
2014-12-20 15:18:00 +00:00
|
|
|
|
|
|
|
describe('parser/javascript/charset_range.js', function() {
|
|
|
|
|
2014-12-22 21:16:17 +00:00
|
|
|
_.forIn({
|
|
|
|
'a-z': {
|
|
|
|
first: jasmine.objectContaining({ textValue: 'a' }),
|
|
|
|
last: jasmine.objectContaining({ textValue: 'z' })
|
|
|
|
},
|
|
|
|
'\\b-z': {
|
|
|
|
first: jasmine.objectContaining({ textValue: '\\b' }),
|
|
|
|
last: jasmine.objectContaining({ textValue: 'z' })
|
|
|
|
},
|
|
|
|
'\\f-z': {
|
|
|
|
first: jasmine.objectContaining({ textValue: '\\f' }),
|
|
|
|
last: jasmine.objectContaining({ textValue: 'z' })
|
|
|
|
},
|
|
|
|
'\\n-z': {
|
|
|
|
first: jasmine.objectContaining({ textValue: '\\n' }),
|
|
|
|
last: jasmine.objectContaining({ textValue: 'z' })
|
|
|
|
},
|
|
|
|
'\\r-z': {
|
|
|
|
first: jasmine.objectContaining({ textValue: '\\r' }),
|
|
|
|
last: jasmine.objectContaining({ textValue: 'z' })
|
|
|
|
},
|
|
|
|
'\\t-z': {
|
|
|
|
first: jasmine.objectContaining({ textValue: '\\t' }),
|
|
|
|
last: jasmine.objectContaining({ textValue: 'z' })
|
|
|
|
},
|
|
|
|
'\\v-z': {
|
|
|
|
first: jasmine.objectContaining({ textValue: '\\v' }),
|
|
|
|
last: jasmine.objectContaining({ textValue: 'z' })
|
|
|
|
}
|
|
|
|
}, (content, str) => {
|
|
|
|
it(`parses "${str}" as a CharsetRange`, function() {
|
|
|
|
var parser = new javascript.Parser(str);
|
|
|
|
expect(parser.__consume__charset_range()).toEqual(jasmine.objectContaining(content));
|
|
|
|
});
|
2014-12-20 15:18:00 +00:00
|
|
|
});
|
|
|
|
|
2014-12-22 21:09:27 +00:00
|
|
|
_.each([
|
|
|
|
'\\d-a',
|
|
|
|
'\\D-a',
|
|
|
|
'\\s-a',
|
|
|
|
'\\S-a',
|
|
|
|
'\\w-a',
|
|
|
|
'\\W-a'
|
|
|
|
], str => {
|
|
|
|
it(`does not parse "${str}" as a CharsetRange`, function() {
|
|
|
|
var parser = new javascript.Parser(str);
|
|
|
|
expect(parser.__consume__charset_range()).toEqual(null);
|
|
|
|
});
|
|
|
|
});
|
|
|
|
|
2014-12-22 20:18:49 +00:00
|
|
|
it('throws an exception when the range is out of order', function() {
|
|
|
|
var parser = new javascript.Parser('z-a');
|
|
|
|
expect(() => {
|
|
|
|
parser.__consume__charset_range();
|
|
|
|
}).toThrow('Range out of order in character class: z-a');
|
|
|
|
});
|
|
|
|
|
2014-12-20 15:18:00 +00:00
|
|
|
describe('#_render', function() {
|
|
|
|
|
|
|
|
beforeEach(function() {
|
|
|
|
var parser = new javascript.Parser('a-z');
|
|
|
|
this.node = parser.__consume__charset_range();
|
|
|
|
|
|
|
|
this.node.container = jasmine.createSpyObj('cotnainer', ['addClass', 'text', 'group']);
|
|
|
|
this.node.container.text.and.returnValue('hyphen');
|
|
|
|
|
2015-03-14 21:11:14 +00:00
|
|
|
this.firstDeferred = this.testablePromise();
|
|
|
|
this.lastDeferred = this.testablePromise();
|
2014-12-20 15:18:00 +00:00
|
|
|
|
|
|
|
spyOn(this.node.first, 'render').and.returnValue(this.firstDeferred.promise);
|
|
|
|
spyOn(this.node.last, 'render').and.returnValue(this.lastDeferred.promise);
|
|
|
|
spyOn(util, 'spaceHorizontally');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('renders a hyphen', function() {
|
|
|
|
this.node._render();
|
|
|
|
expect(this.node.container.text).toHaveBeenCalledWith(0, 0, '-');
|
|
|
|
});
|
|
|
|
|
|
|
|
it('spaces the items horizontally', function(done) {
|
|
|
|
this.firstDeferred.resolve();
|
|
|
|
this.lastDeferred.resolve();
|
|
|
|
|
|
|
|
this.node._render()
|
|
|
|
.then(() => {
|
|
|
|
expect(util.spaceHorizontally).toHaveBeenCalledWith([
|
|
|
|
this.node.first,
|
|
|
|
'hyphen',
|
|
|
|
this.node.last
|
|
|
|
], { padding: 5 });
|
2015-03-14 21:11:14 +00:00
|
|
|
done();
|
|
|
|
});
|
2014-12-20 15:18:00 +00:00
|
|
|
});
|
|
|
|
|
|
|
|
});
|
|
|
|
|
|
|
|
});
|