All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.apache.flex.utils.AntTestAdapter Maven / Gradle / Ivy

Go to download

Shared test code, which is needed by the compiler and the compiler-jx test-suites.

The newest version!
/*
 *
 *  Licensed to the Apache Software Foundation (ASF) under one or more
 *  contributor license agreements.  See the NOTICE file distributed with
 *  this work for additional information regarding copyright ownership.
 *  The ASF licenses this file to You 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.apache.flex.utils;

import org.junit.Assert;

import java.io.File;
import java.util.ArrayList;
import java.util.List;

/**
 * Created by christoferdutz on 23.02.16.
 */
public class AntTestAdapter implements ITestAdapter {

    private static EnvProperties env = EnvProperties.initiate();

    private static final File PLAYERGLOBAL_SWC = new File(FilenameNormalization.normalize(env.FPSDK + "\\" + env.FPVER + "\\playerglobal.swc"));
    // The Ant script for compiler.tests copies a standalone player to the temp directory.
    private static final File FLASHPLAYER = new File(FilenameNormalization.normalize(env.FDBG));

    private static final File LIBS_ROOT = new File(FilenameNormalization.normalize(env.SDK + "\\frameworks\\libs"));
    private static final File RESOURCE_BUNDLES_ROOT = new File(FilenameNormalization.normalize(env.SDK + "\\frameworks\\locale\\en_US"));

    @Override
    public String getTempDir() {
        return FilenameNormalization.normalize("../../target/junit-temp"); // ensure this exists
    }

    @Override
    public List getLibraries(boolean withFlex) {
        // Do some checks if all needed environment variables are set.
        if (withFlex) {
            Assert.assertNotNull("Environment variable FLEX_HOME is not set", env.SDK);
        }
        Assert.assertNotNull("Environment variable PLAYERGLOBAL_HOME is not set", env.FPSDK);

        // Create a list of libs needed to compile.
        List libraries = new ArrayList();
        libraries.add(getPlayerglobal());
        if (withFlex)
        {
            libraries.add(getFlexArtifact("framework"));
            libraries.add(getFlexArtifact("rpc"));
            libraries.add(getFlexArtifact("spark"));
        }
        return libraries;
    }

    @Override
    public File getPlayerglobal() {
        return PLAYERGLOBAL_SWC;
    }

    @Override
    public File getFlashplayerDebugger() {
        return FLASHPLAYER;
    }

    @Override
    public String getFlexManifestPath(String type) {
        return env.SDK + "\\frameworks\\" + type + "-manifest.xml";
    }

    @Override
    public File getFlexArtifact(String artifactName) {
        return getLib(artifactName);
    }

    @Override
    public File getFlexArtifactResourceBundle(String artifactName) {
        return getResourceBundle(artifactName);
    }

    @Override
    public String getFlexJsManifestPath(String type) {
        return null;
    }

    @Override
    public File getFlexJSArtifact(String artifactName) {
        return null;
    }

    @Override
    public File getUnitTestBaseDir() {
        return new File("resources");
    }

    private File getLib(String artifactId) {
        return new File(LIBS_ROOT, artifactId + ".swc");
    }

    private File getResourceBundle(String artifactId) {
        return new File(RESOURCE_BUNDLES_ROOT, artifactId + "_rb.swc");
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy