blob: ec595562a58a70a0d7e153655ec6dba1be1e6254 [file] [log] [blame]
/*
*
* 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<File> 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<File> libraries = new ArrayList<File>();
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");
}
}