You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: Neos.ContentRepository.BehavioralTests/Tests/Behavior/Features/EventSourced/Migration/ChangePropertyValue_Dimensions.feature
+12-28
Original file line number
Diff line number
Diff line change
@@ -203,7 +203,7 @@ Feature: Change Property Value across dimensions; and test DimensionSpacePoints
203
203
204
204
205
205
Scenario: matching only happens based on originDimensionSpacePoint, not on visibleDimensionSpacePoints - we try to change CH, but should not see any modification (includeSpecializations = FALSE - default)
206
-
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs", without publishing on success:
206
+
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs" and exceptions are caught:
207
207
"""yaml
208
208
migration:
209
209
-
@@ -225,22 +225,14 @@ Feature: Change Property Value across dimensions; and test DimensionSpacePoints
225
225
property: 'text'
226
226
newSerializedValue: 'fixed value'
227
227
"""
228
-
229
-
# neither DE or CH is modified
230
-
When I am in workspace "migration-workspace" and dimension space point {"language": "de"}
231
-
Then I expect a node identified by migration-cs;sir-david-nodenborough;{"language": "de"} to exist in the content graph
232
-
And I expect this node to have the following properties:
233
-
| Key | Value |
234
-
| text | "Originaltext" |
235
-
236
-
When I am in workspace "migration-workspace" and dimension space point {"language": "ch"}
237
-
Then I expect a node identified by migration-cs;sir-david-nodenborough;{"language": "de"} to exist in the content graph
238
-
And I expect this node to have the following properties:
239
-
| Key | Value |
240
-
| text | "Originaltext" |
228
+
Then the last command should have thrown an exception of type "MigrationException" with message:
229
+
"""
230
+
Migration did not issue any commands.
231
+
"""
232
+
And I expect the content stream "migration-cs" to not exist
241
233
242
234
Scenario: matching only happens based on originDimensionSpacePoint, not on visibleDimensionSpacePoints - we try to change CH, but should not see any modification (includeSpecializations = TRUE)
243
-
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs", without publishing on success:
235
+
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs" and exceptions are caught:
244
236
"""yaml
245
237
migration:
246
238
-
@@ -263,16 +255,8 @@ Feature: Change Property Value across dimensions; and test DimensionSpacePoints
263
255
property: 'text'
264
256
newSerializedValue: 'fixed value'
265
257
"""
266
-
267
-
# neither DE or CH is modified
268
-
When I am in workspace "migration-workspace" and dimension space point {"language": "de"}
269
-
Then I expect a node identified by migration-cs;sir-david-nodenborough;{"language": "de"} to exist in the content graph
270
-
And I expect this node to have the following properties:
271
-
| Key | Value |
272
-
| text | "Originaltext" |
273
-
274
-
When I am in workspace "migration-workspace" and dimension space point {"language": "ch"}
275
-
Then I expect a node identified by migration-cs;sir-david-nodenborough;{"language": "de"} to exist in the content graph
276
-
And I expect this node to have the following properties:
277
-
| Key | Value |
278
-
| text | "Originaltext" |
258
+
Then the last command should have thrown an exception of type "MigrationException" with message:
259
+
"""
260
+
Migration did not issue any commands.
261
+
"""
262
+
And I expect the content stream "migration-cs" to not exist
Copy file name to clipboardexpand all lines: Neos.ContentRepository.BehavioralTests/Tests/Behavior/Features/EventSourced/Migration/ChangePropertyValue_NoDimensions.feature
+7-7
Original file line number
Diff line number
Diff line change
@@ -68,7 +68,7 @@ Feature: Change Property
68
68
| text | "fixedvalue" |
69
69
70
70
Scenario: Ignoring transformation if property does not exist on node
71
-
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs", without publishing on success:
71
+
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs" and exceptions are caught:
72
72
"""yaml
73
73
migration:
74
74
-
@@ -84,12 +84,12 @@ Feature: Change Property
84
84
property: 'notExisting'
85
85
newSerializedValue: 'fixed value'
86
86
"""
87
-
# we did not change anything because notExisting does not exist
88
-
When I am in workspace "migration-workspace" and dimension space point {}
89
-
Then I expect a node identified by migration-cs;sir-david-nodenborough;{} to exist in the content graph
90
-
And I expect this node to have the following properties:
91
-
| Key | Value |
92
-
| text | "Originaltext" |
87
+
88
+
Then the last command should have thrown an exception of type "MigrationException" with message:
89
+
"""
90
+
Migration did not issue any commands.
91
+
"""
92
+
And I expect the content stream "migration-cs" to not exist
93
93
94
94
Scenario: replacement using default currentValuePlaceholder
95
95
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs", without publishing on success:
Copy file name to clipboardexpand all lines: Neos.ContentRepository.BehavioralTests/Tests/Behavior/Features/EventSourced/Migration/RemoveProperty_NoDimensions.feature
+7-7
Original file line number
Diff line number
Diff line change
@@ -65,7 +65,7 @@ Feature: Remove Property
65
65
And I expect this node to have no properties
66
66
67
67
Scenario: Ignoring transformation if property does not exist on node
68
-
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs", without publishing on success:
68
+
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs" and exceptions are caught:
69
69
"""yaml
70
70
migration:
71
71
-
@@ -80,9 +80,9 @@ Feature: Remove Property
80
80
settings:
81
81
property: 'notExisting'
82
82
"""
83
-
# we did not change anything because notExisting does not exist
84
-
When I am in workspace "migration-workspace" and dimension space point {}
85
-
Then I expect a node identified by migration-cs;sir-david-nodenborough;{} to exist in the content graph
86
-
And I expect this node to have the following properties:
87
-
| Key | Value |
88
-
| text | "Originaltext" |
83
+
84
+
Then the last command should have thrown an exception of type "MigrationException" with message:
85
+
"""
86
+
Migration did not issue any commands.
87
+
"""
88
+
And I expect the content stream "migration-cs" to not exist
Copy file name to clipboardexpand all lines: Neos.ContentRepository.BehavioralTests/Tests/Behavior/Features/EventSourced/Migration/UpdateRootNodeAggregateDimensions.feature
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs", without publishing on success:
113
+
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs" and exceptions are caught:
114
+
"""yaml
115
+
migration:
116
+
-
117
+
transformations:
118
+
-
119
+
type: 'UpdateRootNodeAggregateDimensions'
120
+
settings:
121
+
nodeType: 'Neos.ContentRepository:Root'
122
+
"""
123
+
124
+
Then the last command should have thrown an exception of type "NodeMigrationRequireConfirmationException" with message:
125
+
"""
126
+
1 warnings: commands UpdateRootNodeAggregateDimensions require confirmation: Updating the dimensions of root node lady-eleonode-rootford will remove all its descendants in dimensions [{"language":"en"}]
127
+
"""
128
+
129
+
When I run the following node migration for workspace "live", creating target workspace "migration-workspace" on contentStreamId "migration-cs", with force and publishing on success:
* Node Migrations are manually written adjustments to the Node tree;
@@ -65,34 +66,47 @@ public function executeMigration(ExecuteMigration $command): void
65
66
), 1611688225);
66
67
}
67
68
68
-
$targetWorkspaceWasCreated = false;
69
-
if ($targetWorkspace = $this->contentRepository->findWorkspaceByName($command->targetWorkspaceName)) {
70
-
if ($targetWorkspace->hasPublishableChanges()) {
71
-
thrownewMigrationException(sprintf('Target workspace "%s" already exists an is not empty. Please clear the workspace before.', $targetWorkspace->workspaceName->value));
thrownewMigrationException(sprintf('Target workspace "%s" already exists an is not empty. Please clear the workspace before.', $targetWorkspace->workspaceName->value));
0 commit comments