| @@ 1531-1549 (lines=19) @@ | ||
| 1528 | * |
|
| 1529 | * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo |
|
| 1530 | */ |
|
| 1531 | private function assertDefaultContentStates(ContentInfo $contentInfo) |
|
| 1532 | { |
|
| 1533 | $repository = $this->getRepository(); |
|
| 1534 | $objectStateService = $repository->getObjectStateService(); |
|
| 1535 | ||
| 1536 | $objectStateGroups = $objectStateService->loadObjectStateGroups(); |
|
| 1537 | ||
| 1538 | foreach ($objectStateGroups as $objectStateGroup) { |
|
| 1539 | $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup); |
|
| 1540 | foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) { |
|
| 1541 | // Only check the first object state which is the default one. |
|
| 1542 | $this->assertEquals( |
|
| 1543 | $objectState, |
|
| 1544 | $contentState |
|
| 1545 | ); |
|
| 1546 | break; |
|
| 1547 | } |
|
| 1548 | } |
|
| 1549 | } |
|
| 1550 | ||
| 1551 | /** |
|
| 1552 | * Test for the copySubtree() method. |
|
| @@ 4786-4804 (lines=19) @@ | ||
| 4783 | * |
|
| 4784 | * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo |
|
| 4785 | */ |
|
| 4786 | private function assertDefaultContentStates(ContentInfo $contentInfo) |
|
| 4787 | { |
|
| 4788 | $repository = $this->getRepository(); |
|
| 4789 | $objectStateService = $repository->getObjectStateService(); |
|
| 4790 | ||
| 4791 | $objectStateGroups = $objectStateService->loadObjectStateGroups(); |
|
| 4792 | ||
| 4793 | foreach ($objectStateGroups as $objectStateGroup) { |
|
| 4794 | $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup); |
|
| 4795 | foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) { |
|
| 4796 | // Only check the first object state which is the default one. |
|
| 4797 | $this->assertEquals( |
|
| 4798 | $objectState, |
|
| 4799 | $contentState |
|
| 4800 | ); |
|
| 4801 | break; |
|
| 4802 | } |
|
| 4803 | } |
|
| 4804 | } |
|
| 4805 | ||
| 4806 | /** |
|
| 4807 | * Returns the default fixture of fields used in most tests. |
|