1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
|
package layout
import "testing"
func TestCalculate_FlexGrow(t *testing.T) {
parent := newTestNode(DefaultStyle())
parent.style.Width = Fixed(100)
parent.style.Height = Fixed(50)
parent.style.Display = DisplayFlex
parent.style.Direction = Row
fixed := newTestNode(DefaultStyle())
fixed.style.Width = Fixed(30)
fixed.style.Height = Fixed(50)
growing := newTestNode(DefaultStyle())
growing.style.Width = Fixed(0)
growing.style.Height = Fixed(50)
growing.style.FlexGrow = 1
parent.AddChild(fixed, growing)
Calculate(parent, 200, 200)
if fixed.layout.Rect.Width != 30 {
t.Errorf("fixed width = %d, want 30", fixed.layout.Rect.Width)
}
if growing.layout.Rect.Width != 70 {
t.Errorf("growing width = %d, want 70", growing.layout.Rect.Width)
}
if growing.layout.Rect.X != 30 {
t.Errorf("growing.X = %d, want 30", growing.layout.Rect.X)
}
}
func TestCalculate_FlexGrow_ProportionalDistribution(t *testing.T) {
parent := newTestNode(DefaultStyle())
parent.style.Width = Fixed(100)
parent.style.Height = Fixed(50)
parent.style.Display = DisplayFlex
parent.style.Direction = Row
child1 := newTestNode(DefaultStyle())
child1.style.Width = Fixed(0)
child1.style.Height = Fixed(50)
child1.style.FlexGrow = 1
child2 := newTestNode(DefaultStyle())
child2.style.Width = Fixed(0)
child2.style.Height = Fixed(50)
child2.style.FlexGrow = 3
parent.AddChild(child1, child2)
Calculate(parent, 200, 200)
if child1.layout.Rect.Width != 25 {
t.Errorf("child1 width = %d, want 25", child1.layout.Rect.Width)
}
if child2.layout.Rect.Width != 75 {
t.Errorf("child2 width = %d, want 75", child2.layout.Rect.Width)
}
}
func TestCalculate_FlexShrink(t *testing.T) {
parent := newTestNode(DefaultStyle())
parent.style.Width = Fixed(100)
parent.style.Height = Fixed(50)
parent.style.Display = DisplayFlex
parent.style.Direction = Row
child1 := newTestNode(DefaultStyle())
child1.style.Width = Fixed(80)
child1.style.Height = Fixed(50)
child1.style.MinWidth = Fixed(0)
child1.style.FlexShrink = 1
child2 := newTestNode(DefaultStyle())
child2.style.Width = Fixed(80)
child2.style.Height = Fixed(50)
child2.style.MinWidth = Fixed(0)
child2.style.FlexShrink = 1
parent.AddChild(child1, child2)
Calculate(parent, 200, 200)
if child1.layout.Rect.Width != 50 {
t.Errorf("child1 width = %d, want 50", child1.layout.Rect.Width)
}
if child2.layout.Rect.Width != 50 {
t.Errorf("child2 width = %d, want 50", child2.layout.Rect.Width)
}
}
func TestCalculate_FlexShrink_ProportionalDistribution(t *testing.T) {
parent := newTestNode(DefaultStyle())
parent.style.Width = Fixed(100)
parent.style.Height = Fixed(50)
parent.style.Display = DisplayFlex
parent.style.Direction = Row
child1 := newTestNode(DefaultStyle())
child1.style.Width = Fixed(80)
child1.style.Height = Fixed(50)
child1.style.MinWidth = Fixed(0)
child1.style.FlexShrink = 1
child2 := newTestNode(DefaultStyle())
child2.style.Width = Fixed(80)
child2.style.Height = Fixed(50)
child2.style.MinWidth = Fixed(0)
child2.style.FlexShrink = 3
parent.AddChild(child1, child2)
Calculate(parent, 200, 200)
if child1.layout.Rect.Width != 65 {
t.Errorf("child1 width = %d, want 65", child1.layout.Rect.Width)
}
if child2.layout.Rect.Width != 35 {
t.Errorf("child2 width = %d, want 35", child2.layout.Rect.Width)
}
}
func TestCalculate_WithGap(t *testing.T) {
parent := newTestNode(DefaultStyle())
parent.style.Width = Fixed(100)
parent.style.Height = Fixed(50)
parent.style.Display = DisplayFlex
parent.style.Direction = Row
parent.style.Gap = 10
child1 := newTestNode(DefaultStyle())
child1.style.Width = Fixed(20)
child1.style.Height = Fixed(50)
child2 := newTestNode(DefaultStyle())
child2.style.Width = Fixed(20)
child2.style.Height = Fixed(50)
child3 := newTestNode(DefaultStyle())
child3.style.Width = Fixed(20)
child3.style.Height = Fixed(50)
parent.AddChild(child1, child2, child3)
Calculate(parent, 200, 200)
if child1.layout.Rect.X != 0 {
t.Errorf("child1.X = %d, want 0", child1.layout.Rect.X)
}
if child2.layout.Rect.X != 30 {
t.Errorf("child2.X = %d, want 30", child2.layout.Rect.X)
}
if child3.layout.Rect.X != 60 {
t.Errorf("child3.X = %d, want 60", child3.layout.Rect.X)
}
}
func TestCalculate_IntrinsicSize_WithGap(t *testing.T) {
parent := newTestNode(DefaultStyle())
parent.style.Width = Fixed(200)
parent.style.Height = Fixed(100)
parent.style.Display = DisplayFlex
parent.style.Direction = Row
parent.style.Gap = 10
child1 := newTestNode(DefaultStyle())
child1.SetIntrinsicSize(40, 30)
child2 := newTestNode(DefaultStyle())
child2.SetIntrinsicSize(50, 25)
parent.AddChild(child1, child2)
Calculate(parent, 200, 100)
if child1.layout.Rect.X != 0 {
t.Errorf("child1.X = %d, want 0", child1.layout.Rect.X)
}
if child2.layout.Rect.X != 50 {
t.Errorf("child2.X = %d, want 50", child2.layout.Rect.X)
}
}
func TestCalculate_IntrinsicSize_FlexGrowFromIntrinsic(t *testing.T) {
parent := newTestNode(DefaultStyle())
parent.style.Width = Fixed(100)
parent.style.Height = Fixed(100)
parent.style.Display = DisplayFlex
parent.style.Direction = Row
child1 := newTestNode(DefaultStyle())
child1.SetIntrinsicSize(20, 50)
child1.style.FlexGrow = 1
child2 := newTestNode(DefaultStyle())
child2.SetIntrinsicSize(30, 50)
child2.style.FlexGrow = 1
parent.AddChild(child1, child2)
Calculate(parent, 100, 100)
if child1.layout.Rect.Width != 45 {
t.Errorf("child1.Width = %d, want 45 (intrinsic + grow)", child1.layout.Rect.Width)
}
if child2.layout.Rect.Width != 55 {
t.Errorf("child2.Width = %d, want 55 (intrinsic + grow)", child2.layout.Rect.Width)
}
}
|