Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 1 | /* |
| 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 Marko | 920506d | 2014-11-18 14:47:31 +0000 | [diff] [blame] | 17 | import java.lang.reflect.InvocationTargetException; |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 18 | import java.lang.reflect.Method; |
Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 19 | import java.lang.reflect.Modifier; |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 20 | import java.util.LinkedList; |
| 21 | import java.util.List; |
| 22 | |
| 23 | /** |
| 24 | * Smali excercise. |
| 25 | */ |
| 26 | public 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>(); |
buzbee | 6489d22 | 2014-11-25 10:52:19 -0800 | [diff] [blame] | 52 | testCases.add(new TestCase("PackedSwitch", "PackedSwitch", "packedSwitch", |
Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 53 | new Object[]{123}, null, 123)); |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 54 | |
| 55 | testCases.add(new TestCase("b/17790197", "B17790197", "getInt", null, null, 100)); |
Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 56 | testCases.add(new TestCase("b/17978759", "B17978759", "test", null, new VerifyError(), |
| 57 | null)); |
Stephen Kyle | 8fe0e35 | 2014-10-16 15:02:42 +0100 | [diff] [blame] | 58 | testCases.add(new TestCase("FloatBadArgReg", "FloatBadArgReg", "getInt", |
Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 59 | new Object[]{100}, null, 100)); |
nikolay serdjuk | d24c934 | 2014-11-10 16:53:27 +0700 | [diff] [blame] | 60 | testCases.add(new TestCase("negLong", "negLong", "negLong", null, null, 122142L)); |
Vladimir Marko | 7a7c1db | 2014-11-17 15:13:34 +0000 | [diff] [blame] | 61 | testCases.add(new TestCase("sameFieldNames", "sameFieldNames", "getInt", null, null, 7)); |
Vladimir Marko | 920506d | 2014-11-18 14:47:31 +0000 | [diff] [blame] | 62 | testCases.add(new TestCase("b/18380491", "B18380491ConcreteClass", "foo", |
Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 63 | new Object[]{42}, null, 42)); |
Vladimir Marko | 920506d | 2014-11-18 14:47:31 +0000 | [diff] [blame] | 64 | testCases.add(new TestCase("invoke-super abstract", "B18380491ConcreteClass", "foo", |
Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 65 | new Object[]{0}, new AbstractMethodError(), null)); |
| 66 | testCases.add(new TestCase("BadCaseInOpRegRegReg", "BadCaseInOpRegRegReg", "getInt", null, |
| 67 | null, 2)); |
Nicolas Geoffray | 32b2a52 | 2014-11-27 14:54:18 +0000 | [diff] [blame] | 68 | testCases.add(new TestCase("CmpLong", "CmpLong", "run", null, null, 0)); |
Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 69 | testCases.add(new TestCase("FloatIntConstPassing", "FloatIntConstPassing", "run", null, |
| 70 | null, 2)); |
Vladimir Marko | 341e425 | 2014-12-19 10:29:51 +0000 | [diff] [blame] | 71 | testCases.add(new TestCase("b/18718277", "B18718277", "getInt", null, null, 0)); |
Sebastien Hertz | 270a0e1 | 2015-01-16 19:49:09 +0100 | [diff] [blame] | 72 | testCases.add(new TestCase("b/18800943 (1)", "B18800943_1", "n_a", null, new VerifyError(), |
| 73 | 0)); |
| 74 | testCases.add(new TestCase("b/18800943 (2)", "B18800943_2", "n_a", null, new VerifyError(), |
| 75 | 0)); |
| 76 | testCases.add(new TestCase("MoveExc", "MoveExc", "run", null, new ArithmeticException(), |
| 77 | null)); |
| 78 | testCases.add(new TestCase("MoveExceptionOnEntry", "MoveExceptionOnEntry", |
| 79 | "moveExceptionOnEntry", new Object[]{0}, new VerifyError(), null)); |
Jeff Hao | 9ccd151 | 2015-03-20 18:11:45 -0700 | [diff] [blame] | 80 | testCases.add(new TestCase("EmptySparseSwitch", "EmptySparseSwitch", "run", null, null, |
| 81 | null)); |
Andreas Gampe | b588f4c | 2015-05-26 13:35:39 -0700 | [diff] [blame] | 82 | testCases.add(new TestCase("b/20224106", "B20224106", "run", null, new VerifyError(), |
| 83 | 0)); |
Andreas Gampe | da9badb | 2015-06-05 20:22:12 -0700 | [diff] [blame] | 84 | testCases.add(new TestCase("b/17410612", "B17410612", "run", null, new VerifyError(), |
| 85 | 0)); |
Nicolas Geoffray | ea9ef4d | 2015-06-19 10:05:50 +0100 | [diff] [blame] | 86 | testCases.add(new TestCase("b/21863767", "B21863767", "run", null, null, |
Nicolas Geoffray | 69505f8 | 2015-06-18 18:04:12 +0100 | [diff] [blame] | 87 | null)); |
Vladimir Marko | 2d1a0a4 | 2015-06-18 17:40:00 +0100 | [diff] [blame] | 88 | testCases.add(new TestCase("b/21873167", "B21873167", "test", null, null, null)); |
Vladimir Marko | f11c420 | 2015-06-19 12:58:22 +0100 | [diff] [blame] | 89 | testCases.add(new TestCase("b/21614284", "B21614284", "test", new Object[] { null }, |
Andreas Gampe | d12e782 | 2015-06-25 10:26:40 -0700 | [diff] [blame] | 90 | new NullPointerException(), null)); |
Jeff Hao | dde9827 | 2015-06-17 16:04:26 -0700 | [diff] [blame] | 91 | testCases.add(new TestCase("b/21902684", "B21902684", "test", null, null, null)); |
Andreas Gampe | a32210c | 2015-06-24 10:26:13 -0700 | [diff] [blame] | 92 | testCases.add(new TestCase("b/22045582", "B22045582", "run", null, new VerifyError(), |
| 93 | 0)); |
| 94 | testCases.add(new TestCase("b/22045582 (int)", "B22045582Int", "run", null, |
| 95 | new VerifyError(), 0)); |
| 96 | testCases.add(new TestCase("b/22045582 (wide)", "B22045582Wide", "run", null, |
| 97 | new VerifyError(), 0)); |
Vladimir Marko | 414000e | 2015-06-23 17:45:21 +0100 | [diff] [blame] | 98 | testCases.add(new TestCase("b/21886894", "B21886894", "test", null, new VerifyError(), |
Andreas Gampe | d12e782 | 2015-06-25 10:26:40 -0700 | [diff] [blame] | 99 | null)); |
| 100 | testCases.add(new TestCase("b/22080519", "B22080519", "run", null, |
| 101 | new NullPointerException(), null)); |
Andreas Gampe | d5ad72f | 2015-06-26 17:33:47 -0700 | [diff] [blame] | 102 | testCases.add(new TestCase("b/21645819", "B21645819", "run", new Object[] { null }, |
| 103 | null, null)); |
Andreas Gampe | 185a558 | 2015-07-06 14:00:39 -0700 | [diff] [blame] | 104 | testCases.add(new TestCase("b/22244733", "B22244733", "run", new Object[] { "abc" }, |
| 105 | null, "abc")); |
Andreas Gampe | 3853628 | 2015-07-08 17:22:57 -0700 | [diff] [blame] | 106 | testCases.add(new TestCase("b/22331663", "B22331663", "run", new Object[] { false }, |
| 107 | null, null)); |
Andreas Gampe | 97a1ff3 | 2015-07-09 11:30:14 -0700 | [diff] [blame] | 108 | testCases.add(new TestCase("b/22331663 (pass)", "B22331663Pass", "run", |
| 109 | new Object[] { false }, null, null)); |
| 110 | testCases.add(new TestCase("b/22331663 (fail)", "B22331663Fail", "run", |
| 111 | new Object[] { false }, new VerifyError(), null)); |
Andreas Gampe | 891dfaa | 2015-07-13 21:12:43 -0700 | [diff] [blame] | 112 | testCases.add(new TestCase("b/22411633 (1)", "B22411633_1", "run", new Object[] { false }, |
| 113 | null, null)); |
| 114 | testCases.add(new TestCase("b/22411633 (2)", "B22411633_2", "run", new Object[] { false }, |
| 115 | new VerifyError(), null)); |
| 116 | testCases.add(new TestCase("b/22411633 (3)", "B22411633_3", "run", new Object[] { false }, |
| 117 | null, null)); |
| 118 | testCases.add(new TestCase("b/22411633 (4)", "B22411633_4", "run", new Object[] { false }, |
| 119 | new VerifyError(), null)); |
| 120 | testCases.add(new TestCase("b/22411633 (5)", "B22411633_5", "run", new Object[] { false }, |
| 121 | null, null)); |
Andreas Gampe | be2aa44 | 2015-07-27 21:41:49 -0700 | [diff] [blame^] | 122 | testCases.add(new TestCase("b/22777307", "B22777307", "run", null, new InstantiationError(), |
| 123 | null)); |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 124 | } |
| 125 | |
| 126 | public void runTests() { |
| 127 | for (TestCase tc : testCases) { |
| 128 | System.out.println(tc.testName); |
| 129 | try { |
| 130 | runTest(tc); |
| 131 | } catch (Exception exc) { |
| 132 | exc.printStackTrace(System.out); |
| 133 | } |
| 134 | } |
| 135 | } |
| 136 | |
| 137 | private void runTest(TestCase tc) throws Exception { |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 138 | Exception errorReturn = null; |
| 139 | try { |
Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 140 | Class<?> c = Class.forName(tc.testClass); |
| 141 | |
| 142 | Method[] methods = c.getDeclaredMethods(); |
| 143 | |
| 144 | // For simplicity we assume that test methods are not overloaded. So searching by name |
| 145 | // will give us the method we need to run. |
| 146 | Method method = null; |
| 147 | for (Method m : methods) { |
| 148 | if (m.getName().equals(tc.testMethodName)) { |
| 149 | method = m; |
| 150 | break; |
| 151 | } |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 152 | } |
Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 153 | |
| 154 | if (method == null) { |
| 155 | errorReturn = new IllegalArgumentException("Could not find test method " + |
| 156 | tc.testMethodName + " in class " + |
| 157 | tc.testClass + " for test " + |
| 158 | tc.testName); |
| 159 | } else { |
| 160 | Object retValue; |
| 161 | if (Modifier.isStatic(method.getModifiers())) { |
| 162 | retValue = method.invoke(null, tc.values); |
| 163 | } else { |
| 164 | retValue = method.invoke(method.getDeclaringClass().newInstance(), tc.values); |
| 165 | } |
| 166 | if (tc.expectedException != null) { |
| 167 | errorReturn = new IllegalStateException("Expected an exception in test " + |
| 168 | tc.testName); |
| 169 | } |
| 170 | if (tc.expectedReturn == null && retValue != null) { |
| 171 | errorReturn = new IllegalStateException("Expected a null result in test " + |
| 172 | tc.testName); |
| 173 | } else if (tc.expectedReturn != null && |
| 174 | (retValue == null || !tc.expectedReturn.equals(retValue))) { |
| 175 | errorReturn = new IllegalStateException("Expected return " + |
| 176 | tc.expectedReturn + |
| 177 | ", but got " + retValue); |
| 178 | } else { |
| 179 | // Expected result, do nothing. |
| 180 | } |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 181 | } |
Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 182 | } catch (Throwable exc) { |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 183 | if (tc.expectedException == null) { |
| 184 | errorReturn = new IllegalStateException("Did not expect exception", exc); |
Vladimir Marko | 920506d | 2014-11-18 14:47:31 +0000 | [diff] [blame] | 185 | } else if (exc instanceof InvocationTargetException && exc.getCause() != null && |
| 186 | exc.getCause().getClass().equals(tc.expectedException.getClass())) { |
| 187 | // Expected exception is wrapped in InvocationTargetException. |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 188 | } else if (!tc.expectedException.getClass().equals(exc.getClass())) { |
| 189 | errorReturn = new IllegalStateException("Expected " + |
Ian Rogers | 8e1f4f8 | 2014-11-05 11:07:30 -0800 | [diff] [blame] | 190 | tc.expectedException.getClass().getName() + |
| 191 | ", but got " + exc.getClass(), exc); |
| 192 | } else { |
| 193 | // Expected exception, do nothing. |
Andreas Gampe | 8fda9f2 | 2014-10-03 16:15:37 -0700 | [diff] [blame] | 194 | } |
| 195 | } finally { |
| 196 | if (errorReturn != null) { |
| 197 | throw errorReturn; |
| 198 | } |
| 199 | } |
| 200 | } |
| 201 | |
| 202 | public static void main(String[] args) throws Exception { |
| 203 | Main main = new Main(); |
| 204 | |
| 205 | main.runTests(); |
| 206 | |
| 207 | System.out.println("Done!"); |
| 208 | } |
| 209 | } |