-
Notifications
You must be signed in to change notification settings - Fork 11
Expand file tree
/
Copy pathAbstractNodeTemplateTestCase.php
More file actions
194 lines (152 loc) · 7.87 KB
/
AbstractNodeTemplateTestCase.php
File metadata and controls
194 lines (152 loc) · 7.87 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
<?php
declare(strict_types=1);
namespace Flowpack\NodeTemplates\Tests\Functional;
use Flowpack\NodeTemplates\Domain\NodeTemplateDumper\NodeTemplateDumper;
use Flowpack\NodeTemplates\Domain\Template\RootTemplate;
use Flowpack\NodeTemplates\Domain\TemplateConfiguration\TemplateConfigurationProcessor;
use Neos\ContentRepository\Domain\Model\NodeInterface;
use Neos\ContentRepository\Domain\Model\Workspace;
use Neos\ContentRepository\Domain\Repository\ContentDimensionRepository;
use Neos\ContentRepository\Domain\Repository\WorkspaceRepository;
use Neos\ContentRepository\Domain\Service\ContextFactoryInterface;
use Neos\ContentRepository\Domain\Service\NodeTypeManager;
use Neos\Flow\Tests\FunctionalTestCase;
use Neos\Neos\Domain\Model\Site;
use Neos\Neos\Domain\Repository\SiteRepository;
use Neos\Neos\Ui\Domain\Model\ChangeCollection;
use Neos\Neos\Ui\Domain\Model\FeedbackCollection;
use Neos\Neos\Ui\TypeConverter\ChangeCollectionConverter;
abstract class AbstractNodeTemplateTestCase extends FunctionalTestCase
{
use SnapshotTrait;
use FeedbackCollectionMessagesTrait;
use JsonSerializeNodeTreeTrait;
use WithConfigurationTrait;
use FakeNodeTypeManagerTrait;
protected static $testablePersistenceEnabled = true;
private ContextFactoryInterface $contextFactory;
protected NodeInterface $homePageNode;
protected NodeInterface $homePageMainContentCollectionNode;
private NodeTemplateDumper $nodeTemplateDumper;
private RootTemplate $lastCreatedRootTemplate;
private NodeTypeManager $nodeTypeManager;
private string $fixturesDir;
/** @deprecated please use {@see self::getObject()} instead */
protected $objectManager;
public function setUp(): void
{
parent::setUp();
$this->nodeTypeManager = $this->objectManager->get(NodeTypeManager::class);
$this->loadFakeNodeTypes();
$this->setupContentRepository();
$this->nodeTemplateDumper = $this->objectManager->get(NodeTemplateDumper::class);
$templateFactory = $this->objectManager->get(TemplateConfigurationProcessor::class);
$templateFactoryMock = $this->getMockBuilder(TemplateConfigurationProcessor::class)->disableOriginalConstructor()->getMock();
$templateFactoryMock->expects(self::once())->method('processTemplateConfiguration')->willReturnCallback(function (...$args) use($templateFactory) {
$rootTemplate = $templateFactory->processTemplateConfiguration(...$args);
$this->lastCreatedRootTemplate = $rootTemplate;
return $rootTemplate;
});
$this->objectManager->setInstance(TemplateConfigurationProcessor::class, $templateFactoryMock);
$ref = new \ReflectionClass($this);
$this->fixturesDir = dirname($ref->getFileName()) . '/Snapshots';
}
public function tearDown(): void
{
parent::tearDown();
$this->inject($this->contextFactory, 'contextInstances', []);
$this->objectManager->get(FeedbackCollection::class)->reset();
$this->objectManager->forgetInstance(ContentDimensionRepository::class);
$this->objectManager->forgetInstance(TemplateConfigurationProcessor::class);
$this->objectManager->forgetInstance(NodeTypeManager::class);
}
/**
* @template T of object
* @param class-string<T> $className
*
* @return T
*/
final protected function getObject(string $className): object
{
return $this->objectManager->get($className);
}
private function setupContentRepository(): void
{
// Create an environment to create nodes.
$this->objectManager->get(ContentDimensionRepository::class)->setDimensionsConfiguration([]);
$liveWorkspace = new Workspace('live');
$workspaceRepository = $this->objectManager->get(WorkspaceRepository::class);
$workspaceRepository->add($liveWorkspace);
$testSite = new Site('test-site');
$testSite->setSiteResourcesPackageKey('Test.Site');
$siteRepository = $this->objectManager->get(SiteRepository::class);
$siteRepository->add($testSite);
$this->persistenceManager->persistAll();
$this->contextFactory = $this->objectManager->get(ContextFactoryInterface::class);
$subgraph = $this->contextFactory->create(['workspaceName' => 'live']);
$rootNode = $subgraph->getRootNode();
$sitesRootNode = $rootNode->createNode('sites');
$testSiteNode = $sitesRootNode->createNode('test-site');
$this->homePageNode = $testSiteNode->createNode(
'homepage',
$this->nodeTypeManager->getNodeType('Flowpack.NodeTemplates:Document.HomePage')
);
$this->homePageMainContentCollectionNode = $this->homePageNode->getNode('main');
}
/**
* @param NodeInterface $targetNode
* @param array<string, mixed> $nodeCreationDialogValues
*/
protected function createNodeInto(NodeInterface $targetNode, string $nodeTypeName, array $nodeCreationDialogValues): NodeInterface
{
self::assertTrue($this->nodeTypeManager->hasNodeType($nodeTypeName), sprintf('NodeType %s doesnt exits.', $nodeTypeName));
$targetNodeContextPath = $targetNode->getContextPath();
/** @see \Neos\Neos\Ui\Domain\Model\Changes\Create */
$changeCollectionSerialized = [[
'type' => 'Neos.Neos.Ui:CreateInto',
'subject' => $targetNodeContextPath,
'payload' => [
'parentContextPath' => $targetNodeContextPath,
'parentDomAddress' => [
'contextPath' => $targetNodeContextPath,
],
'nodeType' => $nodeTypeName,
'name' => 'new-node',
'data' => $nodeCreationDialogValues,
'baseNodeType' => '',
],
]];
$changeCollection = (new ChangeCollectionConverter())->convertFrom($changeCollectionSerialized, null);
assert($changeCollection instanceof ChangeCollection);
$changeCollection->apply();
return $targetNode->getNode('new-node');
}
protected function createFakeNode(string $nodeAggregateId): NodeInterface
{
return $this->homePageNode->createNode(uniqid('node-'), $this->nodeTypeManager->getNodeType('unstructured'), $nodeAggregateId);
}
protected function assertLastCreatedTemplateMatchesSnapshot(string $snapShotName): void
{
$lastCreatedTemplate = $this->serializeValuesInArray(
$this->lastCreatedRootTemplate->jsonSerialize()
);
$this->assertJsonStringEqualsJsonFileOrCreateSnapshot($this->fixturesDir . '/' . $snapShotName . '.template.json', json_encode($lastCreatedTemplate, JSON_PRETTY_PRINT));
}
protected function assertCaughtExceptionsMatchesSnapshot(string $snapShotName): void
{
$this->assertJsonStringEqualsJsonFileOrCreateSnapshot($this->fixturesDir . '/' . $snapShotName . '.messages.json', json_encode($this->getMessagesOfFeedbackCollection(), JSON_PRETTY_PRINT));
}
protected function assertNoExceptionsWereCaught(): void
{
self::assertSame([], $this->getMessagesOfFeedbackCollection());
}
protected function assertNodeDumpAndTemplateDumpMatchSnapshot(string $snapShotName, NodeInterface $node): void
{
$serializedNodes = $this->jsonSerializeNodeAndDescendents($node);
unset($serializedNodes['nodeTypeName']);
$this->assertJsonStringEqualsJsonFileOrCreateSnapshot($this->fixturesDir . '/' . $snapShotName . '.nodes.json', json_encode($serializedNodes, JSON_PRETTY_PRINT));
$dumpedYamlTemplate = $this->nodeTemplateDumper->createNodeTemplateYamlDumpFromSubtree($node);
$yamlTemplateWithoutOriginNodeTypeName = '\'{nodeTypeName}\'' . substr($dumpedYamlTemplate, strlen($node->getNodeType()->getName()) + 2);
$this->assertStringEqualsFileOrCreateSnapshot($this->fixturesDir . '/' . $snapShotName . '.yaml', $yamlTemplateWithoutOriginNodeTypeName);
}
}