-
-
Notifications
You must be signed in to change notification settings - Fork 646
Expand file tree
/
Copy pathborder_test.dart
More file actions
275 lines (227 loc) · 8.19 KB
/
border_test.dart
File metadata and controls
275 lines (227 loc) · 8.19 KB
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
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
import 'package:flutter/material.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:getwidget/getwidget.dart';
void main() {
final childWidget = Container(
width: 222,
height: 333,
);
const color = Colors.teal;
const padding = EdgeInsets.all(5);
const type = GFBorderType.rect;
const text = Text('Hello');
testWidgets('GFBorder can be created around different components.',
(tester) async {
final GFBorder border = GFBorder(
color: color,
padding: padding,
type: type,
dashedLine: const [2, 0],
child: childWidget);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.padding, padding);
expect(app.border.type, type);
expect(app.border.dashedLine, [2, 0]);
expect(app.border.child, childWidget);
});
testWidgets('Solid GFBorder around image.', (tester) async {
final bgImage = Image.network(
'https://images.unsplash.com/photo-1547721064-da6cfb341d50',
);
final GFBorder border = GFBorder(
color: color, type: type, dashedLine: const [2, 0], child: bgImage);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, type);
expect(app.border.dashedLine, [2, 0]);
expect(app.border.child, bgImage);
});
testWidgets('Solid GFBorder with radius.', (tester) async {
const radius = Radius.circular(20);
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.rRect,
dashedLine: const [2, 0],
radius: radius,
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.rRect);
expect(app.border.dashedLine, [2, 0]);
expect(app.border.child, text);
});
testWidgets('Oval GFBorder.', (tester) async {
const stroke = 2.0;
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.oval,
dashedLine: const [6, 0],
strokeWidth: stroke,
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.oval);
expect(app.border.dashedLine, [6, 0]);
expect(app.border.strokeWidth, stroke);
expect(app.border.child, text);
});
testWidgets('Circular GFBorder.', (tester) async {
const stroke = 2.0;
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.circle,
dashedLine: const [2, 0],
strokeWidth: stroke,
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.circle);
expect(app.border.dashedLine, [2, 0]);
expect(app.border.strokeWidth, stroke);
expect(app.border.child, text);
});
testWidgets('Dashed GFBorder.', (tester) async {
final GFBorder border =
GFBorder(color: color, type: GFBorderType.rRect, child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.rRect);
expect(app.border.child, text);
});
testWidgets('Dashed GFBorder with radius.', (tester) async {
const radius = Radius.circular(20);
final GFBorder border = GFBorder(
color: color, type: GFBorderType.rRect, radius: radius, child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.rRect);
expect(app.border.radius, radius);
expect(app.border.child, text);
});
testWidgets('Oval dashed GFBorder.', (tester) async {
const stroke = 2.0;
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.oval,
strokeWidth: stroke,
dashedLine: const [3, 1],
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.oval);
expect(app.border.strokeWidth, stroke);
expect(app.border.dashedLine, [3, 1]);
expect(app.border.child, text);
});
testWidgets('Circular dashed GFBorder.', (tester) async {
const stroke = 2.0;
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.circle,
dashedLine: const [3, 1],
strokeWidth: stroke,
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.circle);
expect(app.border.dashedLine, [3, 1]);
expect(app.border.strokeWidth, stroke);
expect(app.border.child, text);
});
testWidgets('Dotted GFBorder.', (tester) async {
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.rect,
dashedLine: const [2, 1],
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.rect);
expect(app.border.dashedLine, [2, 1]);
expect(app.border.child, text);
});
testWidgets('Dotted GFBorder with radius.', (tester) async {
const radius = Radius.circular(20);
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.rRect,
dashedLine: const [2, 1],
radius: radius,
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.rRect);
expect(app.border.dashedLine, [2, 1]);
expect(app.border.radius, radius);
expect(app.border.child, text);
});
testWidgets('Oval dotted GFBorder.', (tester) async {
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.oval,
dashedLine: const [2, 1],
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.oval);
expect(app.border.dashedLine, [2, 1]);
expect(app.border.child, text);
});
testWidgets('Circular dotted GFBorder.', (tester) async {
final GFBorder border = GFBorder(
color: color,
type: GFBorderType.circle,
dashedLine: const [2, 1],
child: text);
final TestApp app = TestApp(border);
await tester.pumpWidget(Container(child: childWidget));
expect(find.byWidget(childWidget), findsOneWidget);
expect(app.border.color, color);
expect(app.border.type, GFBorderType.circle);
expect(app.border.dashedLine, [2, 1]);
expect(app.border.child, text);
});
}
class TestApp extends StatefulWidget {
const TestApp(this.border);
final GFBorder border;
@override
_TestAppState createState() => _TestAppState();
}
class _TestAppState extends State<TestApp> {
@override
Widget build(BuildContext context) => MaterialApp(
home: Scaffold(
body: Column(
children: [
widget.border,
],
),
),
);
}