Skip to content

Commit

Permalink
SHRINKRES-213 Add support for ResolvedArtifact.as(URL.class)
Browse files Browse the repository at this point in the history
  • Loading branch information
aslakknutsen committed Nov 4, 2014
1 parent 3ab4fd0 commit d8afdd8
Show file tree
Hide file tree
Showing 3 changed files with 130 additions and 0 deletions.
@@ -1,4 +1,5 @@
org.jboss.shrinkwrap.resolver.spi.format.FileFormatProcessor
org.jboss.shrinkwrap.resolver.spi.format.URLFormatProcessor
org.jboss.shrinkwrap.resolver.spi.format.InputStreamFormatProcessor
org.jboss.shrinkwrap.resolver.impl.maven.format.MavenResolvedArtifactProcessor
org.jboss.shrinkwrap.resolver.impl.maven.format.MavenCoordinateProcessor
@@ -0,0 +1,53 @@
package org.jboss.shrinkwrap.resolver.impl.maven.integration;

import static org.hamcrest.CoreMatchers.hasItem;

import java.io.File;
import java.net.URL;
import java.util.List;

import org.jboss.shrinkwrap.resolver.api.maven.Maven;
import org.jboss.shrinkwrap.resolver.impl.maven.bootstrap.MavenSettingsBuilder;
import org.junit.AfterClass;
import org.junit.Assert;
import org.junit.BeforeClass;
import org.junit.Test;

/**
* Tests as(URL) and asSingle(ResolvedArtifactInfo) methods.
*
* @author <a href="mailto:aslak@redhat.com">Aslak Knutsen</a>
*/
public class AsURLTestCase {

@BeforeClass
public static void setRemoteRepository() {
System.setProperty(MavenSettingsBuilder.ALT_USER_SETTINGS_XML_LOCATION, "target/settings/profiles/settings.xml");
System.setProperty(MavenSettingsBuilder.ALT_LOCAL_REPOSITORY_LOCATION, "target/the-other-repository");
}

@AfterClass
public static void clearRemoteRepository() {
System.clearProperty(MavenSettingsBuilder.ALT_USER_SETTINGS_XML_LOCATION);
System.clearProperty(MavenSettingsBuilder.ALT_LOCAL_REPOSITORY_LOCATION);
}

/**
* Tests MavenCoordinate resolution
*/
@Test
public void asURLs() throws Exception {
// given
final String artifactCanonicalFormA = "org.jboss.shrinkwrap.test:test-parent:pom:1.0.0";

// when
final List<URL> coordinates = Maven.resolver().resolve(artifactCanonicalFormA)
.withTransitivity().asList(URL.class);

URL target = new File(
System.getProperty(MavenSettingsBuilder.ALT_LOCAL_REPOSITORY_LOCATION),
"org/jboss/shrinkwrap/test/test-deps-i/1.0.0/test-deps-i-1.0.0.jar").toURI().toURL();

Assert.assertThat(coordinates, hasItem(target));
}
}
@@ -0,0 +1,76 @@
/*
* JBoss, Home of Professional Open Source
* Copyright 2012, Red Hat Middleware LLC, and individual contributors
* by the @authors tag. See the copyright.txt in the distribution for a
* full listing of individual contributors.
*
* 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.jboss.shrinkwrap.resolver.spi.format;

import java.io.File;
import java.net.MalformedURLException;
import java.net.URL;

import org.jboss.shrinkwrap.resolver.api.ResolvedArtifact;

/**
* {@link FormatProcessor} implementation to return an {@link URL} from the provided {@link ResolvedArtifact} argument.
*
* Implementation note: This format processor does not use type parameters to be able to process any type inherited from
* {@link ResolvedAritifact}.
*
* @author <a href="mailto:alr@jboss.org">Andrew Lee Rubinger</a>
* @author <a href="mailto:kpiwko@redhat.com">Karel Piwko</a>
* @author <a href="mailto:aslak@redhat.com">Aslak Knutsen</a>
*
*/
@SuppressWarnings("rawtypes")
public enum URLFormatProcessor implements FormatProcessor {
INSTANCE;

@Override
public URL process(ResolvedArtifact artifact, Class returnType) throws IllegalArgumentException {
if (returnType.getClass() == null || URL.class.equals(returnType.getClass())) {
throw new IllegalArgumentException("URL processor must be called to return URL, not "
+ (returnType == null ? "null" : returnType.getClass()));
}
if (artifact == null) {
throw new IllegalArgumentException("Resolution artifact must be specified");
}
File file = artifact.asFile();
if (file == null) {
throw new IllegalArgumentException("Artifact was not resolved");
}

if (!file.exists()) {
throw new IllegalArgumentException("input file does not exist: " + file.getAbsolutePath());
}
if (file.isDirectory()) {
throw new IllegalArgumentException("input file is a directory: " + file.getAbsolutePath());
}
try {
return file.toURI().toURL();
} catch(MalformedURLException e) { // Should not happen
throw new IllegalArgumentException(e);
}
}

@Override
public boolean handles(Class resolvedTypeClass) {
return ResolvedArtifact.class.isAssignableFrom(resolvedTypeClass);
}

@Override
public boolean returns(Class returnTypeClass) {
return URL.class.equals(returnTypeClass);
}
}

0 comments on commit d8afdd8

Please sign in to comment.