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.artifact.resolver;
20  
21  import java.util.Arrays;
22  import java.util.List;
23  
24  import org.junit.jupiter.api.Test;
25  
26  import static org.junit.jupiter.api.Assertions.assertEquals;
27  
28  /**
29   * Test the artifact resolution exception message
30   *
31   */
32  class ArtifactResolutionExceptionTest {
33      private static final String LS = System.lineSeparator();
34  
35      @Test
36      void testMissingArtifactMessageFormat() {
37          String message = "Missing artifact";
38          String indentation = "  ";
39          String groupId = "aGroupId";
40          String artifactId = "anArtifactId";
41          String version = "aVersion";
42          String type = "jar";
43          String classifier = "aClassifier";
44          String downloadUrl = "http://somewhere.com/download";
45          List<String> path = Arrays.asList("dependency1", "dependency2");
46          String expected = "Missing artifact" + LS + LS + "  Try downloading the file manually from: " + LS
47                  + "      http://somewhere.com/download" + LS + LS + "  Then, install it using the command: " + LS
48                  + "      mvn install:install-file -DgroupId=aGroupId -DartifactId=anArtifactId -Dversion=aVersion "
49                  + "-Dclassifier=aClassifier -Dpackaging=jar -Dfile=/path/to/file" + LS + LS
50                  + "  Alternatively, if you host your own repository you can deploy the file there: " + LS
51                  + "      mvn deploy:deploy-file -DgroupId=aGroupId -DartifactId=anArtifactId"
52                  + " -Dversion=aVersion -Dclassifier=aClassifier -Dpackaging=jar -Dfile=/path/to/file"
53                  + " -Durl=[url] -DrepositoryId=[id]" + LS + LS + "  Path to dependency: " + LS + "  \t1) dependency1"
54                  + LS + "  \t2) dependency2" + LS + LS;
55          String actual = AbstractArtifactResolutionException.constructMissingArtifactMessage(
56                  message, indentation, groupId, artifactId, version, type, classifier, downloadUrl, path);
57          assertEquals(expected, actual);
58      }
59  }