-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathbridge_test.dart
123 lines (101 loc) · 2.56 KB
/
bridge_test.dart
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
import 'package:test/test.dart';
class TextField {
int? backgroundColor;
String? hint;
}
abstract class WebApplication {
Theme theme;
WebApplication(this.theme);
TextField createLoginTextField();
}
class Blog extends WebApplication {
Blog(Theme theme) : super(theme);
@override
TextField createLoginTextField() => TextField()
..backgroundColor = theme.backgroundColor()
..hint = "Please enter your blog login";
}
class NewsSite extends WebApplication {
NewsSite(Theme theme) : super(theme);
@override
TextField createLoginTextField() => TextField()
..backgroundColor = theme.backgroundColor()
..hint = "Provide login to NewsSite";
}
abstract class Theme {
int backgroundColor();
}
class LightTheme implements Theme {
@override
int backgroundColor() => 255;
}
class DarkTheme implements Theme {
@override
int backgroundColor() => 0;
}
typedef WebApplication AppGenerator(Theme theme);
class AppData {
final String name;
final AppGenerator appGenerator;
final String expectedHint;
AppData({
required this.name,
required this.appGenerator,
required this.expectedHint,
});
}
class ThemeData {
final String name;
final Theme theme;
final int expectedBackgroundColor;
ThemeData({
required this.name,
required this.theme,
required this.expectedBackgroundColor,
});
}
void main() {
final appData = [
AppData(
name: "blog",
appGenerator: ((Theme theme) => Blog(theme)),
expectedHint: "Please enter your blog login",
),
AppData(
name: "news site",
appGenerator: ((Theme theme) => NewsSite(theme)),
expectedHint: "Provide login to NewsSite",
),
];
final themeData = [
ThemeData(
name: "dark theme",
theme: DarkTheme(),
expectedBackgroundColor: 0,
),
ThemeData(
name: "light theme",
theme: LightTheme(),
expectedBackgroundColor: 255,
),
];
appData.forEach((AppData appData) {
group("login text field for ${appData.name}", () {
themeData.forEach((ThemeData themeData) {
group("and ${themeData.name}", () {
WebApplication app = appData.appGenerator(themeData.theme);
TextField field = app.createLoginTextField();
test("should have proper color", () {
expect(
field.backgroundColor,
equals(themeData.expectedBackgroundColor),
);
});
test("should have proper hint", () {
expect(field.hint, equals(appData.expectedHint));
});
});
});
});
});
}