blob: e7b6b6ee733068283240cc2c8261b423c605c32d [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 collection of test cases for <a href="https://issues.apache.org/jira/browse/MNG-6511">MNG-6511</a>,
* selecting and deselecting optional projects.
*
* @author Maarten Mulders
* @author Martin Kanters
*/
public class MavenITmng6511OptionalProjectSelectionTest extends AbstractMavenIntegrationTestCase {
private static final String RESOURCE_PATH = "/mng-6511-optional-project-selection";
private final File testDir;
public MavenITmng6511OptionalProjectSelectionTest() throws IOException {
super("[4.0.0-alpha-1,)");
testDir = ResourceExtractor.simpleExtractResources(getClass(), RESOURCE_PATH);
}
@Test
public void testSelectExistingOptionalProfile() throws VerificationException {
Verifier cleaner = newVerifier(testDir.getAbsolutePath());
cleaner.addCliArgument("clean");
cleaner.execute();
Verifier verifier = newVerifier(testDir.getAbsolutePath());
verifier.setLogFileName("log-select-existing.txt");
verifier.addCliArgument("-pl");
verifier.addCliArgument("?existing-module");
verifier.addCliArgument("validate");
verifier.execute();
verifier.verifyErrorFreeLog();
verifier.verifyFilePresent("existing-module/target/touch.txt"); // existing-module should have been built.
}
@Test
public void testSelectExistingOptionalProfileByArtifactId() throws VerificationException {
Verifier cleaner = newVerifier(testDir.getAbsolutePath());
cleaner.addCliArgument("clean");
cleaner.execute();
Verifier verifier = newVerifier(testDir.getAbsolutePath());
verifier.setLogFileName("log-select-existing-artifact-id.txt");
verifier.addCliArgument("-pl");
verifier.addCliArgument("?:existing-module");
verifier.addCliArgument("validate");
verifier.execute();
verifier.verifyErrorFreeLog();
verifier.verifyFilePresent("existing-module/target/touch.txt"); // existing-module should have been built.
}
@Test
public void testSelectNonExistingOptionalProfile() throws VerificationException {
Verifier cleaner = newVerifier(testDir.getAbsolutePath());
cleaner.addCliArgument("clean");
cleaner.execute();
Verifier verifier = newVerifier(testDir.getAbsolutePath());
verifier.setLogFileName("log-select-non-existing.txt");
verifier.addCliArgument("-pl");
verifier.addCliArgument("?non-existing-module");
verifier.addCliArgument("validate");
verifier.execute();
verifier.verifyErrorFreeLog();
verifier.verifyFilePresent("existing-module/target/touch.txt"); // existing-module should have been built.
}
@Test
public void testDeselectExistingOptionalProfile() throws VerificationException {
Verifier cleaner = newVerifier(testDir.getAbsolutePath());
cleaner.addCliArgument("clean");
cleaner.execute();
Verifier verifier = newVerifier(testDir.getAbsolutePath());
verifier.setLogFileName("log-deselect-existing.txt");
verifier.addCliArgument("-pl");
verifier.addCliArgument("!?existing-module");
verifier.addCliArgument("validate");
verifier.execute();
verifier.verifyErrorFreeLog();
verifier.verifyFileNotPresent(
"existing-module/target/touch.txt"); // existing-module should not have been built.
}
@Test
public void testDeselectNonExistingOptionalProfile() throws VerificationException {
Verifier cleaner = newVerifier(testDir.getAbsolutePath());
cleaner.addCliArgument("clean");
cleaner.execute();
Verifier verifier = newVerifier(testDir.getAbsolutePath());
verifier.setLogFileName("log-deselect-non-existing.txt");
verifier.addCliArgument("-pl");
verifier.addCliArgument("!?non-existing-module");
verifier.addCliArgument("validate");
verifier.execute();
verifier.verifyErrorFreeLog();
verifier.verifyFilePresent("existing-module/target/touch.txt"); // existing-module should have been built.
}
}