| package org.apache.maven.plugin.dependency; | |
| /* | |
| * 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. | |
| */ | |
| import java.io.File; | |
| import java.util.Set; | |
| import org.apache.maven.plugin.dependency.resolvers.ResolveDependenciesMojo; | |
| import org.apache.maven.plugin.dependency.utils.DependencyStatusSets; | |
| import org.apache.maven.plugin.dependency.utils.SilentLog; | |
| import org.apache.maven.project.MavenProject; | |
| public class TestResolveMojo | |
| extends AbstractDependencyMojoTestCase | |
| { | |
| protected void setUp() | |
| throws Exception | |
| { | |
| // required for mojo lookups to work | |
| super.setUp( "markers", false ); | |
| } | |
| /** | |
| * tests the proper discovery and configuration of the mojo | |
| * | |
| * @throws Exception | |
| */ | |
| public void testresolveTestEnvironment() | |
| throws Exception | |
| { | |
| File testPom = new File( getBasedir(), "target/test-classes/unit/resolve-test/plugin-config.xml" ); | |
| ResolveDependenciesMojo mojo = (ResolveDependenciesMojo) lookupMojo( "resolve", testPom ); | |
| assertNotNull( mojo ); | |
| assertNotNull( mojo.project ); | |
| MavenProject project = mojo.project; | |
| mojo.silent = true; | |
| Set artifacts = this.stubFactory.getScopedArtifacts(); | |
| Set directArtifacts = this.stubFactory.getReleaseAndSnapshotArtifacts(); | |
| artifacts.addAll( directArtifacts ); | |
| project.setArtifacts( artifacts ); | |
| project.setDependencyArtifacts( directArtifacts ); | |
| mojo.execute(); | |
| DependencyStatusSets results = mojo.getResults(); | |
| assertNotNull( results ); | |
| assertEquals( artifacts.size(), results.getResolvedDependencies().size() ); | |
| setVariableValueToObject( mojo, "excludeTransitive", Boolean.TRUE ); | |
| mojo.execute(); | |
| results = mojo.getResults(); | |
| assertNotNull( results ); | |
| assertEquals( directArtifacts.size(), results.getResolvedDependencies().size() ); | |
| } | |
| public void testSilent() | |
| throws Exception | |
| { | |
| File testPom = new File( getBasedir(), "target/test-classes/unit/resolve-test/plugin-config.xml" ); | |
| ResolveDependenciesMojo mojo = (ResolveDependenciesMojo) lookupMojo( "resolve", testPom ); | |
| mojo.silent = false; | |
| assertFalse( mojo.getLog() instanceof SilentLog ); | |
| } // TODO: Test skipping artifacts. | |
| } |