org.gradle.plugins.ide.eclipse.EclipseWtpJavaEarSingleProjectIntegrationTest.groovy Maven / Gradle / Ivy
/*
* Copyright 2014 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.ide.eclipse
class EclipseWtpJavaEarSingleProjectIntegrationTest extends AbstractEclipseIntegrationSpec {
def "generates configuration files for an ear project"() {
file('src/main/java').mkdirs()
settingsFile << "rootProject.name = 'ear'"
buildFile << """
apply plugin: 'eclipse-wtp'
apply plugin: 'ear'
apply plugin: 'java'
repositories {
jcenter()
}
dependencies {
compile 'com.google.guava:guava:18.0'
testCompile "junit:junit:4.12"
}
"""
when:
run "eclipse"
then:
// This test covers actual behaviour, not necessarily desired behaviour
// Builders and natures
def project = project
project.assertHasNatures("org.eclipse.wst.common.project.facet.core.nature",
"org.eclipse.wst.common.modulecore.ModuleCoreNature",
"org.eclipse.jem.workbench.JavaEMFNature",
"org.eclipse.jdt.core.javanature")
project.assertHasBuilders("org.eclipse.wst.common.project.facet.core.builder",
"org.eclipse.wst.validation.validationbuilder")
// Classpath
def classpath = classpath
classpath.assertHasLibs('guava-18.0.jar', 'junit-4.12.jar', 'hamcrest-core-1.3.jar')
classpath.lib('guava-18.0.jar').assertHasNoDeploymentAttributes() // Probably not right
classpath.lib('junit-4.12.jar').assertHasNoDeploymentAttributes()
classpath.lib('hamcrest-core-1.3.jar').assertHasNoDeploymentAttributes()
// Facets
def facets = wtpFacets
facets.assertHasFixedFacets("jst.ear")
facets.assertHasInstalledFacets("jst.ear") // Probably not right
facets.assertFacetVersion("jst.ear", "5.0")
// Deployment
def component = wtpComponent
component.deployName == 'ear'
component.resources.size() == 1
component.sourceDirectory('src/main/java').assertDeployedAt('/') // Probably not right
component.modules.size() == 0 // Probably not right
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy