blob: 7181ab56c86c7baef985de1f3ab22426583a0411 [file] [log] [blame]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 groovy.grape
import groovy.transform.CompileDynamic
import groovy.transform.CompileStatic
import org.codehaus.groovy.control.CompilationFailedException
import org.junit.AfterClass
import org.junit.Before
import org.junit.BeforeClass
import org.junit.Test
import static groovy.test.GroovyAssert.assertScript
import static groovy.test.GroovyAssert.shouldFail
@CompileStatic
final class GrabResolverTest {
private static String originalGrapeRoot
@BeforeClass
static void setUpTestSuite() {
originalGrapeRoot = System.getProperty('grape.root')
}
@Before @CompileDynamic
void setUp() {
Grape.@instance = null // isolate each test
// create a new grape root directory so as to insure a clean slate for each test
def grapeRoot = new File(System.getProperty('java.io.tmpdir'), "GrabResolverTest${System.currentTimeMillis()}")
System.setProperty('grape.root', grapeRoot.path)
assert grapeRoot.mkdir()
grapeRoot.deleteOnExit()
Grape.instance.settings.getResolver('downloadGrapes').resolvers.removeAll {
it.name == 'jcenter' || it.name == 'localm2'
}
}
@AfterClass
static void tearDownTestSuite() {
if (originalGrapeRoot == null) {
System.clearProperty('grape.root')
} else {
System.setProperty('grape.root', originalGrapeRoot)
}
Grape.@instance = null // isolate these tests from other tests
}
@Test
void testResolverDefinitionIsRequired() {
shouldFail CompilationFailedException, '''
@Grab(group='org.restlet', module='org.restlet', version='1.1.6')
import org.restlet.Application
assert false : '"org.restlet:org.restlet:1.1.6" should not resolve without @GrabResolver'
'''
}
@Test
void testResolverDefinitionResolvesDependency() {
assertScript '''
@GrabResolver(name='restlet.org', root='http://maven.restlet.org')
@Grab(group='org.restlet', module='org.restlet', version='1.1.6')
import org.restlet.Application
assert Application.simpleName == 'Application'
'''
}
@Test
void testResolverDefinitionResolvesDependencyWithShorthand() {
assertScript '''
@GrabResolver('http://maven.restlet.org')
@Grab('org.restlet:org.restlet:1.1.6')
import org.restlet.Application
assert Application.simpleName == 'Application'
'''
}
}