| @@ 1544-1562 (lines=19) @@ | ||
| 1541 | * |
|
| 1542 | * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo |
|
| 1543 | */ |
|
| 1544 | private function assertDefaultContentStates(ContentInfo $contentInfo) |
|
| 1545 | { |
|
| 1546 | $repository = $this->getRepository(); |
|
| 1547 | $objectStateService = $repository->getObjectStateService(); |
|
| 1548 | ||
| 1549 | $objectStateGroups = $objectStateService->loadObjectStateGroups(); |
|
| 1550 | ||
| 1551 | foreach ($objectStateGroups as $objectStateGroup) { |
|
| 1552 | $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup); |
|
| 1553 | foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) { |
|
| 1554 | // Only check the first object state which is the default one. |
|
| 1555 | $this->assertEquals( |
|
| 1556 | $objectState, |
|
| 1557 | $contentState |
|
| 1558 | ); |
|
| 1559 | break; |
|
| 1560 | } |
|
| 1561 | } |
|
| 1562 | } |
|
| 1563 | ||
| 1564 | /** |
|
| 1565 | * Test for the copySubtree() method. |
|
| @@ 4933-4951 (lines=19) @@ | ||
| 4930 | * |
|
| 4931 | * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo |
|
| 4932 | */ |
|
| 4933 | private function assertDefaultContentStates(ContentInfo $contentInfo) |
|
| 4934 | { |
|
| 4935 | $repository = $this->getRepository(); |
|
| 4936 | $objectStateService = $repository->getObjectStateService(); |
|
| 4937 | ||
| 4938 | $objectStateGroups = $objectStateService->loadObjectStateGroups(); |
|
| 4939 | ||
| 4940 | foreach ($objectStateGroups as $objectStateGroup) { |
|
| 4941 | $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup); |
|
| 4942 | foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) { |
|
| 4943 | // Only check the first object state which is the default one. |
|
| 4944 | $this->assertEquals( |
|
| 4945 | $objectState, |
|
| 4946 | $contentState |
|
| 4947 | ); |
|
| 4948 | break; |
|
| 4949 | } |
|
| 4950 | } |
|
| 4951 | } |
|
| 4952 | ||
| 4953 | /** |
|
| 4954 | * Returns the default fixture of fields used in most tests. |
|