forked from leancodepl/patrol
-
Notifications
You must be signed in to change notification settings - Fork 0
/
schema.dart
444 lines (394 loc) · 8.95 KB
/
schema.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
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
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
/// Schema supports:
// - enum definition
// - late type name - required field definition
// - type? name - optional field definition
// - abstract class - service definition where we define:
// - ResponseModel endpointName(RequestModel) - endpoint definition (void = no response)
// - Generic types (IOSServer, IOSClient, AndroidServer, AndroidClient, DartServer, DartClient)
// control where we need clients and servers
class DartGroupEntry {
late String name;
late GroupEntryType type;
late List<DartGroupEntry> entries;
late bool skip;
late List<String> tags;
}
enum GroupEntryType { group, test }
class ListDartTestsResponse {
late DartGroupEntry group;
}
enum RunDartTestResponseResult {
success,
skipped,
failure,
}
class RunDartTestRequest {
late String name;
}
class RunDartTestResponse {
late RunDartTestResponseResult result;
String? details;
}
abstract class PatrolAppService<IOSClient, AndroidClient, DartServer> {
ListDartTestsResponse listDartTests();
RunDartTestResponse runDartTest(RunDartTestRequest request);
}
class ConfigureRequest {
late int findTimeoutMillis;
}
class OpenAppRequest {
late String appId;
}
class OpenQuickSettingsRequest {}
class OpenUrlRequest {
late String url;
}
class AndroidSelector {
String? className;
bool? isCheckable;
bool? isChecked;
bool? isClickable;
bool? isEnabled;
bool? isFocusable;
bool? isFocused;
bool? isLongClickable;
bool? isScrollable;
bool? isSelected;
String? applicationPackage;
String? contentDescription;
String? contentDescriptionStartsWith;
String? contentDescriptionContains;
String? text;
String? textStartsWith;
String? textContains;
String? resourceName;
int? instance;
}
class IOSSelector {
String? value;
int? instance;
IOSElementType? elementType;
String? identifier;
String? label;
String? labelStartsWith;
String? labelContains;
String? title;
String? titleStartsWith;
String? titleContains;
bool? hasFocus;
bool? isEnabled;
bool? isSelected;
String? placeholderValue;
String? placeholderValueStartsWith;
String? placeholderValueContains;
}
class Selector {
String? text;
String? textStartsWith;
String? textContains;
String? className;
String? contentDescription;
String? contentDescriptionStartsWith;
String? contentDescriptionContains;
String? resourceId;
int? instance;
bool? enabled;
bool? focused;
String? pkg;
}
class GetNativeViewsRequest {
Selector? selector;
AndroidSelector? androidSelector;
IOSSelector? iosSelector;
late String appId;
}
class GetNativeUITreeRequest {
List<String>? iosInstalledApps;
late bool useNativeViewHierarchy;
}
class GetNativeUITreeRespone {
late List<IOSNativeView> iOSroots;
late List<AndroidNativeView> androidRoots;
late List<NativeView> roots;
}
class AndroidNativeView {
String? resourceName;
String? text;
String? className;
String? contentDescription;
String? applicationPackage;
late int childCount;
late bool isCheckable;
late bool isChecked;
late bool isClickable;
late bool isEnabled;
late bool isFocusable;
late bool isFocused;
late bool isLongClickable;
late bool isScrollable;
late bool isSelected;
late Rectangle visibleBounds;
late Point2D visibleCenter;
late List<AndroidNativeView> children;
}
class IOSNativeView {
late List<IOSNativeView> children;
late IOSElementType elementType;
late String identifier;
late String label;
late String title;
late bool hasFocus;
late bool isEnabled;
late bool isSelected;
late Rectangle frame;
String? placeholderValue;
String? value;
//TODO we can get other properties from XCUIElement in next request
// exists, isHittable,normalizedSliderPosition, accessibilityLabel, accessbilityHint, accessibilityValue, isAccessibilityElement etc..;
}
class Rectangle {
late double minX;
late double minY;
late double maxX;
late double maxY;
}
class Point2D {
late double x;
late double y;
}
class NativeView {
String? className;
String? text;
String? contentDescription;
late bool focused;
late bool enabled;
int? childCount;
String? resourceName;
String? applicationPackage;
late List<NativeView> children;
}
class GetNativeViewsResponse {
late List<NativeView> nativeViews;
late List<IOSNativeView> iosNativeViews;
late List<AndroidNativeView> androidNativeViews;
}
class TapRequest {
Selector? selector;
AndroidSelector? androidSelector;
IOSSelector? iosSelector;
late String appId;
int? timeoutMillis;
int? delayBetweenTapsMillis;
}
class TapAtRequest {
late double x;
late double y;
late String appId;
}
enum KeyboardBehavior {
showAndDismiss,
alternative,
}
class EnterTextRequest {
late String data;
late String appId;
int? index;
Selector? selector;
AndroidSelector? androidSelector;
IOSSelector? iosSelector;
late KeyboardBehavior keyboardBehavior;
int? timeoutMillis;
}
class SwipeRequest {
late String appId;
late double startX;
late double startY;
late double endX;
late double endY;
late int steps;
}
class WaitUntilVisibleRequest {
Selector? selector;
AndroidSelector? androidSelector;
IOSSelector? iosSelector;
late String appId;
int? timeoutMillis;
}
class DarkModeRequest {
late String appId;
}
class Notification {
String? appName;
late String title;
late String content;
String? raw;
}
class GetNotificationsResponse {
late List<Notification> notifications;
}
class GetNotificationsRequest {}
class TapOnNotificationRequest {
int? index;
Selector? selector;
AndroidSelector? androidSelector;
IOSSelector? iosSelector;
int? timeoutMillis;
}
class PermissionDialogVisibleResponse {
late bool visible;
}
class PermissionDialogVisibleRequest {
late int timeoutMillis;
}
enum HandlePermissionRequestCode {
whileUsing,
onlyThisTime,
denied,
}
class HandlePermissionRequest {
late HandlePermissionRequestCode code;
}
enum SetLocationAccuracyRequestLocationAccuracy {
coarse,
fine,
}
class SetLocationAccuracyRequest {
late SetLocationAccuracyRequestLocationAccuracy locationAccuracy;
}
abstract class NativeAutomator<IOSServer, AndroidServer, DartClient> {
void initialize();
void configure(ConfigureRequest request);
// general
void pressHome();
void pressBack();
void pressRecentApps();
void doublePressRecentApps();
void openApp(OpenAppRequest request);
void openQuickSettings(OpenQuickSettingsRequest request);
void openUrl(OpenUrlRequest request);
// general UI interaction
GetNativeUITreeRespone getNativeUITree(GetNativeUITreeRequest request);
GetNativeViewsResponse getNativeViews(GetNativeViewsRequest request);
void tap(TapRequest request);
void doubleTap(TapRequest request);
void tapAt(TapAtRequest request);
void enterText(EnterTextRequest request);
void swipe(SwipeRequest request);
void waitUntilVisible(WaitUntilVisibleRequest request);
// volume settings
void pressVolumeUp();
void pressVolumeDown();
// services
void enableAirplaneMode();
void disableAirplaneMode();
void enableWiFi();
void disableWiFi();
void enableCellular();
void disableCellular();
void enableBluetooth();
void disableBluetooth();
void enableDarkMode(DarkModeRequest request);
void disableDarkMode(DarkModeRequest request);
void enableLocation();
void disableLocation();
// notifications
void openNotifications();
void closeNotifications();
void closeHeadsUpNotification();
GetNotificationsResponse getNotifications(GetNotificationsRequest request);
void tapOnNotification(TapOnNotificationRequest request);
// permissions
PermissionDialogVisibleResponse isPermissionDialogVisible(
PermissionDialogVisibleRequest request);
void handlePermissionDialog(HandlePermissionRequest request);
void setLocationAccuracy(SetLocationAccuracyRequest request);
// other
void debug();
// TODO(bartekpacia): Move this RPC into a new PatrolNativeTestService service because it doesn't fit here
void markPatrolAppServiceReady();
}
enum IOSElementType {
any,
other,
application,
group,
window,
sheet,
drawer,
alert,
dialog,
button,
radioButton,
radioGroup,
checkBox,
disclosureTriangle,
popUpButton,
comboBox,
menuButton,
toolbarButton,
popover,
keyboard,
key,
navigationBar,
tabBar,
tabGroup,
toolbar,
statusBar,
table,
tableRow,
tableColumn,
outline,
outlineRow,
browser,
collectionView,
slider,
pageIndicator,
progressIndicator,
activityIndicator,
segmentedControl,
picker,
pickerWheel,
switch_,
toggle,
link,
image,
icon,
searchField,
scrollView,
scrollBar,
staticText,
textField,
secureTextField,
datePicker,
textView,
menu,
menuItem,
menuBar,
menuBarItem,
map,
webView,
incrementArrow,
decrementArrow,
timeline,
ratingIndicator,
valueIndicator,
splitGroup,
splitter,
relevanceIndicator,
colorWell,
helpTag,
matte,
dockItem,
ruler,
rulerMarker,
grid,
levelIndicator,
cell,
layoutArea,
layoutItem,
handle,
stepper,
tab,
touchBar,
statusItem,
}