-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathtest_errors.py
More file actions
68 lines (62 loc) · 1.94 KB
/
Copy pathtest_errors.py
File metadata and controls
68 lines (62 loc) · 1.94 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
from __future__ import annotations
from linkedapi import (
LINKED_API_ACTION_ERROR_TYPES,
LINKED_API_ERROR_TYPES,
LinkedApiWorkflowTimeoutError,
)
def test_error_type_sets_match_node_contract() -> None:
assert LINKED_API_ERROR_TYPES == (
"linkedApiTokenRequired",
"invalidLinkedApiToken",
"identificationTokenRequired",
"invalidIdentificationToken",
"subscriptionRequired",
"trialLimitReached",
"invalidRequestPayload",
"invalidWorkflow",
"plusPlanRequired",
"linkedinAccountSignedOut",
"languageNotSupported",
"workflowTimeout",
"outsideWorkingHours",
"workingHoursWaitExpired",
"httpError",
"tooManyRequests",
"accountNotFound",
"accountIdRequired",
"sessionNotFound",
"noAvailableSeats",
"dailyConnectionAttemptsExceeded",
)
assert LINKED_API_ACTION_ERROR_TYPES == (
"personNotFound",
"selfProfileNotAllowed",
"messagingNotAllowed",
"alreadyPending",
"alreadyConnected",
"emailRequired",
"noteTooLong",
"noteLimitExceeded",
"requestNotAllowed",
"notPending",
"retrievingNotAllowed",
"connectionNotFound",
"searchingNotAllowed",
"searchInterfaceMismatch",
"companyNotFound",
"postNotFound",
"jobNotFound",
"commentingNotAllowed",
"commentNotFound",
"replyingNotAllowed",
"noPostingPermission",
"noSalesNavigator",
"conversationsNotSynced",
"threadNotFound",
)
def test_workflow_timeout_error_fields() -> None:
error = LinkedApiWorkflowTimeoutError("wf1", "fetchPerson")
assert error.type == "workflowTimeout"
assert error.workflow_id == "wf1"
assert error.operation_name == "fetchPerson"
assert error.details == {"workflowId": "wf1", "operationName": "fetchPerson"}