org.pitest.rv.ROR1Mutator Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of pitest-rv-plugin Show documentation
Show all versions of pitest-rv-plugin Show documentation
Research operators for pitest
The newest version!
/*
* Copyright 2010 Henry Coles
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing,
* software distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and limitations under the License.
*/
package org.pitest.rv;
import org.pitest.reloc.asm.MethodVisitor;
import org.pitest.reloc.asm.Opcodes;
import org.pitest.mutationtest.engine.gregor.AbstractJumpMutator;
import org.pitest.mutationtest.engine.gregor.MethodInfo;
import org.pitest.mutationtest.engine.gregor.MethodMutatorFactory;
import org.pitest.mutationtest.engine.gregor.MutationContext;
import java.util.HashMap;
import java.util.Map;
public enum ROR1Mutator implements MethodMutatorFactory {
ROR1;
@Override
public MethodVisitor create(final MutationContext context,
final MethodInfo methodInfo, final MethodVisitor methodVisitor) {
return new ROR1MethodVisitor(this, context, methodVisitor);
}
@Override
public String getGloballyUniqueId() {
return this.getClass().getName();
}
@Override
public String getName() {
return name();
}
}
class ROR1MethodVisitor extends AbstractJumpMutator {
private static final Map MUTATIONS = new HashMap<>();
static {
MUTATIONS.put(Opcodes.IFLT, new Substitution(Opcodes.IFLE, "Less than to less or equal"));
MUTATIONS.put(Opcodes.IF_ICMPLT, new Substitution(Opcodes.IF_ICMPLE,
"Less than to less or equal"));
MUTATIONS.put(Opcodes.IFLE, new Substitution(Opcodes.IFLT, "Less or equal to less than"));
MUTATIONS.put(Opcodes.IF_ICMPLE, new Substitution(Opcodes.IF_ICMPLT,
"Less or equal to less than"));
MUTATIONS.put(Opcodes.IFGT, new Substitution(Opcodes.IFLT, "greater than to less than"));
MUTATIONS.put(Opcodes.IF_ICMPGT, new Substitution(Opcodes.IF_ICMPLT,
"greater than to less than"));
MUTATIONS.put(Opcodes.IFGE, new Substitution(Opcodes.IFLT, "greater or equal to less than"));
MUTATIONS.put(Opcodes.IF_ICMPGE, new Substitution(Opcodes.IF_ICMPLT,
"greater or equal to less than"));
MUTATIONS.put(Opcodes.IFEQ, new Substitution(Opcodes.IFLT, "equal to less than"));
MUTATIONS.put(Opcodes.IF_ICMPEQ, new Substitution(Opcodes.IF_ICMPLT,
"equal to less than"));
MUTATIONS.put(Opcodes.IFNE, new Substitution(Opcodes.IFLT, "not equal to less than"));
MUTATIONS.put(Opcodes.IF_ICMPNE, new Substitution(Opcodes.IF_ICMPLT,
"not equal to less than"));
}
ROR1MethodVisitor(final MethodMutatorFactory factory,
final MutationContext context, final MethodVisitor delegateMethodVisitor) {
super(factory, context, delegateMethodVisitor);
}
@Override
protected Map getMutations() {
return MUTATIONS;
}
}