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
195
196
|
/*
* Copyright © 2010 Reinier Zwitserloot and Roel Spilker.
*
* Permission is hereby granted, free of charge, to any person obtaining a copy
* of this software and associated documentation files (the "Software"), to deal
* in the Software without restriction, including without limitation the rights
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
* copies of the Software, and to permit persons to whom the Software is
* furnished to do so, subject to the following conditions:
*
* The above copyright notice and this permission notice shall be included in
* all copies or substantial portions of the Software.
*
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
* THE SOFTWARE.
*/
package lombok.bytecode;
import static org.junit.Assert.*;
import java.io.BufferedReader;
import java.io.File;
import java.io.FileReader;
import java.io.IOException;
import java.io.StringWriter;
import java.util.Arrays;
import java.util.Collections;
import java.util.List;
import javax.tools.JavaCompiler;
import javax.tools.SimpleJavaFileObject;
import javax.tools.ToolProvider;
import javax.tools.JavaCompiler.CompilationTask;
import lombok.Lombok;
import org.junit.Test;
public class ClassFileMetaDataTest {
private ClassFileMetaData foo = create(new File("test/bytecode/resource/Foo.java"));
private ClassFileMetaData bar = create(new File("test/bytecode/resource/Bar.java"));
private ClassFileMetaData baz = create(new File("test/bytecode/resource/Baz.java"));
private ClassFileMetaData buux = create(new File("test/bytecode/resource/Buux.java"));
@Test
public void testGetClassName() {
assertTrue(foo.containsUtf8("Foo"));
assertEquals("Foo", foo.getClassName());
assertTrue(bar.containsUtf8("Bar"));
assertEquals("Bar", bar.getClassName());
assertTrue(baz.containsUtf8("Baz"));
assertEquals("Baz", baz.getClassName());
}
@Test
public void testGetSuperClassName() {
assertTrue(foo.containsUtf8("java/lang/Object"));
assertEquals("java/lang/Object", foo.getSuperClassName());
assertEquals("java/lang/Object", bar.getSuperClassName());
assertEquals("java/lang/Object", baz.getSuperClassName());
assertEquals("java/util/ArrayList", buux.getSuperClassName());
}
@Test
public void testUsesClass() {
assertTrue(foo.usesClass("java/lang/System"));
// assertTrue(foo.usesClass("java/lang/String"));
}
@Test
public void testUsesField() {
assertTrue(foo.usesField("java/lang/System", "out"));
}
@Test
public void testUsesMethodWithName() {
assertTrue(foo.usesMethod("java/io/PrintStream", "print"));
assertTrue(buux.usesMethod("java/util/ArrayList", "<init>"));
assertTrue(buux.usesMethod("java/util/ArrayList", "add"));
assertTrue(buux.usesMethod("Buux", "addSomething"));
}
@Test
public void testUsesMethodWithNameAndDescriptor() {
assertTrue(foo.usesMethod("java/io/PrintStream", "print", "(Ljava/lang/String;)V"));
assertTrue(buux.usesMethod("java/util/ArrayList", "<init>", "(I)V"));
assertTrue(buux.usesMethod("java/util/ArrayList", "add", "(Ljava/lang/Object;)Z"));
assertTrue(buux.usesMethod("Buux", "addSomething", "()V"));
}
@Test
public void testGetInterfaces() {
assertTrue(foo.containsUtf8("java/util/RandomAccess"));
List<String> fooInterfaces = foo.getInterfaces();
assertEquals(1, fooInterfaces.size());
assertEquals("java/util/RandomAccess", fooInterfaces.get(0));
assertTrue(bar.containsUtf8("java/util/RandomAccess"));
assertTrue(bar.containsUtf8("java/util/Map"));
List<String> barInterfaces = bar.getInterfaces();
assertEquals(2, barInterfaces.size());
assertEquals("java/util/RandomAccess", barInterfaces.get(0));
assertEquals("java/util/Map", barInterfaces.get(1));
}
@Test
public void testContainsStringConstant() {
assertTrue(foo.containsStringConstant("Eén"));
assertTrue(foo.containsStringConstant("TwoFour"));
assertTrue(buux.containsStringConstant("H\u3404l\0"));
}
private ClassFileMetaData create(File file) {
return new ClassFileMetaData(compile(file));
}
private byte[] compile(File file) {
try {
JavaCompiler compiler = ToolProvider.getSystemJavaCompiler();
File tempDir = getTempDir();
tempDir.mkdirs();
List<String> options = Arrays.asList("-nowarn", "-proc:none", "-d", tempDir.getAbsolutePath());
StringWriter captureWarnings = new StringWriter();
CompilationTask task = compiler.getTask(captureWarnings, null, null, options, null, Collections.singleton(new ContentBasedJavaFileObject(file.getPath(), readFileAsString(file))));
assertTrue(task.call());
return PostCompilerApp.readFile(new File(tempDir, file.getName().replaceAll("\\.java$", ".class")));
} catch (Exception e) {
throw Lombok.sneakyThrow(e);
}
}
private File getTempDir() {
String[] rawDirs = {
System.getProperty("java.io.tmpdir"),
"/tmp",
"C:\\Windows\\Temp"
};
for (String dir : rawDirs) {
if (dir == null) continue;
File f = new File(dir);
if (!f.isDirectory()) continue;
return new File(f, "lombok.bytecode-test");
}
return new File("./build/tmp");
}
static class ContentBasedJavaFileObject extends SimpleJavaFileObject {
private final String content;
protected ContentBasedJavaFileObject(String name, String content) {
super(new File(name).toURI(), Kind.SOURCE);
this.content = content;
}
@Override
public CharSequence getCharContent(boolean ignoreEncodingErrors) throws IOException {
return content;
}
}
private String readFileAsString(File file) {
try {
BufferedReader reader = new BufferedReader(new FileReader(file));
StringWriter writer = new StringWriter();
String line = reader.readLine();
while(line != null) {
writer.append(line).append("\n");
line = reader.readLine();
}
reader.close();
writer.close();
return writer.toString();
} catch (Exception e) {
throw Lombok.sneakyThrow(e);
}
}
}
|