var path = 'Parser/';
define([path + 'model/ParserHtml', path + 'model/ParserCss'],
function(ParserHtml, ParserCss) {
return {
run : function(){
describe('ParserHtml', function() {
var obj;
beforeEach(function () {
obj = new ParserHtml({
textTags: ['br', 'b', 'i', 'u'],
});
});
afterEach(function () {
delete obj;
});
it('Simple div node', function() {
var str = '
';
var result = { tagName: 'div'};
obj.parse(str).html.should.deep.equal(result);
});
it('Simple article node', function() {
var str = '';
var result = { tagName: 'article'};
obj.parse(str).html.should.deep.equal(result);
});
it('Node with attributes', function() {
var str = '';
var result = {
tagName: 'div',
classes: ['test2', 'test3'],
attributes: {
'data-one': 'test4',
id: 'test1',
'strange': 'test5'
}
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse style string to object', function() {
var str = 'color:black; width:100px; test:value;';
var result = {
color: 'black',
width: '100px',
test: 'value',
};
obj.parseStyle(str).should.deep.equal(result);
});
it('Parse class string to array', function() {
var str = 'test1 test2 test3 test-4';
var result = ['test1', 'test2', 'test3', 'test-4'];
obj.parseClass(str).should.deep.equal(result);
});
it('Style attribute is isolated', function() {
var str = '';
var result = {
tagName: 'div',
attributes: { id: 'test1'},
style: {
color: 'black',
width: '100px',
test: 'value',
}
};
obj.parse(str).html.should.deep.equal(result);
});
it('Class attribute is isolated', function() {
var str = '';
var result = {
tagName: 'div',
attributes: { id: 'test1'},
classes: ['test2', 'test3', 'test4']
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse images nodes', function() {
var str = '
';
var result = {
tagName: 'img',
type: 'image',
src: './index.html',
attributes: { id: 'test1'},
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse text nodes', function() {
var str = 'test2
';
var result = {
tagName: 'div',
attributes: { id: 'test1'},
type: 'text',
content: 'test2 ',
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse text with few text tags', function() {
var str = '
test2
a b b i u test
';
var result = {
tagName: 'div',
attributes: { id: 'test1'},
type: 'text',
content: '
test2
a b b i u test ',
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse text with few text tags and nested node', function() {
var str = '';
var result = {
tagName: 'div',
attributes: { id: 'test1'},
components: [{
tagName: 'span',
type: 'text',
content: 'a b b ic ',
},{
tagName: 'div',
type: 'text',
content: 'ABC',
},{
tagName: 'span',
type: 'text',
content: 'i u test ',
}],
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse nested nodes', function() {
var str = ' Text mid ';
var result = {
tagName: 'article',
attributes: {id: 'test1'},
components: [
{
tagName: 'div'
},{
tagName: 'footer',
attributes: { id: 'test2'},
},{
tagName: 'span',
type: 'text',
content: ' Text mid ',
},{
tagName: 'div',
attributes: { id: 'last'},
},
]
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse nested text nodes', function() {
var str = '';
var result = {
tagName: 'div',
components: [{
tagName: 'span',
type: 'text',
content: 'content1 ',
},{
tagName: 'div',
type: 'text',
content: 'nested',
},{
tagName: 'span',
type: 'text',
content: ' content2',
}],
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse nested span text nodes', function() {
var str = '';
var result = {
tagName: 'div',
components: [{
tagName: 'span',
type: 'text',
content: 'content1 ',
},{
tagName: 'div',
components: [{
tagName: 'span',
type: 'text',
content: 'nested',
}]
},{
tagName: 'span',
type: 'text',
content: ' content2',
}],
};
obj.parse(str).html.should.deep.equal(result);
});
it('Parse multiple nodes', function() {
var str = '';
var result = [{ tagName: 'div'},{ tagName: 'div'}];
obj.parse(str).html.should.deep.equal(result);
});
it('Remove script tags', function() {
var str = '';
var result = [{ tagName: 'div'},{ tagName: 'div'}];
obj.parse(str).html.should.deep.equal(result);
});
it('Isolate styles', function() {
var str = '';
var resHtml = [{ tagName: 'div'},{ tagName: 'div'}];
var resCss = [{
selectors: ['a'],
style: { color: 'red'}
},{
selectors: ['b'],
style: { color: 'blue'}
}]
var res = obj.parse(str, new ParserCss());
res.html.should.deep.equal(resHtml);
res.css.should.deep.equal(resCss);
});
it('Parse nested div with text and spaces', function() {
var str = '';
var result = {
tagName: 'div',
components: [{
tagName: 'p',
content: 'TestText',
type: 'text',
}],
};
obj.parse(str).html.should.deep.equal(result);
});
});
}
};
});