azure-functions-durable 1.2.9__py3-none-any.whl → 1.2.10__py3-none-any.whl

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
Files changed (101) hide show
  1. azure/durable_functions/__init__.py +81 -81
  2. azure/durable_functions/constants.py +9 -9
  3. azure/durable_functions/decorators/__init__.py +3 -3
  4. azure/durable_functions/decorators/durable_app.py +249 -249
  5. azure/durable_functions/decorators/metadata.py +109 -109
  6. azure/durable_functions/entity.py +125 -125
  7. azure/durable_functions/models/DurableEntityContext.py +201 -201
  8. azure/durable_functions/models/DurableHttpRequest.py +58 -58
  9. azure/durable_functions/models/DurableOrchestrationBindings.py +66 -66
  10. azure/durable_functions/models/DurableOrchestrationClient.py +781 -781
  11. azure/durable_functions/models/DurableOrchestrationContext.py +722 -707
  12. azure/durable_functions/models/DurableOrchestrationStatus.py +156 -156
  13. azure/durable_functions/models/EntityStateResponse.py +23 -23
  14. azure/durable_functions/models/FunctionContext.py +7 -7
  15. azure/durable_functions/models/OrchestrationRuntimeStatus.py +32 -32
  16. azure/durable_functions/models/OrchestratorState.py +117 -116
  17. azure/durable_functions/models/PurgeHistoryResult.py +33 -33
  18. azure/durable_functions/models/ReplaySchema.py +8 -8
  19. azure/durable_functions/models/RetryOptions.py +69 -69
  20. azure/durable_functions/models/RpcManagementOptions.py +86 -86
  21. azure/durable_functions/models/Task.py +426 -426
  22. azure/durable_functions/models/TaskOrchestrationExecutor.py +346 -336
  23. azure/durable_functions/models/TokenSource.py +56 -56
  24. azure/durable_functions/models/__init__.py +24 -24
  25. azure/durable_functions/models/actions/Action.py +23 -23
  26. azure/durable_functions/models/actions/ActionType.py +18 -18
  27. azure/durable_functions/models/actions/CallActivityAction.py +41 -41
  28. azure/durable_functions/models/actions/CallActivityWithRetryAction.py +45 -45
  29. azure/durable_functions/models/actions/CallEntityAction.py +46 -46
  30. azure/durable_functions/models/actions/CallHttpAction.py +35 -35
  31. azure/durable_functions/models/actions/CallSubOrchestratorAction.py +40 -40
  32. azure/durable_functions/models/actions/CallSubOrchestratorWithRetryAction.py +44 -44
  33. azure/durable_functions/models/actions/CompoundAction.py +35 -35
  34. azure/durable_functions/models/actions/ContinueAsNewAction.py +36 -36
  35. azure/durable_functions/models/actions/CreateTimerAction.py +48 -48
  36. azure/durable_functions/models/actions/NoOpAction.py +35 -35
  37. azure/durable_functions/models/actions/SignalEntityAction.py +47 -47
  38. azure/durable_functions/models/actions/WaitForExternalEventAction.py +63 -63
  39. azure/durable_functions/models/actions/WhenAllAction.py +14 -14
  40. azure/durable_functions/models/actions/WhenAnyAction.py +14 -14
  41. azure/durable_functions/models/actions/__init__.py +24 -24
  42. azure/durable_functions/models/entities/EntityState.py +74 -74
  43. azure/durable_functions/models/entities/OperationResult.py +76 -76
  44. azure/durable_functions/models/entities/RequestMessage.py +53 -53
  45. azure/durable_functions/models/entities/ResponseMessage.py +48 -48
  46. azure/durable_functions/models/entities/Signal.py +62 -62
  47. azure/durable_functions/models/entities/__init__.py +17 -17
  48. azure/durable_functions/models/history/HistoryEvent.py +92 -92
  49. azure/durable_functions/models/history/HistoryEventType.py +27 -27
  50. azure/durable_functions/models/history/__init__.py +8 -8
  51. azure/durable_functions/models/utils/__init__.py +7 -7
  52. azure/durable_functions/models/utils/entity_utils.py +103 -91
  53. azure/durable_functions/models/utils/http_utils.py +69 -69
  54. azure/durable_functions/models/utils/json_utils.py +56 -56
  55. azure/durable_functions/orchestrator.py +71 -71
  56. {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/LICENSE +21 -21
  57. {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/METADATA +58 -58
  58. azure_functions_durable-1.2.10.dist-info/RECORD +100 -0
  59. tests/models/test_DecoratorMetadata.py +135 -135
  60. tests/models/test_Decorators.py +107 -107
  61. tests/models/test_DurableOrchestrationBindings.py +68 -68
  62. tests/models/test_DurableOrchestrationClient.py +730 -730
  63. tests/models/test_DurableOrchestrationContext.py +102 -102
  64. tests/models/test_DurableOrchestrationStatus.py +59 -59
  65. tests/models/test_OrchestrationState.py +28 -28
  66. tests/models/test_RpcManagementOptions.py +79 -79
  67. tests/models/test_TokenSource.py +10 -10
  68. tests/orchestrator/models/OrchestrationInstance.py +18 -18
  69. tests/orchestrator/orchestrator_test_utils.py +130 -130
  70. tests/orchestrator/schemas/OrchetrationStateSchema.py +66 -66
  71. tests/orchestrator/test_call_http.py +235 -176
  72. tests/orchestrator/test_continue_as_new.py +67 -67
  73. tests/orchestrator/test_create_timer.py +126 -126
  74. tests/orchestrator/test_entity.py +395 -395
  75. tests/orchestrator/test_external_event.py +53 -53
  76. tests/orchestrator/test_fan_out_fan_in.py +175 -175
  77. tests/orchestrator/test_is_replaying_flag.py +101 -101
  78. tests/orchestrator/test_retries.py +308 -308
  79. tests/orchestrator/test_sequential_orchestrator.py +841 -841
  80. tests/orchestrator/test_sequential_orchestrator_custom_status.py +119 -119
  81. tests/orchestrator/test_sequential_orchestrator_with_retry.py +465 -465
  82. tests/orchestrator/test_serialization.py +30 -30
  83. tests/orchestrator/test_sub_orchestrator.py +95 -95
  84. tests/orchestrator/test_sub_orchestrator_with_retry.py +129 -129
  85. tests/orchestrator/test_task_any.py +60 -60
  86. tests/tasks/tasks_test_utils.py +17 -17
  87. tests/tasks/test_new_uuid.py +34 -34
  88. tests/test_utils/ContextBuilder.py +174 -174
  89. tests/test_utils/EntityContextBuilder.py +56 -56
  90. tests/test_utils/constants.py +1 -1
  91. tests/test_utils/json_utils.py +30 -30
  92. tests/test_utils/testClasses.py +56 -56
  93. tests/utils/__init__.py +1 -0
  94. tests/utils/test_entity_utils.py +24 -0
  95. azure_functions_durable-1.2.9.data/data/_manifest/bsi.json +0 -1
  96. azure_functions_durable-1.2.9.data/data/_manifest/manifest.cat +0 -0
  97. azure_functions_durable-1.2.9.data/data/_manifest/manifest.spdx.json +0 -11985
  98. azure_functions_durable-1.2.9.data/data/_manifest/manifest.spdx.json.sha256 +0 -1
  99. azure_functions_durable-1.2.9.dist-info/RECORD +0 -102
  100. {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/WHEEL +0 -0
  101. {azure_functions_durable-1.2.9.dist-info → azure_functions_durable-1.2.10.dist-info}/top_level.txt +0 -0
@@ -1,56 +1,56 @@
1
- class SerializableClass(object):
2
- """Example serializable class.
3
-
4
- For a custom class to be serializable in
5
- Python Durable Functions, we require that
6
- it include both `to_json` and `from_json`
7
- a `@staticmethod`s for serializing to JSON
8
- and back respectively. These get called
9
- internally by the framework.
10
- """
11
-
12
- def __init__(self, name: str):
13
- """Construct the class.
14
-
15
- Parameters
16
- ----------
17
- number: int
18
- A number to encapsulate
19
- """
20
- self.name = name
21
-
22
- @staticmethod
23
- def to_json(obj: object) -> str:
24
- """Serialize a `SerializableClass` instance into a JSON string.
25
-
26
- Parameters
27
- ----------
28
- obj: SerializableClass
29
- The object to serialize
30
-
31
- Returns
32
- -------
33
- json_str: str
34
- A JSON-encoding of `obj`
35
- """
36
- return obj.name
37
-
38
- @staticmethod
39
- def from_json(json_str: str) -> object:
40
- """De-serialize a JSON string to a `SerializableClass` instance.
41
-
42
- It assumes that the JSON string was generated via
43
- `SerializableClass.to_json`
44
-
45
- Parameters
46
- ----------
47
- json_str: str
48
- The JSON-encoding of a `SerializableClass` instance
49
-
50
- Returns
51
- -------
52
- obj: SerializableClass
53
- A SerializableClass instance, de-serialized from `json_str`
54
- """
55
- obj = SerializableClass(json_str)
56
- return obj
1
+ class SerializableClass(object):
2
+ """Example serializable class.
3
+
4
+ For a custom class to be serializable in
5
+ Python Durable Functions, we require that
6
+ it include both `to_json` and `from_json`
7
+ a `@staticmethod`s for serializing to JSON
8
+ and back respectively. These get called
9
+ internally by the framework.
10
+ """
11
+
12
+ def __init__(self, name: str):
13
+ """Construct the class.
14
+
15
+ Parameters
16
+ ----------
17
+ number: int
18
+ A number to encapsulate
19
+ """
20
+ self.name = name
21
+
22
+ @staticmethod
23
+ def to_json(obj: object) -> str:
24
+ """Serialize a `SerializableClass` instance into a JSON string.
25
+
26
+ Parameters
27
+ ----------
28
+ obj: SerializableClass
29
+ The object to serialize
30
+
31
+ Returns
32
+ -------
33
+ json_str: str
34
+ A JSON-encoding of `obj`
35
+ """
36
+ return obj.name
37
+
38
+ @staticmethod
39
+ def from_json(json_str: str) -> object:
40
+ """De-serialize a JSON string to a `SerializableClass` instance.
41
+
42
+ It assumes that the JSON string was generated via
43
+ `SerializableClass.to_json`
44
+
45
+ Parameters
46
+ ----------
47
+ json_str: str
48
+ The JSON-encoding of a `SerializableClass` instance
49
+
50
+ Returns
51
+ -------
52
+ obj: SerializableClass
53
+ A SerializableClass instance, de-serialized from `json_str`
54
+ """
55
+ obj = SerializableClass(json_str)
56
+ return obj
@@ -0,0 +1 @@
1
+
@@ -0,0 +1,24 @@
1
+ import pytest
2
+ from azure.durable_functions.models.utils.entity_utils import EntityId
3
+
4
+ @pytest.mark.parametrize(
5
+ ("name_e1", "key_1", "name_e2", "key_2", "expected"),
6
+ [
7
+ ("name1", "key1", "name1", "key1", True),
8
+ ("name1", "key1", "name1", "key2", False),
9
+ ("name1", "key1", "name2", "key1", False),
10
+ ("name1", "key1", "name2", "key2", False),
11
+ ],
12
+ )
13
+ def test_equal_entity_by_name_and_key(name_e1, key_1, name_e2, key_2, expected):
14
+
15
+ entity1 = EntityId(name_e1, key_1)
16
+ entity2 = EntityId(name_e2, key_2)
17
+
18
+ assert (entity1 == entity2) == expected
19
+
20
+ def test_equality_with_non_entity_id():
21
+
22
+ entity = EntityId("name", "key")
23
+
24
+ assert (entity == "not an entity id") == False
@@ -1 +0,0 @@
1
- {"Source":"InternalBuild","Data":{"System.CollectionId":"d1c51fbc-4477-4a0f-b99f-fc9013009a58","System.DefinitionId":"58","System.TeamProjectId":"e6a70c92-4128-439f-8012-382fe78d6396","System.TeamProject":"Azure Functions","Build.BuildId":"161393","Build.BuildNumber":"20240214.1","Build.DefinitionName":"Azure.azure-functions-durable-python","Build.DefinitionRevision":"2","Build.Repository.Name":"Azure/azure-functions-durable-python","Build.Repository.Provider":"GitHub","Build.Repository.Id":"Azure/azure-functions-durable-python","Build.SourceBranch":"refs/tags/v1.2.9","Build.SourceBranchName":"v1.2.9","Build.SourceVersion":"34112b1c6a6100bf602eff0ae3f57918fac61935"},"Feed":null}