1
- var parser = require ( '..' ) ;
2
- var parserWithMockedDeps = require ( 'rewire' ) ( '..' ) ;
3
- var describe = require ( 'mocha' ) . describe ;
4
- var it = require ( 'mocha' ) . it ;
5
- var beforeEach = require ( 'mocha' ) . beforeEach ;
6
- var chai = require ( 'chai' ) ;
7
- var sinon = require ( 'sinon' ) ;
8
- var expect = chai . expect ;
1
+ const parser = require ( '..' ) ;
2
+ const parserWithMockedDeps = require ( 'rewire' ) ( '..' ) ;
3
+ const describe = require ( 'mocha' ) . describe ;
4
+ const it = require ( 'mocha' ) . it ;
5
+ const beforeEach = require ( 'mocha' ) . beforeEach ;
6
+ const chai = require ( 'chai' ) ;
7
+ const sinon = require ( 'sinon' ) ;
8
+ const expect = chai . expect ;
9
9
chai . use ( require ( 'sinon-chai' ) ) ;
10
10
11
11
describe ( 'PostHTML-Parser test' , function ( ) {
12
12
describe ( 'Call signatures' , function ( ) {
13
- var customOptions = { lowerCaseTags : false , lowerCaseAttributeNames : false } ;
14
- var MockedHtmlParser2 ;
15
- var parserSpy ;
13
+ const customOptions = { lowerCaseTags : false , lowerCaseAttributeNames : false } ;
14
+ let MockedHtmlParser2 ;
15
+ let parserSpy ;
16
16
17
17
beforeEach ( function ( ) {
18
- // jscs:disable requireFunctionDeclarations
19
18
MockedHtmlParser2 = function ( ) { } ;
20
19
MockedHtmlParser2 . prototype = {
21
- write : function ( ) { } ,
22
- end : function ( ) { }
20
+ write ( ) { } ,
21
+ end ( ) { }
23
22
} ;
24
- // jscs:enable requireFunctionDeclarations
25
23
26
24
// Create spy on mocked htmlparser2 to collect call stats
27
25
parserSpy = sinon . spy ( MockedHtmlParser2 ) ;
@@ -43,7 +41,7 @@ describe('PostHTML-Parser test', function() {
43
41
} ) ;
44
42
45
43
it ( 'should use custom params when called as factory function' , function ( ) {
46
- var factory = parserWithMockedDeps ( customOptions ) ;
44
+ const factory = parserWithMockedDeps ( customOptions ) ;
47
45
expect ( factory ) . to . be . a ( 'function' ) ;
48
46
expect ( factory ( '' ) ) . to . be . an ( 'array' ) ;
49
47
expect ( parserSpy . firstCall . args [ 1 ] ) . to . eql ( customOptions ) ;
@@ -64,7 +62,23 @@ describe('PostHTML-Parser test', function() {
64
62
} ) ;
65
63
66
64
it ( 'should be parse tag with escape object in attribute' , function ( ) {
67
- var htmlString = '<button data-bem="{"button":{"checkedView":"extra"}}"' +
65
+ const htmlString = '<button data-bem="{"button":{"checkedView":"extra"}}"' +
66
+ ' type="submit"></button>' ;
67
+ const tree = [
68
+ {
69
+ tag : 'button' ,
70
+ attrs : {
71
+ type : 'submit' ,
72
+ 'data-bem' : '{"button":{"checkedView":"extra"}}'
73
+ }
74
+ }
75
+ ] ;
76
+
77
+ expect ( parser ( htmlString ) ) . to . eql ( tree ) ;
78
+ } ) ;
79
+
80
+ it . skip ( 'should be parse tag with object in attribute data witchout escape' , function ( ) {
81
+ var htmlString = '<button data-bem="{"button":{"checkedView":"extra"}}"' +
68
82
' type="submit"></button>' ;
69
83
// console.log(htmlString);
70
84
var tree = [
@@ -80,40 +94,23 @@ describe('PostHTML-Parser test', function() {
80
94
expect ( parser ( htmlString ) ) . to . eql ( tree ) ;
81
95
} ) ;
82
96
83
- // it('should be parse tag with object in attribute data witchout escape', function() {
84
- // var htmlString = '<button data-bem="{"button":{"checkedView":"extra"}}"' +
85
- // ' type="submit"></button>';
86
- // // console.log(htmlString);
87
- // var tree = [
88
- // {
89
- // tag: 'button',
90
- // attrs: {
91
- // type: 'submit',
92
- // 'data-bem': '{"button":{"checkedView":"extra"}}'
93
- // }
94
- // }
95
- // ];
96
-
97
- // expect(parser(htmlString)).to.eql(tree);
98
- // });
99
-
100
- // it('should be parse tag with object in attribute data escape', function() {
101
- // var json = JSON.stringify({button: {checkedView:'extra'}});
102
- // var htmlString = '<button data-bem="' + json + '"' +
103
- // ' type="submit"></button>';
104
- // // console.log(htmlString);
105
- // var tree = [
106
- // {
107
- // tag: 'button',
108
- // attrs: {
109
- // type: 'submit',
110
- // 'data-bem': '{"button":{"checkedView":"extra"}}'
111
- // }
112
- // }
113
- // ];
114
-
115
- // expect(parser(htmlString)).to.eql(tree);
116
- // });
97
+ it . skip ( 'should be parse tag with object in attribute data escape' , function ( ) {
98
+ var json = JSON . stringify ( { button : { checkedView :'extra' } } ) ;
99
+ var htmlString = '<button data-bem="' + json + '"' +
100
+ ' type="submit"></button>' ;
101
+ // console.log(htmlString);
102
+ var tree = [
103
+ {
104
+ tag : 'button' ,
105
+ attrs : {
106
+ type : 'submit' ,
107
+ 'data-bem' : '{"button":{"checkedView":"extra"}}'
108
+ }
109
+ }
110
+ ] ;
111
+
112
+ expect ( parser ( htmlString ) ) . to . eql ( tree ) ;
113
+ } ) ;
117
114
118
115
it ( 'should be parse comment in content' , function ( ) {
119
116
expect ( parser ( '<div><!--comment--></div>' ) ) . to . eql ( [ { tag : 'div' , content : [ '<!--comment-->' ] } ] ) ;
@@ -124,7 +121,7 @@ describe('PostHTML-Parser test', function() {
124
121
} ) ;
125
122
126
123
it ( 'should be parse directive' , function ( ) {
127
- var options = {
124
+ const options = {
128
125
directives : [
129
126
{ name : '?php' , start : '<' , end : '>' }
130
127
]
@@ -134,7 +131,7 @@ describe('PostHTML-Parser test', function() {
134
131
} ) ;
135
132
136
133
it ( 'should be parse regular expression directive' , function ( ) {
137
- var options = {
134
+ const options = {
138
135
directives : [
139
136
{ name : / \? ( p h p | = ) .* / , start : '<' , end : '>' }
140
137
]
@@ -145,15 +142,15 @@ describe('PostHTML-Parser test', function() {
145
142
} ) ;
146
143
147
144
it ( 'should be parse directives and tag' , function ( ) {
148
- var options = {
145
+ const options = {
149
146
directives : [
150
147
{ name : '!doctype' , start : '<' , end : '>' } ,
151
148
{ name : '?php' , start : '<' , end : '>' }
152
149
]
153
150
} ;
154
151
155
- var html = '<!doctype html><header><?php echo \"Hello word\"; ?></header><body>{{%njk test %}}</body>' ;
156
- var tree = [
152
+ const html = '<!doctype html><header><?php echo \"Hello word\"; ?></header><body>{{%njk test %}}</body>' ;
153
+ const tree = [
157
154
'<!doctype html>' ,
158
155
{
159
156
content : [ '<?php echo \"Hello word\"; ?>' ] ,
0 commit comments