blob: c08b5714636897268d113d70d4b290b7a99408a5 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2003, 2005 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v10.html
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.wtp.headless.tests.savestrategy;
import org.eclipse.jst.j2ee.commonarchivecore.internal.Archive;
import org.eclipse.jst.j2ee.commonarchivecore.internal.CommonarchiveFactory;
import org.eclipse.jst.j2ee.commonarchivecore.internal.exception.OpenFailureException;
import org.eclipse.jst.j2ee.commonarchivecore.internal.helpers.ArchiveOptions;
import org.eclipse.jst.j2ee.internal.archive.operations.AppClientComponentSaveStrategyImpl;
import org.eclipse.jst.j2ee.internal.archive.operations.ComponentSaveStrategyImpl;
import org.eclipse.wst.common.componentcore.resources.IVirtualComponent;
public class AppClientSaveStrategyTests extends SaveStrategyTest {
protected ComponentSaveStrategyImpl createSaveStrategy(IVirtualComponent component) {
return new AppClientComponentSaveStrategyImpl(component);
}
protected Archive openModuleFile(ArchiveOptions archiveOptions, String uri) throws OpenFailureException {
return CommonarchiveFactory.eINSTANCE.openApplicationClientFile(archiveOptions, uri);
}
public String getFlexProjectSeedName() {
return "AppClient.zip";
}
public String getProjectName() {
return "AppClient";
}
public String getRootArchiveFolderName() {
return "TestData" + fileSep + "AppClientTests";
}
public void testSource() throws Exception {
importArchive("AppClientSource.jar");
}
public void testSomeSource() throws Exception {
importArchive("AppClientSomeSource.jar");
}
public void testNoSource() throws Exception {
importArchive("AppClientNoSource.jar");
}
}