blob: 340f45ae678df9352f3d4f6dcc951f891193d88e [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.util.ArrayList;
import java.util.List;
import org.apache.maven.shared.verifier.Verifier;
import org.apache.maven.shared.verifier.util.ResourceExtractor;
import org.junit.jupiter.api.Test;
/**
* @author Benjamin Bentmann
*
*/
public class MavenIT0144LifecycleExecutionOrderTest extends AbstractMavenIntegrationTestCase {
public MavenIT0144LifecycleExecutionOrderTest() {
super(ALL_MAVEN_VERSIONS);
}
/**
* Test that the lifecycle phases execute in proper order.
*
* @throws Exception in case of failure
*/
@Test
public void testit0144() throws Exception {
File testDir = ResourceExtractor.simpleExtractResources(getClass(), "/it0144");
Verifier verifier = newVerifier(testDir.getAbsolutePath());
verifier.deleteDirectory("target");
verifier.setAutoclean(false);
verifier.addCliArguments("post-clean", "deploy", "site-deploy");
verifier.execute();
verifier.verifyErrorFreeLog();
List<String> expected = new ArrayList<>();
expected.add("pre-clean");
expected.add("clean");
expected.add("post-clean");
expected.add("validate");
expected.add("initialize");
expected.add("generate-sources");
expected.add("process-sources");
expected.add("generate-resources");
expected.add("process-resources");
expected.add("compile");
expected.add("process-classes");
expected.add("generate-test-sources");
expected.add("process-test-sources");
expected.add("generate-test-resources");
expected.add("process-test-resources");
expected.add("test-compile");
if (matchesVersionRange("(2.0.4,)")) {
// MNG-1508
expected.add("process-test-classes");
}
expected.add("test");
if (matchesVersionRange("(2.1.0-M1,)")) {
// MNG-2097
expected.add("prepare-package");
}
expected.add("package");
if (matchesVersionRange("(2.0.1,)")) {
expected.add("pre-integration-test");
}
expected.add("integration-test");
if (matchesVersionRange("(2.0.1,)")) {
expected.add("post-integration-test");
}
expected.add("verify");
expected.add("install");
expected.add("deploy");
expected.add("pre-site");
expected.add("site");
expected.add("post-site");
expected.add("site-deploy");
List<String> phases = verifier.loadLines("target/phases.log", "UTF-8");
assertEquals(expected, phases);
}
}