diff --git a/baksmali/src/test/java/org/jf/baksmali/InvokeCustomTest.java b/baksmali/src/test/java/org/jf/baksmali/InvokeCustomTest.java new file mode 100644 index 00000000..35f1482a --- /dev/null +++ b/baksmali/src/test/java/org/jf/baksmali/InvokeCustomTest.java @@ -0,0 +1,43 @@ +/* + * Copyright 2018, Google Inc. + * All rights reserved. + * + * Redistribution and use in source and binary forms, with or without + * modification, are permitted provided that the following conditions are + * met: + * + * * Redistributions of source code must retain the above copyright + * notice, this list of conditions and the following disclaimer. + * * Redistributions in binary form must reproduce the above + * copyright notice, this list of conditions and the following disclaimer + * in the documentation and/or other materials provided with the + * distribution. + * * Neither the name of Google Inc. nor the names of its + * contributors may be used to endorse or promote products derived from + * this software without specific prior written permission. + * + * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS + * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT + * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR + * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT + * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, + * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT + * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, + * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY + * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT + * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE + * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE. + */ + +package org.jf.baksmali; + +import org.junit.Test; + +public class InvokeCustomTest extends IdenticalRoundtripTest { + @Test + public void testInvokeCustom() { + BaksmaliOptions options = new BaksmaliOptions(); + options.apiLevel = 26; + runTest("InvokeCustom", options); + } +} diff --git a/baksmali/src/test/resources/InvokeCustomTest/InvokeCustom.smali b/baksmali/src/test/resources/InvokeCustomTest/InvokeCustom.smali new file mode 100644 index 00000000..6cf954be --- /dev/null +++ b/baksmali/src/test/resources/InvokeCustomTest/InvokeCustom.smali @@ -0,0 +1,38 @@ +.class LInvokeCustom; +.super Ljava/lang/Object; + + +# direct methods +.method public static invokeCustom([Ljava/lang/String;)V + .registers 15 + + new-instance v0, LCustom; + + invoke-direct {v0}, LCustom;->()V + + const-string v1, "Arg to doSomething" + + invoke-custom {v0, v1}, call_site_1("doSomething", (LCustom;Ljava/lang/String;)Ljava/lang/String;, "just testing")@LBootstrapLinker;->normalLink(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/String;)Ljava/lang/invoke/CallSite; + + move-result-object v2 + + sget-object v3, Ljava/lang/System;->out:Ljava/io/PrintStream; + + const-string v4, "got back - " + + invoke-virtual {v3, v4}, Ljava/io/PrintStream;->print(Ljava/lang/String;)V + + invoke-virtual {v3, v2}, Ljava/io/PrintStream;->println(Ljava/lang/String;)V + + invoke-custom {v0, v1}, call_site_0("doSomething", (LCustom;Ljava/lang/String;)Ljava/lang/String;, "just testing")@LBootstrapLinker;->backwardsLink(Ljava/lang/invoke/MethodHandles$Lookup;Ljava/lang/String;Ljava/lang/invoke/MethodType;Ljava/lang/String;)Ljava/lang/invoke/CallSite; + + move-result-object v2 + + sget-object v3, Ljava/lang/System;->out:Ljava/io/PrintStream; + + const-string v4, "got back - " + + invoke-virtual {v3, v4}, Ljava/io/PrintStream;->print(Ljava/lang/String;)V + + invoke-virtual {v3, v2}, Ljava/io/PrintStream;->println(Ljava/lang/String;)V +.end method