blob: a3bf14dee7e1908bb030fe25a877e619af641c0e [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2010, 2019 IBM Corporation and others.
* This program and the accompanying materials
* are made available under the terms of the Eclipse Public License 2.0
* which accompanies this distribution, and is available at
* https://www.eclipse.org/legal/epl-2.0/
*
* SPDX-License-Identifier: EPL-2.0
*
* Contributors:
* IBM Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.designtime.tests.resources;
import static junit.framework.Assert.assertFalse;
import static junit.framework.Assert.assertTrue;
import org.eclipse.jst.jsf.common.internal.resource.ContentTypeResolver;
import org.eclipse.jst.jsf.designtime.internal.resources.JSFResource;
import org.eclipse.jst.jsf.designtime.internal.resources.ResourceIdentifier;
import org.eclipse.jst.jsf.test.util.junit4.NoPluginEnvironment;
import org.eclipse.jst.jsf.test.util.mock.MockContentTypeManager;
import org.junit.Before;
import org.junit.Test;
import org.junit.experimental.categories.Category;
@Category(NoPluginEnvironment.class)
public class TestJSFResource
{
private TestableJSFResource _xhtmlJsfResource;
private TestableJSFResource _xhtmlNotAJSFResource;
@Before
public void testSetup() throws Exception
{
final ContentTypeResolver contentTypeResolver = new ContentTypeResolver(new MockContentTypeManager());
_xhtmlJsfResource = new TestableJSFResource(new ResourceIdentifier("someResource.xhtml"), contentTypeResolver);
_xhtmlNotAJSFResource = new TestableJSFResource(new ResourceIdentifier("someResource.foo"), contentTypeResolver);
}
@Test
public void testIsContentType()
{
assertTrue(_xhtmlJsfResource.isContentType("org.eclipse.wst.html.core.htmlsource"));
assertFalse(_xhtmlNotAJSFResource.isContentType("org.eclipse.wst.html.core.htmlsource")); }
private final static class TestableJSFResource extends JSFResource
{
private TestableJSFResource(final ResourceIdentifier id,
final ContentTypeResolver contentTypeResolver)
{
super(id, contentTypeResolver);
}
@Override
public boolean isAccessible()
{
return true;
}
}
}