| @@ 1568-1586 (lines=19) @@ | ||
| 1565 | * |
|
| 1566 | * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo |
|
| 1567 | */ |
|
| 1568 | private function assertDefaultContentStates(ContentInfo $contentInfo) |
|
| 1569 | { |
|
| 1570 | $repository = $this->getRepository(); |
|
| 1571 | $objectStateService = $repository->getObjectStateService(); |
|
| 1572 | ||
| 1573 | $objectStateGroups = $objectStateService->loadObjectStateGroups(); |
|
| 1574 | ||
| 1575 | foreach ($objectStateGroups as $objectStateGroup) { |
|
| 1576 | $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup); |
|
| 1577 | foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) { |
|
| 1578 | // Only check the first object state which is the default one. |
|
| 1579 | $this->assertEquals( |
|
| 1580 | $objectState, |
|
| 1581 | $contentState |
|
| 1582 | ); |
|
| 1583 | break; |
|
| 1584 | } |
|
| 1585 | } |
|
| 1586 | } |
|
| 1587 | ||
| 1588 | /** |
|
| 1589 | * Test for the copySubtree() method. |
|
| @@ 5346-5364 (lines=19) @@ | ||
| 5343 | * |
|
| 5344 | * @param \eZ\Publish\API\Repository\Values\Content\ContentInfo $contentInfo |
|
| 5345 | */ |
|
| 5346 | private function assertDefaultContentStates(ContentInfo $contentInfo) |
|
| 5347 | { |
|
| 5348 | $repository = $this->getRepository(); |
|
| 5349 | $objectStateService = $repository->getObjectStateService(); |
|
| 5350 | ||
| 5351 | $objectStateGroups = $objectStateService->loadObjectStateGroups(); |
|
| 5352 | ||
| 5353 | foreach ($objectStateGroups as $objectStateGroup) { |
|
| 5354 | $contentState = $objectStateService->getContentState($contentInfo, $objectStateGroup); |
|
| 5355 | foreach ($objectStateService->loadObjectStates($objectStateGroup) as $objectState) { |
|
| 5356 | // Only check the first object state which is the default one. |
|
| 5357 | $this->assertEquals( |
|
| 5358 | $objectState, |
|
| 5359 | $contentState |
|
| 5360 | ); |
|
| 5361 | break; |
|
| 5362 | } |
|
| 5363 | } |
|
| 5364 | } |
|
| 5365 | ||
| 5366 | /** |
|
| 5367 | * Returns the default fixture of fields used in most tests. |
|