-
-
Notifications
You must be signed in to change notification settings - Fork 138
/
Copy pathServiceIndexUtilTest.java
180 lines (146 loc) · 6.95 KB
/
ServiceIndexUtilTest.java
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
package fr.adrienbrault.idea.symfony2plugin.tests.stubs;
import com.intellij.openapi.util.Condition;
import com.intellij.openapi.vfs.VirtualFile;
import com.intellij.psi.PsiElement;
import com.intellij.psi.PsiManager;
import com.intellij.psi.xml.XmlTag;
import com.intellij.util.containers.ContainerUtil;
import com.jetbrains.php.lang.psi.elements.StringLiteralExpression;
import fr.adrienbrault.idea.symfony2plugin.dic.ContainerService;
import fr.adrienbrault.idea.symfony2plugin.stubs.ServiceIndexUtil;
import fr.adrienbrault.idea.symfony2plugin.tests.SymfonyLightCodeInsightFixtureTestCase;
import fr.adrienbrault.idea.symfony2plugin.util.PhpElementsUtil;
import org.jetbrains.annotations.NotNull;
import org.jetbrains.yaml.psi.YAMLKeyValue;
import java.util.Collection;
import java.util.Map;
/**
* @author Daniel Espendiller <daniel@espendiller.net>
* @see fr.adrienbrault.idea.symfony2plugin.stubs.ServiceIndexUtil
*/
public class ServiceIndexUtilTest extends SymfonyLightCodeInsightFixtureTestCase {
private VirtualFile ymlVirtualFile;
private VirtualFile xmlVirtualFile;
public void setUp() throws Exception {
super.setUp();
myFixture.copyFileToProject("classes.php");
ymlVirtualFile = myFixture.copyFileToProject("services.yml");
xmlVirtualFile = myFixture.copyFileToProject("services.xml");
myFixture.copyFileToProject("services.php");
}
public String getTestDataPath() {
return "src/test/java/fr/adrienbrault/idea/symfony2plugin/tests/stubs/fixtures";
}
public void testFindServiceDefinitionsForStringInsideYaml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitions(getProject(), "foo.yml_id"),
new MyYamlKeyValueCondition("foo.yml_id")
));
}
public void testFindServiceDefinitionsForStringInsideXml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitions(getProject(), "foo.xml_id"),
new MyXmlTagCondition("foo.xml_id")
));
}
public void testFindServiceDefinitionsForNamespacePrototype() {
assertTrue(ServiceIndexUtil.findServiceDefinitions(getProject(), "App\\").stream()
.anyMatch(psiElement -> psiElement instanceof XmlTag && "App\\".equalsIgnoreCase(((XmlTag) psiElement).getAttributeValue("namespace")))
);
assertTrue(ServiceIndexUtil.findServiceDefinitions(getProject(), "app\\").stream()
.anyMatch(psiElement -> psiElement instanceof XmlTag && "App\\".equalsIgnoreCase(((XmlTag) psiElement).getAttributeValue("namespace")))
);
}
public void testFindServiceDefinitionsForStringInsideXmlUpperCase() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitions(getProject(), "foo.xml_id.upper"),
new MyXmlTagCondition("foo.xml_id.UPPER")
));
}
public void testFindServiceDefinitionsForPhpClassInsideYaml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitions(PhpElementsUtil.getClass(getProject(), "My\\Foo\\Service\\Targets")),
new MyYamlKeyValueCondition("foo.yml_id")
));
}
public void testFindServiceDefinitionsForPhpClassInsideXml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitions(PhpElementsUtil.getClass(getProject(), "My\\Foo\\Service\\Targets")),
new MyXmlTagCondition("foo.xml_id")
));
}
public void testFindServiceDefinitionsForPhpClassInsidePhp() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitions(PhpElementsUtil.getClass(getProject(), "My\\Foo\\Service\\PhpTargets")),
new MyPhpCondition("php_twig.command.debug")
));
}
public void testFindServiceDefinitionsForPhpClassAsLazyInsideYml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitionsLazy(PhpElementsUtil.getClass(getProject(),"My\\Foo\\Service\\Targets")).get(),
new MyYamlKeyValueCondition("foo.yml_id"))
);
}
public void testFindServiceDefinitionsForPhpClassAsLazyInsideXml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findServiceDefinitionsLazy(PhpElementsUtil.getClass(getProject(),"My\\Foo\\Service\\Targets")).get(),
new MyXmlTagCondition("foo.xml_id"))
);
}
public void testFindParameterDefinitionsInsideYml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findParameterDefinitions(PsiManager.getInstance(getProject()).findFile(ymlVirtualFile), "foo_yaml_parameter"),
new MyYamlKeyValueCondition("foo_yaml_parameter"))
);
}
public void testFindParameterDefinitionsInsideXml() {
assertNotNull(ContainerUtil.find(
ServiceIndexUtil.findParameterDefinitions(PsiManager.getInstance(getProject()).findFile(xmlVirtualFile), "foo_xml_parameter"),
new MyXmlTagCondition("foo_xml_parameter", "key"))
);
}
public void testGetParentServices() {
Map<String, Collection<ContainerService>> parentServices = ServiceIndexUtil.getParentServices(getProject());
assertNotNull(parentServices.get("foo.yml_id.parent").stream().filter(service -> "foo.yml_id".equals(service.getName())).findFirst().orElse(null));
assertNotNull(parentServices.get("foo.xml_id.parent").stream().filter(service -> "foo.xml_id".equals(service.getName())).findFirst().orElse(null));
}
private static class MyYamlKeyValueCondition implements Condition<PsiElement> {
@NotNull
private final String key;
public MyYamlKeyValueCondition(@NotNull String key) {
this.key = key;
}
@Override
public boolean value(PsiElement psiElement) {
return psiElement instanceof YAMLKeyValue && ((YAMLKeyValue) psiElement).getKeyText().equals(this.key);
}
}
private static class MyXmlTagCondition implements Condition<PsiElement> {
@NotNull
private final String key;
@NotNull
private final String attr;
public MyXmlTagCondition(@NotNull String key) {
this(key, "id");
}
public MyXmlTagCondition(@NotNull String key, @NotNull String attr) {
this.key = key;
this.attr = attr;
}
@Override
public boolean value(PsiElement psiElement) {
return psiElement instanceof XmlTag && this.key.equals(((XmlTag) psiElement).getAttributeValue(this.attr));
}
}
private static class MyPhpCondition implements Condition<PsiElement> {
@NotNull
private final String id;
public MyPhpCondition(@NotNull String id) {
this.id = id;
}
@Override
public boolean value(PsiElement psiElement) {
return psiElement instanceof StringLiteralExpression && this.id.equalsIgnoreCase(((StringLiteralExpression) psiElement).getContents());
}
}
}