-
-
Notifications
You must be signed in to change notification settings - Fork 197
/
Copy pathsocket-request-executor.ts
96 lines (87 loc) · 2.51 KB
/
socket-request-executor.ts
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
import * as constants from "../../common/constants";
import {
IiOSSocketRequestExecutor,
IiOSNotification,
} from "../../declarations";
import { IiOSNotificationService, IErrors } from "../../common/declarations";
import { injector } from "../../common/yok";
export class IOSSocketRequestExecutor implements IiOSSocketRequestExecutor {
constructor(
private $errors: IErrors,
private $iOSNotification: IiOSNotification,
private $iOSNotificationService: IiOSNotificationService
) {}
public async executeAttachRequest(
device: Mobile.IiOSDevice,
timeout: number,
appId: string
): Promise<void> {
const deviceId = device.deviceInfo.identifier;
const mainRequestName = this.$iOSNotification.getAttachRequest(
appId,
deviceId
);
const readyRequestName = this.$iOSNotification.getReadyForAttach(appId);
await this.executeRequest(
mainRequestName,
readyRequestName,
appId,
deviceId,
timeout
);
}
public async executeRefreshRequest(
device: Mobile.IiOSDevice,
timeout: number,
appId: string
): Promise<boolean> {
const deviceId = device.deviceInfo.identifier;
const mainRequestName = this.$iOSNotification.getRefreshRequest(appId);
const refreshRequestStartedName = this.$iOSNotification.getAppRefreshStarted(
appId
);
const result = await this.executeRequest(
mainRequestName,
refreshRequestStartedName,
appId,
deviceId,
timeout
);
return result;
}
private async executeRequest(
mainRequestName: string,
successfulyExecutedNotificationName: string,
appId: string,
deviceId: string,
timeout: number
): Promise<boolean> {
let isSuccessful = false;
try {
// We should create this promise here because we need to send the ObserveNotification on the device
// before we send the PostNotification.
const socket = await this.$iOSNotificationService.postNotification(
deviceId,
successfulyExecutedNotificationName,
constants.IOS_OBSERVE_NOTIFICATION_COMMAND_TYPE
);
const notificationPromise = this.$iOSNotificationService.awaitNotification(
deviceId,
+socket,
timeout
);
await this.$iOSNotificationService.postNotification(
deviceId,
mainRequestName
);
await notificationPromise;
isSuccessful = true;
} catch (e) {
this.$errors.fail(
`The application ${appId} does not appear to be running on ${deviceId} or is not built with debugging enabled. Try starting the application manually.`
);
}
return isSuccessful;
}
}
injector.register("iOSSocketRequestExecutor", IOSSocketRequestExecutor);