View Javadoc
1   /*
2    * Licensed to the Apache Software Foundation (ASF) under one
3    * or more contributor license agreements.  See the NOTICE file
4    * distributed with this work for additional information
5    * regarding copyright ownership.  The ASF licenses this file
6    * to you under the Apache License, Version 2.0 (the
7    * "License"); you may not use this file except in compliance
8    * with the License.  You may obtain a copy of the License at
9    *
10   *   http://www.apache.org/licenses/LICENSE-2.0
11   *
12   * Unless required by applicable law or agreed to in writing,
13   * software distributed under the License is distributed on an
14   * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
15   * KIND, either express or implied.  See the License for the
16   * specific language governing permissions and limitations
17   * under the License.
18   */
19  package org.apache.maven.plugins.dependency.resolvers;
20  
21  import java.io.File;
22  import java.util.Set;
23  
24  import org.apache.maven.artifact.Artifact;
25  import org.apache.maven.plugin.testing.SilentLog;
26  import org.apache.maven.plugins.dependency.AbstractDependencyMojoTestCase;
27  import org.apache.maven.plugins.dependency.utils.DependencyStatusSets;
28  import org.apache.maven.project.MavenProject;
29  
30  public class TestResolveMojo extends AbstractDependencyMojoTestCase {
31  
32      protected void setUp() throws Exception {
33          // required for mojo lookups to work
34          super.setUp("markers", false);
35      }
36  
37      /**
38       * tests the proper discovery and configuration of the mojo
39       *
40       * @throws Exception in case of errors.
41       */
42      public void testresolveTestEnvironment() throws Exception {
43          File testPom = new File(getBasedir(), "target/test-classes/unit/resolve-test/plugin-config.xml");
44          ResolveDependenciesMojo mojo = (ResolveDependenciesMojo) lookupMojo("resolve", testPom);
45  
46          assertNotNull(mojo);
47          assertNotNull(mojo.getProject());
48          MavenProject project = mojo.getProject();
49  
50          mojo.setSilent(true);
51          Set<Artifact> artifacts = this.stubFactory.getScopedArtifacts();
52          Set<Artifact> directArtifacts = this.stubFactory.getReleaseAndSnapshotArtifacts();
53          artifacts.addAll(directArtifacts);
54  
55          project.setArtifacts(artifacts);
56          project.setDependencyArtifacts(directArtifacts);
57  
58          mojo.execute();
59          DependencyStatusSets results = mojo.getResults();
60          assertNotNull(results);
61          assertEquals(artifacts.size(), results.getResolvedDependencies().size());
62  
63          setVariableValueToObject(mojo, "excludeTransitive", Boolean.TRUE);
64  
65          mojo.execute();
66          results = mojo.getResults();
67          assertNotNull(results);
68          assertEquals(directArtifacts.size(), results.getResolvedDependencies().size());
69      }
70  
71      public void testSilent() throws Exception {
72          File testPom = new File(getBasedir(), "target/test-classes/unit/resolve-test/plugin-config.xml");
73          ResolveDependenciesMojo mojo = (ResolveDependenciesMojo) lookupMojo("resolve", testPom);
74          mojo.setSilent(false);
75  
76          assertFalse(mojo.getLog() instanceof SilentLog);
77      } // TODO: Test skipping artifacts.
78  }