/* * Copyright 2008 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. */ import org.springframework.core.io.FileSystemResource import grails.util.GrailsNameUtils /** * Gant script for creating Grails artifacts of all sorts. * * @author Peter Ledbrook */ createArtifact = { Map args = [:] -> def suffix = args["suffix"] def type = args["type"] def artifactPath = args["path"] ant.mkdir(dir: "${basedir}/${artifactPath}") // Extract the package name if one is given. def name = args["name"] def pkg = null def pos = name.lastIndexOf('.') if (pos != -1) { pkg = name[0.. def superClass = args["superClass"] ?: "GrailsUnitTestCase" createArtifact(name: args["name"], suffix: "${args['suffix']}Tests", type: "Tests", path: "test/integration", superClass: superClass) } createUnitTest = { Map args = [:] -> def superClass = args["superClass"] ?: "GrailsUnitTestCase" createArtifact(name: args["name"], suffix: "${args['suffix']}Tests", type: "Tests", path: "test/unit", superClass: superClass) } promptForName = { Map args = [:] -> if (!argsMap["params"]) { ant.input(addProperty: "artifact.name", message: "${args["type"]} name not specified. Please enter:") argsMap["params"] << ant.antProject.properties."artifact.name" } }