@evlop/commons 1.0.261 → 1.0.263

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -1,217 +1,336 @@
1
1
  import parseEDL from './parser';
2
2
  import { expect } from 'chai';
3
3
  describe('parseEDL', () => {
4
- it('should parse an EDL string with a single tag and no props', () => {
5
- const edlString = '<div></div>';
6
- const result = parseEDL(edlString, new Set());
7
- expect(result).to.be.an('array').with.lengthOf(1);
8
- expect(result[0].tag).to.equal('div');
9
- expect(result[0].staticProps).to.deep.equal({});
10
- expect(result[0].variableProps).to.deep.equal({});
11
- expect(result[0].children).to.deep.equal([]);
12
- });
13
- it('should parse an EDL string with a single tag and static props', () => {
14
- const edlString = '<div class="container" id="main"></div>';
15
- const result = parseEDL(edlString, new Set());
16
- expect(result).to.be.an('array').with.lengthOf(1);
17
- expect(result[0].tag).to.equal('div');
18
- expect(result[0].staticProps).to.deep.equal({ className: 'container', id: 'main' });
19
- expect(result[0].variableProps).to.deep.equal({});
20
- expect(result[0].children).to.deep.equal([]);
21
- });
22
- it('should parse an EDL string with inline expression interpolation', () => {
23
- const edlString = '<Text>Hello {user.name}!</Text>';
24
- const result = parseEDL(edlString, new Set(['user']));
25
- expect(result).to.be.an('array').with.lengthOf(1);
26
- expect(result[0].tag).to.equal('Text');
27
- expect(result[0].children).to.be.an('array').with.lengthOf(3);
28
- expect(result[0].children[0]).to.equal('Hello ');
29
- expect(result[0].children[1]).to.be.a('function'); // The interpolated expression
30
- expect(result[0].children[2]).to.equal('!');
31
- });
32
- it('should parse an EDL string with nested tags', () => {
33
- const edlString = '<div><span>Hello World</span></div>';
34
- const result = parseEDL(edlString, new Set());
35
- expect(result).to.be.an('array').with.lengthOf(1);
36
- expect(result[0].tag).to.equal('div');
37
- expect(result[0].children).to.be.an('array').with.lengthOf(1);
38
- expect(result[0].children[0].tag).to.equal('span');
39
- expect(result[0].children[0].children).to.deep.equal(['Hello World']);
40
- });
41
- it('should parse an EDL string with dynamic props', () => {
42
- const edlString = '<input type="text" value={state.value} />';
43
- const additionalVariables = new Set(['state']);
44
- const result = parseEDL(edlString, additionalVariables);
45
- expect(result).to.be.an('array').with.lengthOf(1);
46
- expect(result[0].tag).to.equal('input');
47
- expect(result[0].staticProps).to.deep.equal({ type: 'text' });
48
- expect(result[0].variableProps).to.have.property('value');
49
- expect(result[0].variableProps.value).to.be.a('function');
50
- });
51
- it('should parse an EDL string with a script tag and extract variables', () => {
52
- const edlString = `<Script>
53
- const $var1 = 42;
54
- let $var2 = "";
55
- </Script>`;
56
- const result = parseEDL(edlString, new Set());
57
- console.log(result);
58
- expect(result).to.be.an('array').with.lengthOf(1);
59
- expect(result[0].tag).to.equal('Script');
60
- expect(result[0].variableProps).to.have.property(':function');
61
- expect(result[0].variableProps[':function']).to.be.a('function');
62
- });
63
- it('should handle self-closing tags', () => {
64
- const edlString = '<img src="image.png" />';
65
- const result = parseEDL(edlString, new Set());
66
- expect(result).to.be.an('array').with.lengthOf(1);
67
- expect(result[0].tag).to.equal('img');
68
- expect(result[0].staticProps).to.deep.equal({ src: 'image.png' });
69
- });
70
- it('should parse an EDL string with both static and dynamic props', () => {
71
- const edlString = '<button class="btn" onClick={handleClick}>Click Me</button>';
72
- const additionalVariables = new Set(['handleClick']);
73
- const result = parseEDL(edlString, additionalVariables);
74
- expect(result).to.be.an('array').with.lengthOf(1);
75
- expect(result[0].tag).to.equal('button');
76
- expect(result[0].staticProps).to.deep.equal({ className: 'btn' });
77
- expect(result[0].variableProps).to.have.property('onClick');
78
- expect(result[0].variableProps.onClick).to.be.a('function');
79
- expect(result[0].children).to.deep.equal(['Click Me']);
80
- });
81
- it('should parse an EDL string with mixed content (text and elements)', () => {
82
- const edlString = '<div>Text before <span>inline text</span> and after</div>';
83
- const result = parseEDL(edlString, new Set());
84
- expect(result).to.be.an('array').with.lengthOf(1);
85
- expect(result[0].tag).to.equal('div');
86
- expect(result[0].children).to.be.an('array').with.lengthOf(3);
87
- expect(result[0].children[0]).to.equal('Text before ');
88
- expect(result[0].children[1].tag).to.equal('span');
89
- expect(result[0].children[1].children).to.deep.equal(['inline text']);
90
- expect(result[0].children[2]).to.equal(' and after');
91
- });
92
- it('should identify shared props when they modify different object properties', () => {
93
- const edlString = '<div style.color="red" style.width={width}></div>';
94
- const result = parseEDL(edlString, new Set(['width']));
95
- expect(result).to.be.an('array').with.lengthOf(1);
96
- expect(result[0].tag).to.equal('div');
97
- expect(result[0].staticProps).to.deep.equal({
98
- style: { color: 'red' }
99
- });
100
- expect(result[0].variableProps).to.have.property('style.width');
101
- expect(result[0].sharedPropNames).to.deep.equal(['style']);
102
- });
103
- it('should handle multiple shared object properties', () => {
104
- const edlString = '<div style.color="red" style.width={width} style.height="100px" style.margin={margin}></div>';
105
- const result = parseEDL(edlString, new Set(['width', 'margin']));
106
- expect(result).to.be.an('array').with.lengthOf(1);
107
- expect(result[0].tag).to.equal('div');
108
- expect(result[0].staticProps).to.deep.equal({
109
- style: {
110
- color: 'red',
111
- height: '100px'
112
- }
113
- });
114
- expect(result[0].variableProps).to.have.keys('style.width', 'style.margin');
115
- expect(result[0].sharedPropNames).to.deep.equal(['style']);
116
- });
117
- it('should handle mixed shared object properties and regular props', () => {
118
- const edlString = '<div class="container" style.color="red" style.width={width} onClick={handleClick}></div>';
119
- const result = parseEDL(edlString, new Set(['width', 'handleClick']));
120
- expect(result).to.be.an('array').with.lengthOf(1);
121
- expect(result[0].tag).to.equal('div');
122
- expect(result[0].staticProps).to.deep.equal({
123
- className: 'container',
124
- style: { color: 'red' }
125
- });
126
- expect(result[0].variableProps).to.have.keys('style.width', 'onClick');
127
- console.log(result[0].sharedPropNames);
128
- expect(result[0].sharedPropNames).to.deep.equal(['style']);
129
- });
130
- it('should not mark props as shared when only static object properties exist', () => {
131
- const edlString = '<div style.color="red" style.width="100px"></div>';
132
- const result = parseEDL(edlString, new Set());
133
- expect(result).to.be.an('array').with.lengthOf(1);
134
- expect(result[0].tag).to.equal('div');
135
- expect(result[0].staticProps).to.deep.equal({
136
- style: {
137
- color: 'red',
138
- width: '100px'
139
- }
140
- });
141
- expect(result[0].variableProps).to.deep.equal({});
142
- expect(result[0].sharedPropNames).to.deep.equal([]);
143
- });
144
- it('should not mark props as shared when only dynamic object properties exist', () => {
145
- const edlString = '<div style.color={color} style.width={width}></div>';
146
- const result = parseEDL(edlString, new Set(['color', 'width']));
147
- expect(result).to.be.an('array').with.lengthOf(1);
148
- expect(result[0].tag).to.equal('div');
149
- expect(result[0].staticProps).to.deep.equal({});
150
- expect(result[0].variableProps).to.have.keys('style.color', 'style.width');
151
- expect(result[0].sharedPropNames).to.deep.equal([]);
4
+ // Basic Parsing
5
+ describe('basic parsing', () => {
6
+ it('should parse an EDL string with a single tag and no props', () => {
7
+ const edlString = '<div></div>';
8
+ const result = parseEDL(edlString, new Set());
9
+ expect(result).to.be.an('array').with.lengthOf(1);
10
+ expect(result[0].tag).to.equal('div');
11
+ expect(result[0].staticProps).to.deep.equal({});
12
+ expect(result[0].variableProps).to.deep.equal({});
13
+ expect(result[0].children).to.deep.equal([]);
14
+ });
15
+ it('should parse an EDL string with a single tag and static props', () => {
16
+ const edlString = '<div class="container" id="main"></div>';
17
+ const result = parseEDL(edlString, new Set());
18
+ expect(result).to.be.an('array').with.lengthOf(1);
19
+ expect(result[0].tag).to.equal('div');
20
+ expect(result[0].staticProps).to.deep.equal({ className: 'container', id: 'main' });
21
+ expect(result[0].variableProps).to.deep.equal({});
22
+ expect(result[0].children).to.deep.equal([]);
23
+ });
24
+ it('should handle self-closing tags', () => {
25
+ const edlString = '<img src="image.png" />';
26
+ const result = parseEDL(edlString, new Set());
27
+ expect(result).to.be.an('array').with.lengthOf(1);
28
+ expect(result[0].tag).to.equal('img');
29
+ expect(result[0].staticProps).to.deep.equal({ src: 'image.png' });
30
+ });
152
31
  });
153
- it('should parse an EDL string with static props only', () => {
154
- const edlString = '<div class="container" id="main"></div>';
155
- const result = parseEDL(edlString, new Set());
156
- expect(result).to.be.an('array').with.lengthOf(1);
157
- expect(result[0].tag).to.equal('div');
158
- expect(result[0].staticProps).to.deep.equal({ className: 'container', id: 'main' });
159
- expect(result[0].variableProps).to.deep.equal({});
160
- expect(result[0].sharedPropNames).to.deep.equal([]);
32
+ // Children and Nested Elements
33
+ describe('children and nested elements', () => {
34
+ it('should parse an EDL string with inline expression interpolation', () => {
35
+ const edlString = '<Text>Hello {user.name}!</Text>';
36
+ const result = parseEDL(edlString, new Set(['user']));
37
+ expect(result).to.be.an('array').with.lengthOf(1);
38
+ expect(result[0].tag).to.equal('Text');
39
+ expect(result[0].children).to.be.an('array').with.lengthOf(3);
40
+ expect(result[0].children[0]).to.equal('Hello ');
41
+ expect(result[0].children[1]).to.be.a('function'); // The interpolated expression
42
+ expect(result[0].children[2]).to.equal('!');
43
+ });
44
+ it('should parse an EDL string with nested tags', () => {
45
+ const edlString = '<div><span>Hello World</span></div>';
46
+ const result = parseEDL(edlString, new Set());
47
+ expect(result).to.be.an('array').with.lengthOf(1);
48
+ expect(result[0].tag).to.equal('div');
49
+ expect(result[0].children).to.be.an('array').with.lengthOf(1);
50
+ expect(result[0].children[0].tag).to.equal('span');
51
+ expect(result[0].children[0].children).to.deep.equal(['Hello World']);
52
+ });
53
+ it('should parse an EDL string with mixed content (text and elements)', () => {
54
+ const edlString = '<div>Text before <span>inline text</span> and after</div>';
55
+ const result = parseEDL(edlString, new Set());
56
+ expect(result).to.be.an('array').with.lengthOf(1);
57
+ expect(result[0].tag).to.equal('div');
58
+ expect(result[0].children).to.be.an('array').with.lengthOf(3);
59
+ expect(result[0].children[0]).to.equal('Text before ');
60
+ expect(result[0].children[1].tag).to.equal('span');
61
+ expect(result[0].children[1].children).to.deep.equal(['inline text']);
62
+ expect(result[0].children[2]).to.equal(' and after');
63
+ });
161
64
  });
162
- it('should parse an EDL string with dynamic props only', () => {
163
- const edlString = '<input value={state.value} onChange={handleChange} />';
164
- const additionalVariables = new Set(['state', 'handleChange']);
165
- const result = parseEDL(edlString, additionalVariables);
166
- expect(result).to.be.an('array').with.lengthOf(1);
167
- expect(result[0].tag).to.equal('input');
168
- expect(result[0].staticProps).to.deep.equal({});
169
- expect(result[0].variableProps).to.have.all.keys('value', 'onChange');
170
- expect(result[0].sharedPropNames).to.deep.equal([]);
65
+ // Props Handling
66
+ describe('props handling', () => {
67
+ describe('static props', () => {
68
+ it('should parse an EDL string with static props only', () => {
69
+ const edlString = '<div class="container" id="main"></div>';
70
+ const result = parseEDL(edlString, new Set());
71
+ expect(result).to.be.an('array').with.lengthOf(1);
72
+ expect(result[0].tag).to.equal('div');
73
+ expect(result[0].staticProps).to.deep.equal({ className: 'container', id: 'main' });
74
+ expect(result[0].variableProps).to.deep.equal({});
75
+ expect(result[0].sharedPropNames).to.deep.equal([]);
76
+ });
77
+ it('should parse static expressions in dynamic syntax as static values', () => {
78
+ const edlString = '<div value={123} text={"static"} bool={true}></div>';
79
+ const result = parseEDL(edlString, new Set());
80
+ expect(result).to.be.an('array').with.lengthOf(1);
81
+ expect(result[0].tag).to.equal('div');
82
+ expect(result[0].staticProps).to.deep.equal({
83
+ value: 123,
84
+ text: 'static',
85
+ bool: true
86
+ });
87
+ expect(result[0].variableProps).to.deep.equal({});
88
+ expect(result[0].sharedPropNames).to.deep.equal([]);
89
+ });
90
+ it('should parse valueless attributes as boolean props', () => {
91
+ const edlString = '<input type="text" disabled required/>';
92
+ const result = parseEDL(edlString, new Set());
93
+ expect(result).to.be.an('array').with.lengthOf(1);
94
+ expect(result[0].tag).to.equal('input');
95
+ expect(result[0].staticProps).to.deep.equal({
96
+ type: 'text',
97
+ disabled: true,
98
+ required: true
99
+ });
100
+ expect(result[0].variableProps).to.deep.equal({});
101
+ expect(result[0].sharedPropNames).to.deep.equal([]);
102
+ });
103
+ });
104
+ describe('dynamic props', () => {
105
+ it('should parse an EDL string with dynamic props', () => {
106
+ const edlString = '<input type="text" value={state.value} />';
107
+ const additionalVariables = new Set(['state']);
108
+ const result = parseEDL(edlString, additionalVariables);
109
+ expect(result).to.be.an('array').with.lengthOf(1);
110
+ expect(result[0].tag).to.equal('input');
111
+ expect(result[0].staticProps).to.deep.equal({ type: 'text' });
112
+ expect(result[0].variableProps).to.have.property('value');
113
+ expect(result[0].variableProps.value).to.be.a('function');
114
+ });
115
+ it('should parse an EDL string with dynamic props only', () => {
116
+ const edlString = '<input value={state.value} onChange={handleChange} />';
117
+ const additionalVariables = new Set(['state', 'handleChange']);
118
+ const result = parseEDL(edlString, additionalVariables);
119
+ expect(result).to.be.an('array').with.lengthOf(1);
120
+ expect(result[0].tag).to.equal('input');
121
+ expect(result[0].staticProps).to.deep.equal({});
122
+ expect(result[0].variableProps).to.have.all.keys('value', 'onChange');
123
+ expect(result[0].sharedPropNames).to.deep.equal([]);
124
+ });
125
+ });
126
+ describe('mixed props', () => {
127
+ it('should parse an EDL string with both static and dynamic props', () => {
128
+ const edlString = '<button class="btn" onClick={handleClick}>Click Me</button>';
129
+ const additionalVariables = new Set(['handleClick']);
130
+ const result = parseEDL(edlString, additionalVariables);
131
+ expect(result).to.be.an('array').with.lengthOf(1);
132
+ expect(result[0].tag).to.equal('button');
133
+ expect(result[0].staticProps).to.deep.equal({ className: 'btn' });
134
+ expect(result[0].variableProps).to.have.property('onClick');
135
+ expect(result[0].sharedPropNames).to.deep.equal([]);
136
+ expect(result[0].children).to.deep.equal(['Click Me']);
137
+ });
138
+ it('should parse an EDL string with both static and dynamic props (not shared)', () => {
139
+ const edlString = '<button class="btn" onClick={handleClick}>Click Me</button>';
140
+ const additionalVariables = new Set(['handleClick']);
141
+ const result = parseEDL(edlString, additionalVariables);
142
+ expect(result).to.be.an('array').with.lengthOf(1);
143
+ expect(result[0].tag).to.equal('button');
144
+ expect(result[0].staticProps).to.deep.equal({ className: 'btn' });
145
+ expect(result[0].variableProps).to.have.property('onClick');
146
+ expect(result[0].sharedPropNames).to.deep.equal([]);
147
+ expect(result[0].children).to.deep.equal(['Click Me']);
148
+ });
149
+ });
171
150
  });
172
- it('should parse an EDL string with both static and dynamic props (not shared)', () => {
173
- const edlString = '<button class="btn" onClick={handleClick}>Click Me</button>';
174
- const additionalVariables = new Set(['handleClick']);
175
- const result = parseEDL(edlString, additionalVariables);
176
- expect(result).to.be.an('array').with.lengthOf(1);
177
- expect(result[0].tag).to.equal('button');
178
- expect(result[0].staticProps).to.deep.equal({ className: 'btn' });
179
- expect(result[0].variableProps).to.have.property('onClick');
180
- expect(result[0].sharedPropNames).to.deep.equal([]);
181
- expect(result[0].children).to.deep.equal(['Click Me']);
151
+ // Shared Props
152
+ describe('shared props', () => {
153
+ describe('basic shared props', () => {
154
+ it('should identify single shared prop correctly', () => {
155
+ const edlString = '<div class="static-class" class={dynamicClass}></div>';
156
+ const result = parseEDL(edlString, new Set(['dynamicClass']));
157
+ expect(result).to.be.an('array').with.lengthOf(1);
158
+ expect(result[0].tag).to.equal('div');
159
+ expect(result[0].staticProps).to.deep.equal({ className: 'static-class' });
160
+ expect(result[0].variableProps).to.have.property('className');
161
+ expect(result[0].sharedPropNames).to.deep.equal(['className']);
162
+ });
163
+ it('should handle multiple shared props correctly', () => {
164
+ const edlString = '<div id="static-id" class="static-class" id={dynamicId} class={dynamicClass}></div>';
165
+ const result = parseEDL(edlString, new Set(['dynamicId', 'dynamicClass']));
166
+ expect(result).to.be.an('array').with.lengthOf(1);
167
+ expect(result[0].tag).to.equal('div');
168
+ expect(result[0].staticProps).to.deep.equal({
169
+ id: 'static-id',
170
+ className: 'static-class'
171
+ });
172
+ expect(result[0].variableProps).to.have.keys('id', 'className');
173
+ expect(result[0].sharedPropNames).to.have.members(['id', 'className']);
174
+ });
175
+ it('should handle mixed shared and non-shared props', () => {
176
+ const edlString = '<div id="static-id" class="static-class" id={dynamicId} onClick={ () => console.log({ a: 123 }) }></div>';
177
+ const result = parseEDL(edlString, new Set(['dynamicId', 'handleClick']));
178
+ expect(result).to.be.an('array').with.lengthOf(1);
179
+ expect(result[0].tag).to.equal('div');
180
+ expect(result[0].staticProps).to.deep.equal({
181
+ id: 'static-id',
182
+ className: 'static-class'
183
+ });
184
+ expect(result[0].variableProps).to.have.keys('id', 'onClick');
185
+ expect(result[0].sharedPropNames).to.deep.equal(['id']);
186
+ });
187
+ });
188
+ describe('object properties', () => {
189
+ it('should identify shared props when they modify different object properties', () => {
190
+ const edlString = '<div style.color="red" style.width={width}></div>';
191
+ const result = parseEDL(edlString, new Set(['width']));
192
+ expect(result).to.be.an('array').with.lengthOf(1);
193
+ expect(result[0].tag).to.equal('div');
194
+ expect(result[0].staticProps).to.deep.equal({
195
+ style: { color: 'red' }
196
+ });
197
+ expect(result[0].variableProps).to.have.property('style.width');
198
+ expect(result[0].sharedPropNames).to.deep.equal(['style']);
199
+ });
200
+ it('should handle multiple shared object properties', () => {
201
+ const edlString = '<div style.color="red" style.width={width} style.height="100px" style.margin={margin}></div>';
202
+ const result = parseEDL(edlString, new Set(['width', 'margin']));
203
+ expect(result).to.be.an('array').with.lengthOf(1);
204
+ expect(result[0].tag).to.equal('div');
205
+ expect(result[0].staticProps).to.deep.equal({
206
+ style: {
207
+ color: 'red',
208
+ height: '100px'
209
+ }
210
+ });
211
+ expect(result[0].variableProps).to.have.keys('style.width', 'style.margin');
212
+ expect(result[0].sharedPropNames).to.deep.equal(['style']);
213
+ });
214
+ it('should handle mixed shared object properties and regular props', () => {
215
+ const edlString = '<div class="container" style.color="red" style.width={width} onClick={handleClick}></div>';
216
+ const result = parseEDL(edlString, new Set(['width', 'handleClick']));
217
+ expect(result).to.be.an('array').with.lengthOf(1);
218
+ expect(result[0].tag).to.equal('div');
219
+ expect(result[0].staticProps).to.deep.equal({
220
+ className: 'container',
221
+ style: { color: 'red' }
222
+ });
223
+ expect(result[0].variableProps).to.have.keys('style.width', 'onClick');
224
+ console.log(result[0].sharedPropNames);
225
+ expect(result[0].sharedPropNames).to.deep.equal(['style']);
226
+ });
227
+ it('should not mark props as shared when only static object properties exist', () => {
228
+ const edlString = '<div style.color="red" style.width="100px"></div>';
229
+ const result = parseEDL(edlString, new Set());
230
+ expect(result).to.be.an('array').with.lengthOf(1);
231
+ expect(result[0].tag).to.equal('div');
232
+ expect(result[0].staticProps).to.deep.equal({
233
+ style: {
234
+ color: 'red',
235
+ width: '100px'
236
+ }
237
+ });
238
+ expect(result[0].variableProps).to.deep.equal({});
239
+ expect(result[0].sharedPropNames).to.deep.equal([]);
240
+ });
241
+ it('should not mark props as shared when only dynamic object properties exist', () => {
242
+ const edlString = '<div style.color={color} style.width={width}></div>';
243
+ const result = parseEDL(edlString, new Set(['color', 'width']));
244
+ expect(result).to.be.an('array').with.lengthOf(1);
245
+ expect(result[0].tag).to.equal('div');
246
+ expect(result[0].staticProps).to.deep.equal({});
247
+ expect(result[0].variableProps).to.have.keys('style.color', 'style.width');
248
+ expect(result[0].sharedPropNames).to.deep.equal([]);
249
+ });
250
+ });
182
251
  });
183
- it('should identify single shared prop correctly', () => {
184
- const edlString = '<div class="static-class" class={dynamicClass}></div>';
185
- const result = parseEDL(edlString, new Set(['dynamicClass']));
186
- expect(result).to.be.an('array').with.lengthOf(1);
187
- expect(result[0].tag).to.equal('div');
188
- expect(result[0].staticProps).to.deep.equal({ className: 'static-class' });
189
- expect(result[0].variableProps).to.have.property('className');
190
- expect(result[0].sharedPropNames).to.deep.equal(['className']);
252
+ // Script Tags
253
+ describe('script tags', () => {
254
+ it('should parse an EDL string with a script tag and extract variables', () => {
255
+ const edlString = `<Script>
256
+ const $var1 = 42;
257
+ let $var2 = "";
258
+ </Script>`;
259
+ const result = parseEDL(edlString, new Set());
260
+ console.log(result);
261
+ expect(result).to.be.an('array').with.lengthOf(1);
262
+ expect(result[0].tag).to.equal('Script');
263
+ expect(result[0].variableProps).to.have.property(':function');
264
+ expect(result[0].variableProps[':function']).to.be.a('function');
265
+ });
191
266
  });
192
- it('should handle multiple shared props correctly', () => {
193
- const edlString = '<div id="static-id" class="static-class" id={dynamicId} class={dynamicClass}></div>';
194
- const result = parseEDL(edlString, new Set(['dynamicId', 'dynamicClass']));
195
- expect(result).to.be.an('array').with.lengthOf(1);
196
- expect(result[0].tag).to.equal('div');
197
- expect(result[0].staticProps).to.deep.equal({
198
- id: 'static-id',
199
- className: 'static-class'
200
- });
201
- expect(result[0].variableProps).to.have.keys('id', 'className');
202
- expect(result[0].sharedPropNames).to.have.members(['id', 'className']);
267
+ // Expression Parsing
268
+ describe('expression parsing', () => {
269
+ it('should handle expressions containing string literals with braces', () => {
270
+ const edlString = '<div prop={`string with { braces }`}></div>';
271
+ const result = parseEDL(edlString, new Set());
272
+ expect(result).to.be.an('array').with.lengthOf(1);
273
+ expect(result[0].staticProps).to.deep.equal({ prop: 'string with { braces }' });
274
+ });
275
+ it('should handle nested expressions correctly', () => {
276
+ const edlString = '<div prop={{ nested: { value: 123 } }}></div>';
277
+ const result = parseEDL(edlString, new Set());
278
+ console.log(result);
279
+ expect(result).to.be.an('array').with.lengthOf(1);
280
+ expect(result[0].staticProps).to.deep.equal({ prop: { nested: { value: 123 } } });
281
+ });
282
+ it('should handle expressions with escaped quotes', () => {
283
+ const edlString = '<div prop={`string with \\`backticks\\` inside`}></div>';
284
+ const result = parseEDL(edlString, new Set());
285
+ expect(result).to.be.an('array').with.lengthOf(1);
286
+ expect(result[0].staticProps).to.deep.equal({ prop: 'string with `backticks` inside' });
287
+ });
288
+ it('should handle complex nested expressions with strings', () => {
289
+ const edlString = '<div prop={{ text: `Hello ${data.name}`, obj: { key: "{not an expression}" } }}></div>';
290
+ const result = parseEDL(edlString, new Set(['data']));
291
+ expect(result).to.be.an('array').with.lengthOf(1);
292
+ expect(result[0].variableProps).to.have.property('prop');
293
+ expect(result[0].variableProps.prop).to.be.a('function');
294
+ });
295
+ it('should handle expressions with function calls containing objects', () => {
296
+ const edlString = '<div onClick={() => handleClick({ id: 123 })}></div>';
297
+ const result = parseEDL(edlString, new Set(['handleClick']));
298
+ expect(result).to.be.an('array').with.lengthOf(1);
299
+ expect(result[0].variableProps).to.have.property('onClick');
300
+ expect(result[0].variableProps.onClick).to.be.a('function');
301
+ });
203
302
  });
204
- it('should handle mixed shared and non-shared props', () => {
205
- const edlString = '<div id="static-id" class="static-class" id={dynamicId} onClick={handleClick}></div>';
206
- const result = parseEDL(edlString, new Set(['dynamicId', 'handleClick']));
207
- expect(result).to.be.an('array').with.lengthOf(1);
208
- expect(result[0].tag).to.equal('div');
209
- expect(result[0].staticProps).to.deep.equal({
210
- id: 'static-id',
211
- className: 'static-class'
212
- });
213
- expect(result[0].variableProps).to.have.keys('id', 'onClick');
214
- expect(result[0].sharedPropNames).to.deep.equal(['id']);
303
+ // Performance Testing
304
+ describe('performance testing', () => {
305
+ it('should handle parsing large EDL strings efficiently', () => {
306
+ // Generate EDL strings of different lengths
307
+ const generateEDL = (length) => {
308
+ const baseElement = '<div class="item" data-index={index}>Item {index}</div>';
309
+ const repeats = Math.ceil(length / baseElement.length);
310
+ return Array(repeats).fill(baseElement).join('').slice(0, length);
311
+ };
312
+ const testSizes = [100, 1000, 5000, 10000];
313
+ const results = [];
314
+ testSizes.forEach(size => {
315
+ const edlString = generateEDL(size);
316
+ const start = performance.now();
317
+ const result = parseEDL(edlString, new Set(['index']));
318
+ const end = performance.now();
319
+ results.push({ size, time: end - start });
320
+ // Basic validation of parsed output
321
+ expect(result).to.be.an('array');
322
+ expect(result.length).to.be.above(0);
323
+ expect(result[0].tag).to.equal('div');
324
+ });
325
+ // Log performance results
326
+ console.table(results);
327
+ // Ensure parsing time scales reasonably (not exponentially)
328
+ const [first, last] = [results[0], results[results.length - 1]];
329
+ const timeRatio = last.time / first.time;
330
+ const sizeRatio = last.size / first.size;
331
+ // Time increase should be less than cubic of size increase
332
+ expect(timeRatio).to.be.below(Math.pow(sizeRatio, 3));
333
+ });
215
334
  });
216
335
  });
217
336
  //# sourceMappingURL=parser.test.js.map