Runeloader test

This commit is contained in:
Adam
2015-11-22 11:43:49 -06:00
parent 304b78dfd7
commit 30ed0b4309
3 changed files with 105 additions and 1 deletions

View File

@@ -47,6 +47,13 @@
<version>4.12</version>
<scope>test</scope>
</dependency>
<dependency>
<groupId>net.runelite.rs</groupId>
<artifactId>api</artifactId>
<version>1.0-SNAPSHOT</version>
<scope>test</scope>
<type>jar</type>
</dependency>
</dependencies>
<build>
<plugins>

View File

@@ -1,18 +1,115 @@
package net.runelite.deob.runeloader;
import com.google.common.base.Objects;
import java.io.File;
import java.io.IOException;
import java.lang.reflect.Field;
import java.net.MalformedURLException;
import java.net.URL;
import java.net.URLClassLoader;
import java.util.ArrayList;
import java.util.List;
import net.runelite.deob.runeloader.inject.GetterInjectInstruction;
import net.runelite.deob.runeloader.inject.InjectionModscript;
import net.runelite.mapping.ObfuscatedGetter;
import net.runelite.mapping.ObfuscatedName;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;
public class CheckMappings
{
private static final Logger logger = LoggerFactory.getLogger(CheckMappings.class);
private static final File CLIENT = new File("/Users/adam/w/rs/07/rs-client-1.0-SNAPSHOT.jar");
private static final File RL_INJECTION = new File("/Users/adam/w/rs/07/rl/injection.json");
private final List<Class> classes = new ArrayList<>();
@Before
public void before() throws MalformedURLException, ClassNotFoundException
{
ClassLoader loader = new URLClassLoader(new URL[] { CLIENT.toURL() });
Class c = loader.loadClass("net.runelite.rs.client.client");
classes.add(c);
for (int i = 0; i < 230; ++i)
{
try
{
c = loader.loadClass("net.runelite.rs.client.class" + i);
classes.add(c);
}
catch (ClassNotFoundException ex)
{
}
}
}
private Class<?> findClassWithObfuscatedName(String name)
{
for (Class c : classes)
{
if (c.getName().equals("net.runelite.rs.client.client") && name.equals("client"))
return c;
ObfuscatedName oc = (ObfuscatedName) c.getDeclaredAnnotation(ObfuscatedName.class);
if (oc == null)
continue;
if (oc.value().equals(name))
return c;
}
return null;
}
private Field findFieldWithObfuscatedName(Class c, String name)
{
for (Field f : c.getDeclaredFields())
{
ObfuscatedName oc = (ObfuscatedName) f.getDeclaredAnnotation(ObfuscatedName.class);
if (oc == null)
continue;
if (oc.value().equals(name))
return f;
}
return null;
}
private Integer getIntegerMultiplier(Field f)
{
ObfuscatedGetter getter = (ObfuscatedGetter) f.getDeclaredAnnotation(ObfuscatedGetter.class);
if (getter == null)
return null;
return getter.intValue();
}
@Test
public void checkMappings() throws IOException
{
InjectionModscript mod = InjectionModscript.load(RL_INJECTION);
for (int i = 0; i < mod.getGetterInjects().size(); ++i)
{
GetterInjectInstruction gii = (GetterInjectInstruction) mod.getGetterInjects().get(i);
Class c = this.findClassWithObfuscatedName(gii.getGetterClassName());
Assert.assertNotNull(c);
Field f = this.findFieldWithObfuscatedName(c, gii.getGetterFieldName());
Assert.assertNotNull(f);
Integer mul = gii.getMultiplier(),
myMul = this.getIntegerMultiplier(f);
if (myMul != null && myMul == 0)
myMul = null;
Assert.assertTrue(Objects.equal(mul, myMul));
}
}
}

View File

@@ -9,7 +9,7 @@ import java.util.List;
import org.objectweb.asm.tree.AbstractInsnNode;
public class InjectionModscript {
private List getterInjects = new LinkedList();
private List<GetterInjectInstruction> getterInjects = new LinkedList<>();
private List superChangeInjects = new LinkedList();
private List addInterfaceInjects = new LinkedList();
private List methodMods = new LinkedList();