blob: 416a589e351d018470c15be55d3dc01c197c51c9 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2004, 2006 Sybase, Inc. 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:
* Sybase, Inc. - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facesconfig.ui.test;
import org.eclipse.core.resources.IFile;
import org.eclipse.core.resources.IFolder;
import org.eclipse.core.resources.IResource;
import org.eclipse.core.runtime.CoreException;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.Path;
import org.eclipse.jst.jsf.facesconfig.ui.test.util.MockProgressMonitor;
import org.eclipse.jst.jsf.facesconfig.ui.util.WebrootUtil;
/**
* @author sfshi
*
*/
public class WebrootUtilTest extends FacesConfigEditorTest {
private static final String WEB_CONTENT_PATH = "/emptyjsfproject/WebContent";
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#getWebPath(org.eclipse.core.runtime.IPath)}.
*/
public void testGetWebPathIPath() {
}
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#isUnderWebContentFolder(org.eclipse.core.resources.IResource)}.
*
* @throws CoreException
*/
public void testIsUnderWebContentFolder() throws CoreException {
IResource resource = project.getFile(new Path("WebContent/web.xml"));
assertTrue(WebrootUtil.isUnderWebContentFolder(resource));
IFolder folder = WebrootUtil.getWebContentFolder(project);
IFile page1 = folder.getFile("page1.jsp");
page1.create(null, true, new MockProgressMonitor());
assertTrue(WebrootUtil.isUnderWebContentFolder(page1));
IFile file1 = project.getFile("file1.txt");
file1.create(null, true, new MockProgressMonitor());
assertFalse(WebrootUtil.isUnderWebContentFolder(file1));
}
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#getWebContentPath(org.eclipse.core.resources.IProject)}.
*/
public void testGetWebContentPath() {
IPath path = WebrootUtil.getWebContentPath(project);
assertNotNull(path);
assertEquals(path.toString(), WEB_CONTENT_PATH);
}
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#getWebContentFolder(org.eclipse.core.resources.IProject)}.
*/
public void testGetWebContentFolder() {
IFolder folder = WebrootUtil.getWebContentFolder(project);
assertNotNull(folder);
assertTrue(folder.exists());
assertEquals(folder.getFullPath().toString(), WEB_CONTENT_PATH);
}
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#getWebContentFolderDepth(org.eclipse.core.resources.IProject)}.
*/
public void testGetWebContentFolderDepth() {
assertEquals(2, WebrootUtil.getWebContentFolderDepth(project));
}
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#isValidWebFile(org.eclipse.core.runtime.IPath)}.
* @throws CoreException
*/
public void testIsValidWebFile() throws CoreException {
IFolder folder = WebrootUtil.getWebContentFolder(project);
IFile page1 = folder.getFile("page1.jsp");
page1.create(null, true, new MockProgressMonitor());
assertTrue(WebrootUtil.isValidWebFile(page1.getFullPath()));
IFile page2 = folder.getFile("page2.jsv");
page2.create(null, true, new MockProgressMonitor());
assertTrue(WebrootUtil.isValidWebFile(page2.getFullPath()));
IFile file1 = project.getFile("file1.txt");
file1.create(null, true, new MockProgressMonitor());
assertFalse(WebrootUtil.isValidWebFile(file1.getFullPath()));
}
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#getWebPath(java.lang.String)}.
*/
public void testGetWebPathString() {
}
/**
* Test method for
* {@link org.eclipse.jst.jsf.facesconfig.common.utils.WebrootUtil#getPageNameFromWebPath(java.lang.String)}.
*/
public void testGetPageNameFromWebPath() {
}
}