blob: 4e6de46caa6dc26692ef20ce4ea1a8973254a976 [file] [log] [blame]
Andreas Gampe8fda9f22014-10-03 16:15:37 -07001/*
2 * Copyright (C) 2014 The Android Open Source Project
3 *
4 * Licensed under the Apache License, Version 2.0 (the "License");
5 * you may not use this file except in compliance with the License.
6 * You may obtain a copy of the License at
7 *
8 * http://www.apache.org/licenses/LICENSE-2.0
9 *
10 * Unless required by applicable law or agreed to in writing, software
11 * distributed under the License is distributed on an "AS IS" BASIS,
12 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
13 * See the License for the specific language governing permissions and
14 * limitations under the License.
15 */
16
Vladimir Marko920506d2014-11-18 14:47:31 +000017import java.lang.reflect.InvocationTargetException;
Andreas Gampe8fda9f22014-10-03 16:15:37 -070018import java.lang.reflect.Method;
Ian Rogers8e1f4f82014-11-05 11:07:30 -080019import java.lang.reflect.Modifier;
Andreas Gampe8fda9f22014-10-03 16:15:37 -070020import java.util.LinkedList;
21import java.util.List;
22
23/**
24 * Smali excercise.
25 */
26public class Main {
27
28 private static class TestCase {
29 public TestCase(String testName, String testClass, String testMethodName, Object[] values,
30 Throwable expectedException, Object expectedReturn) {
31 this.testName = testName;
32 this.testClass = testClass;
33 this.testMethodName = testMethodName;
34 this.values = values;
35 this.expectedException = expectedException;
36 this.expectedReturn = expectedReturn;
37 }
38
39 String testName;
40 String testClass;
41 String testMethodName;
42 Object[] values;
43 Throwable expectedException;
44 Object expectedReturn;
45 }
46
47 private List<TestCase> testCases;
48
49 public Main() {
50 // Create the test cases.
51 testCases = new LinkedList<TestCase>();
buzbee6489d222014-11-25 10:52:19 -080052 testCases.add(new TestCase("PackedSwitch", "PackedSwitch", "packedSwitch",
Sebastien Hertz270a0e12015-01-16 19:49:09 +010053 new Object[]{123}, null, 123));
David Brazdil5469d342015-09-25 16:57:53 +010054 testCases.add(new TestCase("PackedSwitch key INT_MAX", "PackedSwitch",
55 "packedSwitch_INT_MAX", new Object[]{123}, null, 123));
56 testCases.add(new TestCase("PackedSwitch key overflow", "b_24399945",
57 "packedSwitch_overflow", new Object[]{123}, new VerifyError(), null));
Andreas Gampe8fda9f22014-10-03 16:15:37 -070058
59 testCases.add(new TestCase("b/17790197", "B17790197", "getInt", null, null, 100));
Stephen Kyle8fe0e352014-10-16 15:02:42 +010060 testCases.add(new TestCase("FloatBadArgReg", "FloatBadArgReg", "getInt",
Sebastien Hertz270a0e12015-01-16 19:49:09 +010061 new Object[]{100}, null, 100));
nikolay serdjukd24c9342014-11-10 16:53:27 +070062 testCases.add(new TestCase("negLong", "negLong", "negLong", null, null, 122142L));
Vladimir Marko7a7c1db2014-11-17 15:13:34 +000063 testCases.add(new TestCase("sameFieldNames", "sameFieldNames", "getInt", null, null, 7));
Vladimir Marko920506d2014-11-18 14:47:31 +000064 testCases.add(new TestCase("b/18380491", "B18380491ConcreteClass", "foo",
Sebastien Hertz270a0e12015-01-16 19:49:09 +010065 new Object[]{42}, null, 42));
Vladimir Marko920506d2014-11-18 14:47:31 +000066 testCases.add(new TestCase("invoke-super abstract", "B18380491ConcreteClass", "foo",
Sebastien Hertz270a0e12015-01-16 19:49:09 +010067 new Object[]{0}, new AbstractMethodError(), null));
68 testCases.add(new TestCase("BadCaseInOpRegRegReg", "BadCaseInOpRegRegReg", "getInt", null,
69 null, 2));
Nicolas Geoffray32b2a522014-11-27 14:54:18 +000070 testCases.add(new TestCase("CmpLong", "CmpLong", "run", null, null, 0));
Sebastien Hertz270a0e12015-01-16 19:49:09 +010071 testCases.add(new TestCase("FloatIntConstPassing", "FloatIntConstPassing", "run", null,
72 null, 2));
Vladimir Marko341e4252014-12-19 10:29:51 +000073 testCases.add(new TestCase("b/18718277", "B18718277", "getInt", null, null, 0));
Sebastien Hertz270a0e12015-01-16 19:49:09 +010074 testCases.add(new TestCase("b/18800943 (1)", "B18800943_1", "n_a", null, new VerifyError(),
75 0));
76 testCases.add(new TestCase("b/18800943 (2)", "B18800943_2", "n_a", null, new VerifyError(),
77 0));
78 testCases.add(new TestCase("MoveExc", "MoveExc", "run", null, new ArithmeticException(),
79 null));
80 testCases.add(new TestCase("MoveExceptionOnEntry", "MoveExceptionOnEntry",
81 "moveExceptionOnEntry", new Object[]{0}, new VerifyError(), null));
Jeff Hao9ccd1512015-03-20 18:11:45 -070082 testCases.add(new TestCase("EmptySparseSwitch", "EmptySparseSwitch", "run", null, null,
83 null));
Andreas Gampeb588f4c2015-05-26 13:35:39 -070084 testCases.add(new TestCase("b/20224106", "B20224106", "run", null, new VerifyError(),
85 0));
Andreas Gampeda9badb2015-06-05 20:22:12 -070086 testCases.add(new TestCase("b/17410612", "B17410612", "run", null, new VerifyError(),
87 0));
Nicolas Geoffrayea9ef4d2015-06-19 10:05:50 +010088 testCases.add(new TestCase("b/21863767", "B21863767", "run", null, null,
Nicolas Geoffray69505f82015-06-18 18:04:12 +010089 null));
Vladimir Marko2d1a0a42015-06-18 17:40:00 +010090 testCases.add(new TestCase("b/21873167", "B21873167", "test", null, null, null));
Vladimir Markof11c4202015-06-19 12:58:22 +010091 testCases.add(new TestCase("b/21614284", "B21614284", "test", new Object[] { null },
Andreas Gamped12e7822015-06-25 10:26:40 -070092 new NullPointerException(), null));
Jeff Haodde98272015-06-17 16:04:26 -070093 testCases.add(new TestCase("b/21902684", "B21902684", "test", null, null, null));
Andreas Gampea32210c2015-06-24 10:26:13 -070094 testCases.add(new TestCase("b/22045582", "B22045582", "run", null, new VerifyError(),
95 0));
96 testCases.add(new TestCase("b/22045582 (int)", "B22045582Int", "run", null,
97 new VerifyError(), 0));
98 testCases.add(new TestCase("b/22045582 (wide)", "B22045582Wide", "run", null,
99 new VerifyError(), 0));
Vladimir Marko414000e2015-06-23 17:45:21 +0100100 testCases.add(new TestCase("b/21886894", "B21886894", "test", null, new VerifyError(),
Andreas Gamped12e7822015-06-25 10:26:40 -0700101 null));
102 testCases.add(new TestCase("b/22080519", "B22080519", "run", null,
103 new NullPointerException(), null));
Andreas Gamped5ad72f2015-06-26 17:33:47 -0700104 testCases.add(new TestCase("b/21645819", "B21645819", "run", new Object[] { null },
105 null, null));
Andreas Gampe185a5582015-07-06 14:00:39 -0700106 testCases.add(new TestCase("b/22244733", "B22244733", "run", new Object[] { "abc" },
107 null, "abc"));
Andreas Gampe38536282015-07-08 17:22:57 -0700108 testCases.add(new TestCase("b/22331663", "B22331663", "run", new Object[] { false },
109 null, null));
Andreas Gampe97a1ff32015-07-09 11:30:14 -0700110 testCases.add(new TestCase("b/22331663 (pass)", "B22331663Pass", "run",
111 new Object[] { false }, null, null));
112 testCases.add(new TestCase("b/22331663 (fail)", "B22331663Fail", "run",
113 new Object[] { false }, new VerifyError(), null));
Andreas Gampe891dfaa2015-07-13 21:12:43 -0700114 testCases.add(new TestCase("b/22411633 (1)", "B22411633_1", "run", new Object[] { false },
115 null, null));
116 testCases.add(new TestCase("b/22411633 (2)", "B22411633_2", "run", new Object[] { false },
117 new VerifyError(), null));
118 testCases.add(new TestCase("b/22411633 (3)", "B22411633_3", "run", new Object[] { false },
119 null, null));
120 testCases.add(new TestCase("b/22411633 (4)", "B22411633_4", "run", new Object[] { false },
121 new VerifyError(), null));
122 testCases.add(new TestCase("b/22411633 (5)", "B22411633_5", "run", new Object[] { false },
123 null, null));
Andreas Gampebe2aa442015-07-27 21:41:49 -0700124 testCases.add(new TestCase("b/22777307", "B22777307", "run", null, new InstantiationError(),
125 null));
Andreas Gampe2ea7b702015-08-07 08:07:16 -0700126 testCases.add(new TestCase("b/22881413", "B22881413", "run", null, null, null));
Andreas Gampef10b6e12015-08-12 10:48:12 -0700127 testCases.add(new TestCase("b/20843113", "B20843113", "run", null, null, null));
Andreas Gampe4bf4c782015-08-14 14:07:43 -0700128 testCases.add(new TestCase("b/23201502 (float)", "B23201502", "runFloat", null,
129 new NullPointerException(), null));
130 testCases.add(new TestCase("b/23201502 (double)", "B23201502", "runDouble", null,
131 new NullPointerException(), null));
Andreas Gampef5cdc412015-08-18 08:57:44 -0700132 testCases.add(new TestCase("b/23300986", "B23300986", "runAliasAfterEnter",
133 new Object[] { new Object() }, null, null));
Andreas Gampec1474102015-08-18 08:57:44 -0700134 testCases.add(new TestCase("b/23300986 (2)", "B23300986", "runAliasBeforeEnter",
135 new Object[] { new Object() }, null, null));
Andreas Gampead238ce2015-08-24 21:13:08 -0700136 testCases.add(new TestCase("b/23502994 (if-eqz)", "B23502994", "runIF_EQZ",
137 new Object[] { new Object() }, null, null));
138 testCases.add(new TestCase("b/23502994 (check-cast)", "B23502994", "runCHECKCAST",
139 new Object[] { "abc" }, null, null));
Andreas Gampea4c98f22015-11-06 16:24:49 -0800140 testCases.add(new TestCase("b/25494456", "B25494456", "run", null, new VerifyError(),
141 null));
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800142 testCases.add(new TestCase("b/21869691", "B21869691A", "run", null,
143 new IncompatibleClassChangeError(), null));
Andreas Gampe97b11352015-12-10 16:23:41 -0800144 testCases.add(new TestCase("b/26143249", "B26143249", "run", null,
145 new AbstractMethodError(), null));
David Brazdil87a55752016-01-15 14:55:13 +0000146 testCases.add(new TestCase("b/26579108", "B26579108", "run", null, new VerifyError(),
147 null));
David Brazdil68b5c0b2016-01-19 14:25:29 +0000148 testCases.add(new TestCase("b/26594149 (1)", "B26594149_1", "run", null, new VerifyError(),
149 null));
150 testCases.add(new TestCase("b/26594149 (2)", "B26594149_2", "run", null, new VerifyError(),
151 null));
152 testCases.add(new TestCase("b/26594149 (3)", "B26594149_3", "run", null, new VerifyError(),
153 null));
154 testCases.add(new TestCase("b/26594149 (4)", "B26594149_4", "run", null, new VerifyError(),
155 null));
156 testCases.add(new TestCase("b/26594149 (5)", "B26594149_5", "run", null, null, null));
157 testCases.add(new TestCase("b/26594149 (6)", "B26594149_6", "run", null, new VerifyError(),
158 null));
159 testCases.add(new TestCase("b/26594149 (7)", "B26594149_7", "run", null, new VerifyError(),
160 null));
161 testCases.add(new TestCase("b/26594149 (8)", "B26594149_8", "run", null, new VerifyError(),
162 null));
Pavel Vyssotski980027c2016-02-11 20:28:11 +0600163 testCases.add(new TestCase("b/27148248", "B27148248", "run", null, new VerifyError(),
164 null));
Alex Light4a2c8fc2016-02-12 11:01:54 -0800165 testCases.add(new TestCase("b/26965384", "B26965384", "run", null, new VerifyError(),
166 null));
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700167 }
168
169 public void runTests() {
170 for (TestCase tc : testCases) {
171 System.out.println(tc.testName);
172 try {
173 runTest(tc);
174 } catch (Exception exc) {
175 exc.printStackTrace(System.out);
176 }
177 }
178 }
179
180 private void runTest(TestCase tc) throws Exception {
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700181 Exception errorReturn = null;
182 try {
Ian Rogers8e1f4f82014-11-05 11:07:30 -0800183 Class<?> c = Class.forName(tc.testClass);
184
185 Method[] methods = c.getDeclaredMethods();
186
187 // For simplicity we assume that test methods are not overloaded. So searching by name
188 // will give us the method we need to run.
189 Method method = null;
190 for (Method m : methods) {
191 if (m.getName().equals(tc.testMethodName)) {
192 method = m;
193 break;
194 }
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700195 }
Ian Rogers8e1f4f82014-11-05 11:07:30 -0800196
197 if (method == null) {
198 errorReturn = new IllegalArgumentException("Could not find test method " +
199 tc.testMethodName + " in class " +
200 tc.testClass + " for test " +
201 tc.testName);
202 } else {
203 Object retValue;
204 if (Modifier.isStatic(method.getModifiers())) {
205 retValue = method.invoke(null, tc.values);
206 } else {
207 retValue = method.invoke(method.getDeclaringClass().newInstance(), tc.values);
208 }
209 if (tc.expectedException != null) {
210 errorReturn = new IllegalStateException("Expected an exception in test " +
211 tc.testName);
David Brazdil87a55752016-01-15 14:55:13 +0000212 } else if (tc.expectedReturn == null && retValue != null) {
Ian Rogers8e1f4f82014-11-05 11:07:30 -0800213 errorReturn = new IllegalStateException("Expected a null result in test " +
214 tc.testName);
215 } else if (tc.expectedReturn != null &&
216 (retValue == null || !tc.expectedReturn.equals(retValue))) {
217 errorReturn = new IllegalStateException("Expected return " +
218 tc.expectedReturn +
219 ", but got " + retValue);
220 } else {
221 // Expected result, do nothing.
222 }
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700223 }
Ian Rogers8e1f4f82014-11-05 11:07:30 -0800224 } catch (Throwable exc) {
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700225 if (tc.expectedException == null) {
226 errorReturn = new IllegalStateException("Did not expect exception", exc);
Vladimir Marko920506d2014-11-18 14:47:31 +0000227 } else if (exc instanceof InvocationTargetException && exc.getCause() != null &&
228 exc.getCause().getClass().equals(tc.expectedException.getClass())) {
229 // Expected exception is wrapped in InvocationTargetException.
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700230 } else if (!tc.expectedException.getClass().equals(exc.getClass())) {
231 errorReturn = new IllegalStateException("Expected " +
Ian Rogers8e1f4f82014-11-05 11:07:30 -0800232 tc.expectedException.getClass().getName() +
233 ", but got " + exc.getClass(), exc);
234 } else {
Andreas Gampe42ef8ab2015-12-03 17:27:32 -0800235 // Expected exception, do nothing.
Andreas Gampe8fda9f22014-10-03 16:15:37 -0700236 }
237 } finally {
238 if (errorReturn != null) {
239 throw errorReturn;
240 }
241 }
242 }
243
244 public static void main(String[] args) throws Exception {
245 Main main = new Main();
246
247 main.runTests();
248
249 System.out.println("Done!");
250 }
251}