blob: 7af19e1c50796b7b0d2fa699b996336689d2a10d [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 org.apache.maven.it;
import java.io.File;
import java.io.IOException;
import org.apache.maven.shared.verifier.VerificationException;
import org.apache.maven.shared.verifier.Verifier;
import org.apache.maven.shared.verifier.util.ResourceExtractor;
import org.junit.jupiter.api.Test;
/**
* This is a test set for <a href="https://issues.apache.org/jira/browse/MNG-4270">MNG-4270</a>.
*
* @author John Casey
*
*/
public class MavenITmng4270ArtifactHandlersFromPluginDepsTest extends AbstractMavenIntegrationTestCase {
private static final String GID = "org.apache.maven.its.mng4270";
private static final String AID = "mng-4270";
private static final String VERSION = "1";
private static final String TYPE = "jar";
private static final String BAD_TYPE = "coreit";
public MavenITmng4270ArtifactHandlersFromPluginDepsTest() {
super("(2.2.0,)");
}
@Test
public void testProjectPackagingUsage() throws IOException, VerificationException {
File testDir = ResourceExtractor.simpleExtractResources(getClass(), "/" + AID);
Verifier verifier = newVerifier(testDir.getAbsolutePath(), "remote");
verifier.deleteArtifacts(GID);
verifier.addCliArgument("install");
verifier.execute();
verifier.verifyErrorFreeLog();
// Now, if everything worked, we have .pom and a .jar in the local repo.
// IF IT DIDN'T, we have a .pom and a .coreit in the local repo...
String path = verifier.getArtifactPath(GID, AID, VERSION, TYPE);
assertTrue(path + " should have been installed.", new File(path).exists());
path = verifier.getArtifactPath(GID, AID, VERSION, "pom");
assertTrue(path + " should have been installed.", new File(path).exists());
path = verifier.getArtifactPath(GID, AID, VERSION, BAD_TYPE);
assertFalse(path + " should NOT have been installed.", new File(path).exists());
}
}