Package org.jf.dexlib2.immutable

Examples of org.jf.dexlib2.immutable.ImmutableExceptionHandler


                methodImpl);

        ClassDef classDef = new ImmutableClassDef("Lblah;", AccessFlags.PUBLIC.getValue(), "Ljava/lang/Object;", null,
                null, null, null, null, ImmutableList.of(method), null);

        DexFile dexFile = new ImmutableDexFile(ImmutableList.of(classDef));

        ClassPath classPath = ClassPath.fromClassPath(ImmutableList.<String>of(), ImmutableList.<String>of(), dexFile,
                15);
        InlineMethodResolver inlineMethodResolver = new CustomInlineMethodResolver(classPath, "Lblah;->blah()V");
        MethodAnalyzer methodAnalyzer = new MethodAnalyzer(classPath, method, inlineMethodResolver);
View Full Code Here


    @Test
    public void testSingleCatchAll_Beginning() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(0, 10, new ImmutableExceptionHandler(null, 5));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(0, 10,
                ImmutableList.of(new ImmutableExceptionHandler(null, 5))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testSingleCatchAll_Middle() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(5, 10, new ImmutableExceptionHandler(null, 15));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(5, 5,
                ImmutableList.of(new ImmutableExceptionHandler(null, 15))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testSingleCatch_Beginning() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(0, 10, new ImmutableExceptionHandler("Ljava/lang/Exception;", 5));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(0, 10,
                ImmutableList.of(new ImmutableExceptionHandler("Ljava/lang/Exception;", 5))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testSingleCatch_Middle() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(5, 10, new ImmutableExceptionHandler("Ljava/lang/Exception;", 15));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(new ImmutableTryBlock(5, 5,
                ImmutableList.of(new ImmutableExceptionHandler("Ljava/lang/Exception;", 15))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testOverlap_End_After() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(0, 10, new ImmutableExceptionHandler("LException1;", 5));
        tlb.addHandler(10, 20, new ImmutableExceptionHandler("LException2;", 6));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(
                new ImmutableTryBlock(0, 10,
                        ImmutableList.of(new ImmutableExceptionHandler("LException1;", 5))),
                new ImmutableTryBlock(10, 10,
                        ImmutableList.of(new ImmutableExceptionHandler("LException2;", 6))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testOverlap_After_After() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(0, 10, new ImmutableExceptionHandler("LException1;", 5));
        tlb.addHandler(15, 20, new ImmutableExceptionHandler("LException2;", 6));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(
                new ImmutableTryBlock(0, 10,
                        ImmutableList.of(new ImmutableExceptionHandler("LException1;", 5))),
                new ImmutableTryBlock(15, 5,
                        ImmutableList.of(new ImmutableExceptionHandler("LException2;", 6))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testOverlap_Before_Start() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(5, 10, new ImmutableExceptionHandler("LException1;", 5));
        tlb.addHandler(0, 5, new ImmutableExceptionHandler("LException2;", 6));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(
                new ImmutableTryBlock(0, 5,
                        ImmutableList.of(new ImmutableExceptionHandler("LException2;", 6))),
                new ImmutableTryBlock(5, 5,
                        ImmutableList.of(new ImmutableExceptionHandler("LException1;", 5))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testOverlap_Before_Before() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(5, 10, new ImmutableExceptionHandler("LException1;", 5));
        tlb.addHandler(0, 3, new ImmutableExceptionHandler("LException2;", 6));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(
                new ImmutableTryBlock(0, 3,
                        ImmutableList.of(new ImmutableExceptionHandler("LException2;", 6))),
                new ImmutableTryBlock(5, 5,
                        ImmutableList.of(new ImmutableExceptionHandler("LException1;", 5))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

    @Test
    public void testOverlap_Start_End() {
        TryListBuilder tlb = new TryListBuilder();

        tlb.addHandler(0, 10, new ImmutableExceptionHandler("LException1;", 5));
        tlb.addHandler(0, 10, new ImmutableExceptionHandler("LException2;", 6));

        List<? extends TryBlock<? extends ExceptionHandler>> tryBlocks = tlb.getTryBlocks();

        List<? extends TryBlock> expected = ImmutableList.of(
                new ImmutableTryBlock(0, 10,
                        ImmutableList.of(
                                new ImmutableExceptionHandler("LException1;", 5),
                                new ImmutableExceptionHandler("LException2;", 6))));

        Assert.assertEquals(expected, tryBlocks);
    }
View Full Code Here

TOP

Related Classes of org.jf.dexlib2.immutable.ImmutableExceptionHandler

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.