org.gradle.plugins.ear.EarTest.groovy Maven / Gradle / Ivy
/*
* Copyright 2011 the original author or authors.
*
* 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.gradle.plugins.ear
import org.gradle.api.Action
import org.gradle.api.tasks.bundling.AbstractArchiveTask
import org.gradle.api.tasks.bundling.AbstractArchiveTaskTest
import org.gradle.plugins.ear.descriptor.EarSecurityRole
import org.gradle.plugins.ear.descriptor.internal.DefaultDeploymentDescriptor
import org.junit.Before
import org.junit.Test
import static org.junit.Assert.assertEquals
class EarTest extends AbstractArchiveTaskTest {
Ear ear
@Before
public void setUp() {
ear = createTask(Ear)
configure(ear)
}
AbstractArchiveTask getArchiveTask() {
ear
}
@Test
public void testEar() {
assertEquals(Ear.EAR_EXTENSION, ear.extension)
}
@Test
public void testDeploymentDescriptor() {
ear.deploymentDescriptor = new DefaultDeploymentDescriptor(null,instantiator)
checkDeploymentDescriptor()
}
@Test
public void testDeploymentDescriptorWithNullManifest() {
ear.deploymentDescriptor = null
checkDeploymentDescriptor()
}
public void checkDeploymentDescriptor() {
ear.deploymentDescriptor {
fileName = "myApp.xml"
version = "5"
applicationName = "myapp"
initializeInOrder = true
displayName = "My App"
description = "My Application"
libraryDirectory = "APP-INF/lib"
module("my.jar", "java")
webModule("my.war", "/")
securityRole "admin"
securityRole({ role->
role.roleName="superadmin"
role.description="Super Admin Role"
} as Action)
withXml { provider ->
//just adds an action
}
}
def d = ear.deploymentDescriptor
assertEquals("myApp.xml", d.fileName)
assertEquals("5", d.version)
assertEquals("myapp", d.applicationName)
assertEquals(true, d.initializeInOrder)
assertEquals("My App", d.displayName)
assertEquals("My Application", d.description)
assertEquals("APP-INF/lib", d.libraryDirectory)
assertEquals(2, d.modules.size())
assertEquals("my.jar", (d.modules as List)[0].path)
assertEquals("my.war", (d.modules as List)[1].path)
assertEquals("/", (d.modules as List)[1].contextRoot)
assertEquals("java", d.moduleTypeMappings["my.jar"])
assertEquals("web", d.moduleTypeMappings["my.war"])
assertEquals(2, d.securityRoles.size())
assertEquals("admin", (d.securityRoles as List)[0].roleName)
assertEquals("superadmin", (d.securityRoles as List)[1].roleName)
assertEquals("Super Admin Role", (d.securityRoles as List)[1].description)
assertEquals(1, d.transformer.actions.size())
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy