blob: afa112d0845481e56093f73241267e710781c490 [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.lifecycle.mapping;
import java.util.Arrays;
import java.util.List;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertNotNull;
import static org.junit.jupiter.api.Assertions.assertNull;
/**
*/
class LifecyclePhaseTest {
@Test
void testToString() {
LifecyclePhase phase = new LifecyclePhase();
assertEquals("", phase.toString());
LifecycleMojo mojo1 = new LifecycleMojo();
mojo1.setGoal("jar:jar");
phase.setMojos(Arrays.asList(mojo1));
assertEquals("jar:jar", phase.toString());
LifecycleMojo mojo2 = new LifecycleMojo();
mojo2.setGoal("war:war");
phase.setMojos(Arrays.asList(mojo1, mojo2));
assertEquals("jar:jar,war:war", phase.toString());
}
@Test
void testSet() {
LifecyclePhase phase = new LifecyclePhase();
assertNull(phase.getMojos());
phase.set("");
assertNotNull(phase.getMojos());
assertEquals(0, phase.getMojos().size());
phase.set("jar:jar, war:war");
List<LifecycleMojo> mojos = phase.getMojos();
assertNotNull(mojos);
assertEquals(2, mojos.size());
LifecycleMojo mojo1 = mojos.get(0);
assertNotNull(mojo1);
assertEquals("jar:jar", mojo1.getGoal());
LifecycleMojo mojo2 = mojos.get(1);
assertNotNull(mojo2);
assertEquals("war:war", mojo2.getGoal());
}
}