mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-05-22 15:16:29 +00:00
256 lines
9.3 KiB
Java
256 lines
9.3 KiB
Java
/*
|
|
* Copyright (C) 2010-2026 JPEXS, All rights reserved.
|
|
*
|
|
* This library is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU Lesser General Public
|
|
* License as published by the Free Software Foundation; either
|
|
* version 3.0 of the License, or (at your option) any later version.
|
|
*
|
|
* This library is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
* Lesser General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Lesser General Public
|
|
* License along with this library.
|
|
*/
|
|
package com.jpexs.decompiler.flash;
|
|
|
|
import com.jpexs.decompiler.flash.action.Action;
|
|
import com.jpexs.decompiler.flash.configuration.Configuration;
|
|
import com.jpexs.decompiler.flash.helpers.CodeFormatting;
|
|
import com.jpexs.decompiler.flash.helpers.HighlightedTextWriter;
|
|
import com.jpexs.decompiler.flash.tags.DoInitActionTag;
|
|
import com.jpexs.decompiler.flash.tags.Tag;
|
|
import com.jpexs.helpers.utf8.Utf8Helper;
|
|
import java.io.BufferedInputStream;
|
|
import java.io.FileInputStream;
|
|
import java.io.IOException;
|
|
import static org.testng.Assert.assertEquals;
|
|
import static org.testng.Assert.assertNotNull;
|
|
import static org.testng.Assert.fail;
|
|
import org.testng.annotations.BeforeClass;
|
|
import org.testng.annotations.Test;
|
|
|
|
/**
|
|
*
|
|
* @author JPEXS
|
|
*/
|
|
public class ActionScript2ClassesTest extends ActionScript2TestBase {
|
|
|
|
private final String BASE_TEST_PACKAGE = "com.jpexs.flash.test.testcases";
|
|
|
|
@BeforeClass
|
|
public void init() throws IOException, InterruptedException {
|
|
//Main.initLogging(false);
|
|
Configuration.autoDeobfuscate.set(false);
|
|
Configuration.simplifyExpressions.set(false);
|
|
Configuration.decompile.set(true);
|
|
Configuration.registerNameFormat.set("_loc%d_");
|
|
Configuration.skipDetectionOfUninitializedClassFields.set(false);
|
|
swf = new SWF(new BufferedInputStream(new FileInputStream("testdata/as2/as2.swf")), false);
|
|
}
|
|
|
|
private void compareSrc(String testClassName, String expectedClassContents) {
|
|
DoInitActionTag dia = getClassSource(BASE_TEST_PACKAGE + "." + testClassName);
|
|
assertNotNull(dia);
|
|
HighlightedTextWriter writer = new HighlightedTextWriter(new CodeFormatting(), false);
|
|
try {
|
|
Action.actionsToSource(swf.getUninitializedAs2ClassTraits(), dia, dia.getActions(), "", writer, Utf8Helper.charsetName);
|
|
} catch (InterruptedException ex) {
|
|
fail();
|
|
}
|
|
writer.finishHilights();
|
|
String actualResult = cleanPCode(writer.toString());
|
|
String expectedResult = cleanPCode("class " + BASE_TEST_PACKAGE + "." + testClassName + "\r\n"
|
|
+ "{\r\n"
|
|
+ expectedClassContents + "\r\n"
|
|
+ "}");
|
|
assertEquals(actualResult, expectedResult);
|
|
}
|
|
|
|
private DoInitActionTag getClassSource(String classFullName) {
|
|
for (Tag t : swf.getTags()) {
|
|
if (t instanceof DoInitActionTag) {
|
|
DoInitActionTag dia = (DoInitActionTag) t;
|
|
String exportName = swf.getExportName(dia.spriteId);
|
|
if (exportName != null && exportName.startsWith(SWF.AS2_PKG_PREFIX)) {
|
|
String exportClassName = exportName.substring(SWF.AS2_PKG_PREFIX.length());
|
|
if (exportClassName.equals(classFullName)) {
|
|
return dia;
|
|
}
|
|
}
|
|
}
|
|
}
|
|
return null;
|
|
}
|
|
|
|
@Test
|
|
public void testVarsMethods() {
|
|
compareSrc("TestVarsMethods", "var instVar = 1;\r\n"
|
|
+ "static var statVar = 2;\r\n"
|
|
+ "function TestVarsMethods()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"constructor\");\r\n"
|
|
+ "}\r\n"
|
|
+ "function instMethod()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"instance method\");\r\n"
|
|
+ "}\r\n"
|
|
+ "static function statMethod()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"static method\");\r\n"
|
|
+ "}\r\n"
|
|
);
|
|
}
|
|
|
|
@Test
|
|
public void testMaintainOrder() {
|
|
compareSrc("TestMaintainOrder", "var a = 1;\r\n"
|
|
+ "static var b = 2;\r\n"
|
|
+ "var c = 3;\r\n"
|
|
+ "static var d = 4;\r\n"
|
|
+ "static var e = 5;\r\n"
|
|
+ "var f = 6;\r\n"
|
|
+ "var g = 7;\r\n"
|
|
+ "var _x1 = \"after method m\";\r\n"
|
|
+ "function TestMaintainOrder()\r\n"
|
|
+ "{\r\n"
|
|
+ "}\r\n"
|
|
+ "function h()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"8\");\r\n"
|
|
+ "}\r\n"
|
|
+ "function i()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"9\");\r\n"
|
|
+ "}\r\n"
|
|
+ "static function j()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"10\");\r\n"
|
|
+ "}\r\n"
|
|
+ "static function k()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"11\");\r\n"
|
|
+ "}\r\n"
|
|
+ "function l()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"12\");\r\n"
|
|
+ "}\r\n"
|
|
+ "static function m()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"13\");\r\n"
|
|
+ "}\r\n"
|
|
+ "function _x2()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"after _x1\");\r\n"
|
|
+ "}\r\n");
|
|
}
|
|
|
|
@Test
|
|
public void testSetterGetter() {
|
|
compareSrc("TestSetterGetter", "var _myvar = 1;\r\n"
|
|
+ "static var _mystvar = 2;\r\n"
|
|
+ "var _myvarsetonly = 3;\r\n"
|
|
+ "var _myvargetonly = 4;\r\n"
|
|
+ "function TestSetterGetter()\r\n"
|
|
+ "{\r\n"
|
|
+ "}\r\n"
|
|
+ "static function get mystvar()\r\n"
|
|
+ "{\r\n"
|
|
+ "return com.jpexs.flash.test.testcases.TestSetterGetter._mystvar;\r\n"
|
|
+ "}\r\n"
|
|
+ "static function set mystvar(val)\r\n"
|
|
+ "{\r\n"
|
|
+ "com.jpexs.flash.test.testcases.TestSetterGetter._mystvar = val;\r\n"
|
|
+ "}\r\n"
|
|
+ "function get myvar()\r\n"
|
|
+ "{\r\n"
|
|
+ "return this._myvar;\r\n"
|
|
+ "}\r\n"
|
|
+ "function set myvar(val)\r\n"
|
|
+ "{\r\n"
|
|
+ "this._myvar = val;\r\n"
|
|
+ "}\r\n"
|
|
+ "function get myvargetonly()\r\n"
|
|
+ "{\r\n"
|
|
+ "return this._myvargetonly;\r\n"
|
|
+ "}\r\n"
|
|
+ "function set myvarsetonly(val)\r\n"
|
|
+ "{\r\n"
|
|
+ "this._myvarsetonly = val;\r\n"
|
|
+ "}\r\n"
|
|
+ "function classic()\r\n"
|
|
+ "{\r\n"
|
|
+ "trace(\"okay\");\r\n"
|
|
+ "}\r\n");
|
|
}
|
|
|
|
@Test
|
|
public void testCallSetterGetter() {
|
|
compareSrc("TestCallSetterGetter", " var myobj;\n"
|
|
+ " function TestCallSetterGetter()\n"
|
|
+ " {\n"
|
|
+ " }\n"
|
|
+ " function testSetterCall()\n"
|
|
+ " {\n"
|
|
+ " this.myobj.myvar = 5;\n"
|
|
+ " }\n"
|
|
+ " function testGetterCall()\n"
|
|
+ " {\n"
|
|
+ " return this.myobj.myvar;\n"
|
|
+ " }\n"
|
|
+ " function testStatGetterCall()\n"
|
|
+ " {\n"
|
|
+ " return com.jpexs.flash.test.testcases.TestSetterGetter.mystvar;\n"
|
|
+ " }\n"
|
|
+ " function testStatSetterCall(val)\n"
|
|
+ " {\n"
|
|
+ " com.jpexs.flash.test.testcases.TestSetterGetter.mystvar = 6;\n"
|
|
+ " }");
|
|
}
|
|
|
|
@Test
|
|
public void testReturnInConstructor() {
|
|
compareSrc("TestReturnInConstructor", " function TestReturnInConstructor()\n"
|
|
+ " {\n"
|
|
+ " var _loc1_ = 3;\n"
|
|
+ " if(_loc1_ == 3)\n"
|
|
+ " {\n"
|
|
+ " trace(\"A\");\n"
|
|
+ " return;\n"
|
|
+ " }\n"
|
|
+ " trace(\"B\");\n"
|
|
+ " }\n"
|
|
+ " function func()\n"
|
|
+ " {\n"
|
|
+ " var _loc1_ = 3;\n"
|
|
+ " if(_loc1_ == 3)\n"
|
|
+ " {\n"
|
|
+ " trace(\"A\");\n"
|
|
+ " return undefined;\n"
|
|
+ " }\n"
|
|
+ " trace(\"B\");\n"
|
|
+ " return 5;\n"
|
|
+ " }");
|
|
}
|
|
|
|
@Test
|
|
public void testUnpopped() {
|
|
compareSrc("TestUnpopped", "var a;\n"
|
|
+ " var c = true;\n"
|
|
+ " function TestUnpopped()\n"
|
|
+ " {\n"
|
|
+ " }\n"
|
|
+ " function run()\n"
|
|
+ " {\n"
|
|
+ " §§push(this.a);\n"
|
|
+ " trace(\"b\");\n"
|
|
+ " if(this.c)\n"
|
|
+ " {\n"
|
|
+ " trace(\"c\");\n"
|
|
+ " }\n"
|
|
+ " }");
|
|
}
|
|
}
|