-
-
Notifications
You must be signed in to change notification settings - Fork 1.6k
/
benckmark_test.dart
196 lines (161 loc) · 4.93 KB
/
benckmark_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
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
import 'dart:async';
import 'package:flutter/foundation.dart';
import 'package:flutter_test/flutter_test.dart';
import 'package:get/state_manager.dart';
int times = 30;
void printValue(String value) {
// ignore: avoid_print
print(value);
}
Future<int> valueNotifier() {
final c = Completer<int>();
final value = ValueNotifier<int>(0);
final timer = Stopwatch();
timer.start();
value.addListener(() {
if (times == value.value) {
timer.stop();
printValue(
"""${value.value} listeners notified | [VALUE_NOTIFIER] time: ${timer.elapsedMicroseconds}ms""");
c.complete(timer.elapsedMicroseconds);
}
});
for (var i = 0; i < times + 1; i++) {
value.value = i;
}
return c.future;
}
Future<int> getValue() {
final c = Completer<int>();
final value = Value<int>(0);
final timer = Stopwatch();
timer.start();
value.addListener(() {
if (times == value.value) {
timer.stop();
printValue(
"""${value.value} listeners notified | [GETX_VALUE] time: ${timer.elapsedMicroseconds}ms""");
c.complete(timer.elapsedMicroseconds);
}
});
for (var i = 0; i < times + 1; i++) {
value.value = i;
}
return c.future;
}
Future<int> stream() {
final c = Completer<int>();
final value = StreamController<int>();
final timer = Stopwatch();
timer.start();
value.stream.listen((v) {
if (times == v) {
timer.stop();
printValue(
"""$v listeners notified | [STREAM] time: ${timer.elapsedMicroseconds}ms""");
c.complete(timer.elapsedMicroseconds);
value.close();
}
});
for (var i = 0; i < times + 1; i++) {
value.add(i);
}
return c.future;
}
// Future<int> getStream() {
// final c = Completer<int>();
// final value = GetStream<int>();
// final timer = Stopwatch();
// timer.start();
// value.listen((v) {
// if (times == v) {
// timer.stop();
// printValue(
// """$v listeners notified |
// [GET_STREAM] time: ${timer.elapsedMicroseconds}ms""");
// c.complete(timer.elapsedMicroseconds);
// }
// });
// for (var i = 0; i < times + 1; i++) {
// value.add(i);
// }
// return c.future;
// }
Future<int> miniStream() {
final c = Completer<int>();
final value = MiniStream<int>();
final timer = Stopwatch();
timer.start();
value.listen((v) {
if (times == v) {
timer.stop();
printValue(
"""$v listeners notified | [MINI_STREAM] time: ${timer.elapsedMicroseconds}ms""");
c.complete(timer.elapsedMicroseconds);
}
});
for (var i = 0; i < times + 1; i++) {
value.add(i);
}
return c.future;
}
void main() {
test('percentage test', () {
printValue('============================================');
printValue('PERCENTAGE TEST');
const referenceValue = 200;
const requestedValue = 100;
printValue('''
referenceValue is ${calculePercentage(referenceValue, requestedValue)}% more than requestedValue''');
expect(calculePercentage(referenceValue, requestedValue), 100);
});
test('run benchmarks from ValueNotifier', () async {
times = 30;
printValue('============================================');
printValue('VALUE_NOTIFIER X GETX_VALUE TEST');
printValue('-----------');
await getValue();
await valueNotifier();
printValue('-----------');
times = 30000;
final getx = await getValue();
final dart = await valueNotifier();
printValue('-----------');
printValue('ValueNotifier delay $dart ms to made $times requests');
printValue('GetValue delay $getx ms to made $times requests');
printValue('-----------');
printValue('''
GetValue is ${calculePercentage(dart, getx).round()}% faster than Default ValueNotifier with $times requests''');
});
test('run benchmarks from Streams', () async {
times = 30;
printValue('============================================');
printValue('DART STREAM X GET_STREAM X GET_MINI_STREAM TEST');
printValue('-----------');
// var getx = await getStream();
var mini = await miniStream();
var dart = await stream();
printValue('-----------');
printValue('''
GetStream is ${calculePercentage(dart, mini).round()}% faster than Default Stream with $times requests''');
printValue('-----------');
times = 30000;
dart = await stream();
// getx = await getStream();
mini = await miniStream();
times = 60000;
dart = await stream();
// getx = await getStream();
mini = await miniStream();
printValue('-----------');
printValue('dart_stream delay $dart ms to made $times requests');
// printValue('getx_stream delay $getx ms to made $times requests');
printValue('getx_mini_stream delay $mini ms to made $times requests');
printValue('-----------');
printValue('''
GetStream is ${calculePercentage(dart, mini).round()}% faster than Default Stream with $times requests''');
});
}
int calculePercentage(int dart, int getx) {
return (dart / getx * 100).round() - 100;
}