blob: 6668d8fd541a8bec3742a72cc16a36f37e5d43a9 [file] [log] [blame]
/*****************************************************************************
* Copyright (c) 2010, 2019 Mia-Software and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v2.0
* which accompanies this distribution, and is available at
* http://www.eclipse.org/legal/epl-v20.html
*
* Contributors:
* Nicolas Guyomar (Mia-Software) - initial API and implementation
* Nicolas Bros (Mia-Software) - adapted to new discovery framework
*****************************************************************************/
package org.eclipse.modisco.jee.webapp.discoverer.tests;
import java.io.File;
import org.junit.Assert;
import org.eclipse.core.runtime.IPath;
import org.eclipse.core.runtime.NullProgressMonitor;
import org.eclipse.core.runtime.Path;
import org.eclipse.emf.ecore.EObject;
import org.eclipse.emf.ecore.resource.Resource;
import org.eclipse.modisco.infra.discovery.core.IDiscoveryManager;
import org.eclipse.modisco.jee.actions.AbstractDeploymentDescriptorDiscoverer;
import org.eclipse.modisco.jee.webapp.discoverer.WebXmlDiscoverer2;
import org.eclipse.modisco.jee.webapp.webapp30.DocumentRoot;
import org.eclipse.modisco.jee.webapp.webapp30.EjbRefType;
import org.eclipse.modisco.jee.webapp.webapp30.EnvEntryType;
import org.eclipse.modisco.jee.webapp.webapp30.ErrorPageType;
import org.eclipse.modisco.jee.webapp.webapp30.ParamValueType;
import org.eclipse.modisco.jee.webapp.webapp30.SecurityConstraintType;
import org.eclipse.modisco.jee.webapp.webapp30.ServletType;
import org.eclipse.modisco.jee.webapp.webapp30.WebAppType;
import org.junit.Before;
import org.junit.Test;
/**
* Test of discovering a WEB.XML model 3.0
*
*/
public class TestWebXml30 {
private static final String RESOURCES_TEST1_XML = "/resources/TestWebXml30.xml"; //$NON-NLS-1$
private static final String VERSION = "3.0"; //$NON-NLS-1$
private Resource resource;
@Before
public void initResource() throws Exception {
if (this.resource == null) {
String wsLocation = JUnitPlugin.getDefault().getBundle().getLocation();
IPath path = new Path(wsLocation.replaceFirst("^reference:file:", "") //$NON-NLS-1$ //$NON-NLS-2$
+ TestWebXml30.RESOURCES_TEST1_XML);
File xmlFile = new File(path.toOSString());
Assert.assertTrue("Count not find " + path.toString(), xmlFile.exists());
WebXmlDiscoverer2 discoverer = (WebXmlDiscoverer2) IDiscoveryManager.INSTANCE
.createDiscovererImpl(WebXmlDiscoverer2.ID);
discoverer.discoverElement(xmlFile, new NullProgressMonitor());
this.resource = discoverer.getTargetModel();
Assert.assertTrue(AbstractDeploymentDescriptorDiscoverer.getDescXmlVersion(
JUnitPlugin.getDefault(), xmlFile, WebXmlDiscoverer2.ROOT_NAME,
WebXmlDiscoverer2.DTD_URL).equalsIgnoreCase(TestWebXml30.VERSION));
Assert.assertNotNull("Count not retrieve a XML model from " + path.toString(),
this.resource);
}
}
@Test
public void test001() {
if (this.resource != null) {
Assert.assertFalse("Could not retrieve a xml model from resource", this.resource
.getContents().isEmpty());
EObject root = this.resource.getContents().get(0);
DocumentRoot myWebXmlModel = (DocumentRoot) root;
// Retrieve the body of the web.xml file
WebAppType webApp = myWebXmlModel.getWebApp();
// <!-- TEST Modisco context-param-->
ParamValueType context = webApp.getContextParam().get(0);
Assert.assertTrue(context.getDescription().get(0).getValue().toString()
.equalsIgnoreCase("description-example")); //$NON-NLS-1$
Assert.assertTrue(context.getParamName().getValue().toString()
.equalsIgnoreCase("param-name-example")); //$NON-NLS-1$
Assert.assertTrue(context.getParamValue().getValue().toString()
.equalsIgnoreCase("param-value-example")); //$NON-NLS-1$
// <!-- TEST Modisco Description-->
Assert.assertTrue(webApp.getDescription().get(0).getValue().toString()
.equalsIgnoreCase("description-example")); //$NON-NLS-1$
// <!-- TEST Modisco display-name-->
Assert.assertTrue(webApp.getDisplayName().get(0).getValue().toString()
.equalsIgnoreCase("display-name-example")); //$NON-NLS-1$
// <!--TEST Modisco ejb-ref-->
EjbRefType ejbRefType = webApp.getEjbRef().get(0);
Assert.assertTrue(ejbRefType.getDescription().get(0).getValue().toString()
.equalsIgnoreCase("description-example")); //$NON-NLS-1$
Assert.assertTrue(ejbRefType.getEjbRefName().getValue().toString()
.equalsIgnoreCase("ejb-ref-name-example")); //$NON-NLS-1$
Assert.assertTrue(ejbRefType.getEjbRefType().getValue().toString()
.equalsIgnoreCase("ejb-ref-type-example")); //$NON-NLS-1$
Assert.assertTrue(ejbRefType.getHome().getValue().toString()
.equalsIgnoreCase("home-example")); //$NON-NLS-1$
Assert.assertTrue(ejbRefType.getRemote().getValue().toString()
.equalsIgnoreCase("remote-example")); //$NON-NLS-1$
Assert.assertTrue(ejbRefType.getEjbLink().getValue().toString()
.equalsIgnoreCase("ejb-link-example")); //$NON-NLS-1$
// <!--TEST Modisco env-entry-->
EnvEntryType envEntry = webApp.getEnvEntry().get(0);
Assert.assertTrue(envEntry.getDescription().get(0).getValue().toString()
.equalsIgnoreCase("description-example")); //$NON-NLS-1$
Assert.assertTrue(envEntry.getEnvEntryName().getValue().toString()
.equalsIgnoreCase("env-entry-name-example")); //$NON-NLS-1$
Assert.assertTrue(envEntry.getEnvEntryValue().getValue().toString()
.equalsIgnoreCase("env-entry-value-example")); //$NON-NLS-1$
Assert.assertTrue(envEntry.getEnvEntryType().getValue().toString()
.equalsIgnoreCase("env-entry-type-example")); //$NON-NLS-1$
// <!-- TEST Modisco error-page -->
ErrorPageType errorPage = webApp.getErrorPage().get(0);
Assert.assertTrue(errorPage.getErrorCode().getValue().toString().equalsIgnoreCase("10")); //$NON-NLS-1$
Assert.assertTrue(errorPage.getExceptionType().getValue().toString()
.equalsIgnoreCase("exception-type-example")); //$NON-NLS-1$
Assert.assertTrue(errorPage.getLocation().getValue().toString()
.equalsIgnoreCase("location-example")); //$NON-NLS-1$
// <!-- TEST Modisco security-constraint-->
SecurityConstraintType secu = webApp.getSecurityConstraint().get(0);
Assert.assertTrue(secu.getWebResourceCollection().get(0).getWebResourceName()
.getValue().toString().equalsIgnoreCase("web-resource-name-example")); //$NON-NLS-1$
Assert.assertTrue(secu.getWebResourceCollection().get(0).getDescription().get(0)
.getValue().toString().equalsIgnoreCase("description-example")); //$NON-NLS-1$
Assert.assertTrue(secu.getWebResourceCollection().get(0).getUrlPattern().get(0)
.getValue().toString().equalsIgnoreCase("url-pattern-example")); //$NON-NLS-1$
Assert.assertTrue(secu.getWebResourceCollection().get(0).getHttpMethod().get(0)
.toString().equalsIgnoreCase("http-method-example")); //$NON-NLS-1$
Assert.assertTrue(secu.getAuthConstraint().getDescription().get(0).getValue()
.toString().equalsIgnoreCase("description-example")); //$NON-NLS-1$
Assert.assertTrue(secu.getAuthConstraint().getRoleName().get(0).getValue().toString()
.equalsIgnoreCase("role-name-example")); //$NON-NLS-1$
Assert.assertTrue(secu.getUserDataConstraint().getDescription().get(0).getValue()
.toString().equalsIgnoreCase("description-example")); //$NON-NLS-1$
// <!-- TEST Modisco servlet -->
ServletType servlet = webApp.getServlet().get(0);
Assert.assertTrue(servlet.getDescription().get(0).getValue().toString()
.equalsIgnoreCase("description-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getDisplayName().get(0).getValue().toString()
.equalsIgnoreCase("display-name-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getServletName().getValue().toString()
.equalsIgnoreCase("servlet-name-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getServletClass().getValue().toString()
.equalsIgnoreCase("servlet-class-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getLoadOnStartup().toString().equalsIgnoreCase("10")); //$NON-NLS-1$
Assert.assertTrue(servlet.getIcon().get(0).getLargeIcon().getValue().toString()
.equalsIgnoreCase("large-icon-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getIcon().get(0).getSmallIcon().getValue().toString()
.equalsIgnoreCase("small-icon-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getSecurityRoleRef().get(0).getDescription().get(0)
.getValue().toString().equalsIgnoreCase("description-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getSecurityRoleRef().get(0).getRoleName().getValue()
.toString().equalsIgnoreCase("role-name-example")); //$NON-NLS-1$
Assert.assertTrue(servlet.getSecurityRoleRef().get(0).getRoleLink().getValue()
.toString().equalsIgnoreCase("role-link-example")); //$NON-NLS-1$
}
}
}