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