/maven-compat/src/test/java/org/apache/maven/repository/legacy/resolver/conflict/NewestConflictResolverTest.java

https://github.com/apache/maven · Java · 109 lines · 42 code · 13 blank · 54 comment · 0 complexity · b5acffdf97f2fa56c004abe506527dfc MD5 · raw file

  1. package org.apache.maven.repository.legacy.resolver.conflict;
  2. /*
  3. * Licensed to the Apache Software Foundation (ASF) under one
  4. * or more contributor license agreements. See the NOTICE file
  5. * distributed with this work for additional information
  6. * regarding copyright ownership. The ASF licenses this file
  7. * to you under the Apache License, Version 2.0 (the
  8. * "License"); you may not use this file except in compliance
  9. * with the License. You may obtain a copy of the License at
  10. *
  11. * http://www.apache.org/licenses/LICENSE-2.0
  12. *
  13. * Unless required by applicable law or agreed to in writing,
  14. * software distributed under the License is distributed on an
  15. * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
  16. * KIND, either express or implied. See the License for the
  17. * specific language governing permissions and limitations
  18. * under the License.
  19. */
  20. import org.apache.maven.artifact.resolver.ResolutionNode;
  21. import org.junit.jupiter.api.Test;
  22. /**
  23. * Tests <code>NewestConflictResolver</code>.
  24. *
  25. * @author <a href="mailto:markhobson@gmail.com">Mark Hobson</a>
  26. * @see NewestConflictResolver
  27. */
  28. public class NewestConflictResolverTest
  29. extends AbstractConflictResolverTest
  30. {
  31. // constructors -----------------------------------------------------------
  32. public NewestConflictResolverTest()
  33. throws Exception
  34. {
  35. super("newest");
  36. }
  37. // tests ------------------------------------------------------------------
  38. /**
  39. * Tests that <code>a:2.0</code> wins in the scenario:
  40. * <pre>
  41. * a:1.0
  42. * b:1.0 -&gt; a:2.0
  43. * </pre>
  44. */
  45. @Test
  46. public void testDepth()
  47. {
  48. ResolutionNode a1n = createResolutionNode( a1 );
  49. ResolutionNode b1n = createResolutionNode( b1 );
  50. ResolutionNode a2n = createResolutionNode( a2, b1n );
  51. assertResolveConflict( a2n, a1n, a2n );
  52. }
  53. /**
  54. * Tests that <code>a:2.0</code> wins in the scenario:
  55. * <pre>
  56. * b:1.0 -&gt; a:2.0
  57. * a:1.0
  58. * </pre>
  59. */
  60. @Test
  61. public void testDepthReversed()
  62. {
  63. ResolutionNode b1n = createResolutionNode( b1 );
  64. ResolutionNode a2n = createResolutionNode( a2, b1n );
  65. ResolutionNode a1n = createResolutionNode( a1 );
  66. assertResolveConflict( a2n, a2n, a1n );
  67. }
  68. /**
  69. * Tests that <code>a:2.0</code> wins in the scenario:
  70. * <pre>
  71. * a:1.0
  72. * a:2.0
  73. * </pre>
  74. */
  75. @Test
  76. public void testEqual()
  77. {
  78. ResolutionNode a1n = createResolutionNode( a1 );
  79. ResolutionNode a2n = createResolutionNode( a2 );
  80. assertResolveConflict( a2n, a1n, a2n );
  81. }
  82. /**
  83. * Tests that <code>a:2.0</code> wins in the scenario:
  84. * <pre>
  85. * a:2.0
  86. * a:1.0
  87. * </pre>
  88. */
  89. @Test
  90. public void testEqualReversed()
  91. {
  92. ResolutionNode a2n = createResolutionNode( a2 );
  93. ResolutionNode a1n = createResolutionNode( a1 );
  94. assertResolveConflict( a2n, a2n, a1n );
  95. }
  96. }