blob: 7fe2f9856ea8200c50285880811511ce9b571784 [file] [log] [blame]
/*******************************************************************************
* Copyright (c) 2001, 2007 Oracle Corporation and others.
* All rights reserved. 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:
* Oracle Corporation - initial API and implementation
*******************************************************************************/
package org.eclipse.jst.jsf.facesconfig.tests.read;
import org.eclipse.jst.jsf.core.IJSFCoreConstants;
import org.eclipse.jst.jsf.facesconfig.emf.DynamicElement;
import org.eclipse.jst.jsf.facesconfig.emf.FactoryExtensionType;
import org.eclipse.jst.jsf.facesconfig.emf.FactoryType;
import org.eclipse.jst.jsf.facesconfig.util.FacesConfigArtifactEdit;
public class ReadFactoryTestCase_1_2 extends ReadFactoryTestCase {
public ReadFactoryTestCase_1_2(String name) {
super(name);
}
protected void initialize(TestConfiguration testConfiguration) {
// override base when not in a configurable test suite
if(_testConfiguration == null)
{
_facesConfigFile = "WEB-INF/faces-config_1_2.xml";
_facesVersion = IJSFCoreConstants.JSF_VERSION_1_2;
}
else
{
super.initialize(testConfiguration);
}
}
public void testFactoryExtension() {
FacesConfigArtifactEdit edit = null;
try {
edit = getArtifactEditForRead();
assertNotNull(edit.getFacesConfig());
FactoryType factoryType1 = getFactoryType1(edit.getFacesConfig());
assertNotNull(factoryType1);
assertEquals(1, factoryType1.getFactoryExtension().size());
FactoryExtensionType factoryExtensionType =
(FactoryExtensionType) factoryType1.getFactoryExtension().get(0);
assertEquals(1, factoryExtensionType.getChildNodes().size());
DynamicElement element = (DynamicElement) factoryExtensionType.getChildNodes().get(0);
assertEquals("factory-extension-tag", element.getName());
} finally {
if (edit != null) {
edit.dispose();
}
}
}
}