Package com.github.maven_nar.cpptasks.compiler

Source Code of com.github.maven_nar.cpptasks.compiler.TestAbstractCompiler$DummyAbstractCompiler

/*
* #%L
* Native ARchive plugin for Maven
* %%
* Copyright (C) 2002 - 2014 NAR Maven Plugin developers.
* %%
* 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.
* #L%
*/
package com.github.maven_nar.cpptasks.compiler;
import java.io.File;


import org.apache.tools.ant.BuildException;

import com.github.maven_nar.cpptasks.CCTask;
import com.github.maven_nar.cpptasks.CompilerDef;
import com.github.maven_nar.cpptasks.ProcessorDef;
import com.github.maven_nar.cpptasks.VersionInfo;
import com.github.maven_nar.cpptasks.compiler.AbstractCompiler;
import com.github.maven_nar.cpptasks.compiler.AbstractProcessor;
import com.github.maven_nar.cpptasks.compiler.CompilerConfiguration;
import com.github.maven_nar.cpptasks.compiler.LinkType;
import com.github.maven_nar.cpptasks.compiler.Linker;
import com.github.maven_nar.cpptasks.parser.CParser;
import com.github.maven_nar.cpptasks.parser.Parser;
/**
* Test for abstract compiler class
*
* Override create to test concrete compiler implementions
*/
public class TestAbstractCompiler extends TestAbstractProcessor {
    private class DummyAbstractCompiler extends AbstractCompiler {
        public DummyAbstractCompiler() {
            super(new String[]{".cpp", ".c"},
                    new String[]{".hpp", ".h", ".inl"}, ".o");
        }
        public void compile(CCTask task, File[] srcfile, File[] outputfile,
                CompilerConfiguration config) throws BuildException {
            throw new BuildException("Not implemented");
        }
        public CompilerConfiguration createConfiguration(CCTask task,
                LinkType linkType, ProcessorDef[] def1, CompilerDef def2,
        com.github.maven_nar.cpptasks.TargetDef targetPlatform,
        VersionInfo versionInfo) {
            return null;
        }
        public Parser createParser(File file) {
            return new CParser();
        }
        public String getIdentifier() {
            return "dummy";
        }
        public Linker getLinker(LinkType type) {
            return null;
        }
    }
    public TestAbstractCompiler(String name) {
        super(name);
    }
    protected AbstractProcessor create() {
        return new DummyAbstractCompiler();
    }
    protected String getObjectExtension() {
        return ".o";
    }
    public void testCanParseTlb() {
        AbstractCompiler compiler = (AbstractCompiler) create();
        assertEquals(false, compiler.canParse(new File("sample.tlb")));
    }
    public void failingtestGetOutputFileName1() {
        AbstractProcessor compiler = create();
        String[] output = compiler.getOutputFileNames("c:/foo\\bar\\hello.c", null);
        assertEquals("hello" + getObjectExtension(), output[0]);
        output = compiler.getOutputFileNames("c:/foo\\bar/hello.c", null);
        assertEquals("hello" + getObjectExtension(), output[0]);
        output = compiler.getOutputFileNames("hello.c", null);
        assertEquals("hello" + getObjectExtension(), output[0]);
        output = compiler.getOutputFileNames("c:/foo\\bar\\hello.h", null);
        assertEquals(0, output.length);
        output = compiler.getOutputFileNames("c:/foo\\bar/hello.h", null);
        assertEquals(0, output.length);
    }
}
TOP

Related Classes of com.github.maven_nar.cpptasks.compiler.TestAbstractCompiler$DummyAbstractCompiler

TOP
Copyright © 2018 www.massapi.com. 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.