/** * Copyright (C) 2011, 2012 camunda services GmbH * * Licensed under the Apache License, Version 2.0 (the "License"); * you may not use this file except in compliance with the License. * You may obtain a copy of the License at * * http://www.apache.org/licenses/LICENSE-2.0 * * Unless required by applicable law or agreed to in writing, software * distributed under the License is distributed on an "AS IS" BASIS, * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. */ package org.camunda.bpm.integrationtest.deployment.war; import java.io.IOException; import org.camunda.bpm.engine.ProcessEngine; import org.camunda.bpm.engine.cdi.impl.util.ProgrammaticBeanLookup; import org.camunda.bpm.integrationtest.util.AbstractFoxPlatformIntegrationTest; import org.camunda.bpm.integrationtest.util.DeploymentHelper; import org.camunda.bpm.integrationtest.util.TestContainer; import org.camunda.bpm.integrationtest.util.TestHelper; import org.jboss.arquillian.container.test.api.Deployment; import org.jboss.arquillian.junit.Arquillian; import org.jboss.shrinkwrap.api.ShrinkWrap; import org.jboss.shrinkwrap.api.asset.EmptyAsset; import org.jboss.shrinkwrap.api.spec.WebArchive; import org.junit.Assert; import org.junit.Test; import org.junit.runner.RunWith; /** * Assert that we can deploy a WAR which bundles * the client but does not include a processes.xml * */ @RunWith(Arquillian.class) public class TestWarDeploymentWithEmptyProcessesXml extends AbstractFoxPlatformIntegrationTest { @Deployment public static WebArchive processArchive() { WebArchive deployment = ShrinkWrap.create(WebArchive.class, "test.war") .addAsWebInfResource(EmptyAsset.INSTANCE, "beans.xml") .addAsResource(EmptyAsset.INSTANCE, "META-INF/processes.xml") .addAsResource("org/camunda/bpm/integrationtest/invoice.bpmn20.xml") .addAsResource("org/camunda/bpm/integrationtest/invoice.jpg") .addAsResource("org/camunda/bpm/integrationtest/testDeployProcessArchive.bpmn20.xml") .addAsResource("org/camunda/bpm/integrationtest/testDeployProcessArchive.png") .addAsLibraries(DeploymentHelper.getEngineCdi()) .addClass(AbstractFoxPlatformIntegrationTest.class) .addClass(TestHelper.class); TestContainer.addContainerSpecificResources(deployment); System.out.println(deployment.toString(true)); return deployment; } @Test public void testDeployProcessArchive() { Assert.assertNotNull(ProgrammaticBeanLookup.lookup(ProcessEngine.class)); } @Test public void testInvoiceProcess() throws IOException { String expectedDiagramResource = "/org/camunda/bpm/integrationtest/invoice.jpg"; String processDefinitionKey = "invoice"; TestHelper.assertDiagramIsDeployed(true, getClass(), expectedDiagramResource, processDefinitionKey); } }