Search in sources :

Example 1 with ApexOperationSigMask

use of net.sourceforge.pmd.lang.apex.metrics.signature.ApexOperationSigMask in project pmd by pmd.

the class ApexMultifileVisitorTest method testOperationsAreThere.

@Test
public void testOperationsAreThere() throws IOException {
    ApexNode<Compilation> acu = parseAndVisitForString(IOUtils.toString(ApexMultifileVisitorTest.class.getResourceAsStream("MetadataDeployController.cls")));
    final ApexSignatureMatcher toplevel = ApexProjectMirror.INSTANCE;
    final ApexOperationSigMask opMask = new ApexOperationSigMask();
    // We could parse qnames from string but probably simpler to do that
    acu.jjtAccept(new ApexParserVisitorAdapter() {

        @Override
        public Object visit(ASTMethod node, Object data) {
            if (!node.getImage().matches("(<clinit>|<init>|clone)")) {
                assertTrue(toplevel.hasMatchingSig(node.getQualifiedName(), opMask));
            }
            return data;
        }
    }, null);
}
Also used : Compilation(apex.jorje.semantic.ast.compilation.Compilation) ApexOperationSigMask(net.sourceforge.pmd.lang.apex.metrics.signature.ApexOperationSigMask) ASTMethod(net.sourceforge.pmd.lang.apex.ast.ASTMethod) ApexSignatureMatcher(net.sourceforge.pmd.lang.apex.metrics.ApexSignatureMatcher) ApexParserVisitorAdapter(net.sourceforge.pmd.lang.apex.ast.ApexParserVisitorAdapter) Test(org.junit.Test) ApexParserTest(net.sourceforge.pmd.lang.apex.ast.ApexParserTest)

Aggregations

Compilation (apex.jorje.semantic.ast.compilation.Compilation)1 ASTMethod (net.sourceforge.pmd.lang.apex.ast.ASTMethod)1 ApexParserTest (net.sourceforge.pmd.lang.apex.ast.ApexParserTest)1 ApexParserVisitorAdapter (net.sourceforge.pmd.lang.apex.ast.ApexParserVisitorAdapter)1 ApexSignatureMatcher (net.sourceforge.pmd.lang.apex.metrics.ApexSignatureMatcher)1 ApexOperationSigMask (net.sourceforge.pmd.lang.apex.metrics.signature.ApexOperationSigMask)1 Test (org.junit.Test)1