示例#1
0
 private File downloadTimestampedVersion(Artifact artifact, String timestampedVersion)
     throws IOException {
   final ModuleRevisionId artifactModuleRevisionId = artifact.getModuleRevisionId();
   final ModuleRevisionId moduleRevisionId =
       ModuleRevisionId.newInstance(
           artifactModuleRevisionId.getOrganisation(),
           artifactModuleRevisionId.getName(),
           artifactModuleRevisionId.getRevision(),
           WrapUtil.toMap("timestamp", timestampedVersion));
   final Artifact artifactWithResolvedModuleRevisionId =
       DefaultArtifact.cloneWithAnotherMrid(artifact, moduleRevisionId);
   return download(artifactWithResolvedModuleRevisionId);
 }
示例#2
0
  private String findUniqueSnapshotVersion(ModuleRevisionId moduleRevisionId) {
    Artifact pomArtifact = DefaultArtifact.newPomArtifact(moduleRevisionId, new Date());
    String metadataLocation =
        toResourcePattern(getWholePattern()).toModuleVersionPath(pomArtifact)
            + "/maven-metadata.xml";
    MavenMetadata mavenMetadata = parseMavenMetadata(metadataLocation);

    if (mavenMetadata.timestamp != null) {
      // we have found a timestamp, so this is a snapshot unique version
      String rev = moduleRevisionId.getRevision();
      rev = rev.substring(0, rev.length() - "SNAPSHOT".length());
      rev = rev + mavenMetadata.timestamp + "-" + mavenMetadata.buildNumber;
      return rev;
    }
    return null;
  }
/** @author Hans Dockter */
public abstract class AbstractMavenResolverTest {
  public static final String TEST_NAME = "name";
  private static final Artifact TEST_IVY_ARTIFACT =
      DefaultArtifact.newIvyArtifact(ModuleRevisionId.newInstance("org", TEST_NAME, "1.0"), null);
  private static final File TEST_IVY_FILE = new File("somepom.xml");
  private static final File TEST_JAR_FILE = new File("somejar.jar");
  private static final Artifact TEST_ARTIFACT =
      new DefaultArtifact(
          ModuleRevisionId.newInstance("org", TEST_NAME, "1.0"), null, TEST_NAME, "jar", "jar");
  protected ArtifactPomContainer artifactPomContainerMock;
  protected PomFilterContainer pomFilterContainerMock;
  protected LoggingManagerInternal loggingManagerMock;

  protected JUnit4GroovyMockery context =
      new JUnit4GroovyMockery() {
        {
          setImposteriser(ClassImposteriser.INSTANCE);
        }
      };
  protected MavenPom pomMock;

  protected Settings mavenSettingsMock;

  protected abstract AbstractMavenResolver getMavenResolver();

  protected abstract InstallDeployTaskSupport getInstallDeployTask();

  protected abstract PomFilterContainer createPomFilterContainerMock();

  @Before
  public void setUp() {
    pomFilterContainerMock = createPomFilterContainerMock();
    artifactPomContainerMock = context.mock(ArtifactPomContainer.class);
    pomMock = context.mock(MavenPom.class);
    mavenSettingsMock = context.mock(Settings.class);
    loggingManagerMock = context.mock(LoggingManagerInternal.class);
  }

  @Test
  public void deployOrInstall() throws IOException, PlexusContainerException {
    getMavenResolver().mavenSettingsSupplier = context.mock(MavenSettingsSupplier.class);

    PublishArtifact classifierArtifact = artifact(new File("classifier.jar"));
    final DefaultMavenDeployment deployment1 =
        new DefaultMavenDeployment(
            artifact(new File("pom1.pom")),
            artifact(new File("artifact1.jar")),
            Collections.<PublishArtifact>emptySet());
    final DefaultMavenDeployment deployment2 =
        new DefaultMavenDeployment(
            artifact(new File("pom2.pom")),
            artifact(new File("artifact2.jar")),
            WrapUtil.toSet(classifierArtifact));
    final Set<DefaultMavenDeployment> testDefaultMavenDeployments =
        WrapUtil.toSet(deployment1, deployment2);
    final AttachedArtifact attachedArtifact = new AttachedArtifact();
    @SuppressWarnings("unchecked")
    final Action<MavenDeployment> action = context.mock(Action.class);

    context.checking(
        new Expectations() {
          {
            allowing((CustomInstallDeployTaskSupport) getInstallDeployTask())
                .clearAttachedArtifactsList();
            allowing((CustomInstallDeployTaskSupport) getInstallDeployTask()).getSettings();
            will(returnValue(mavenSettingsMock));
            allowing((CustomInstallDeployTaskSupport) getInstallDeployTask()).getProject();
            will(returnValue(AntUtil.createProject()));
            allowing((CustomInstallDeployTaskSupport) getInstallDeployTask()).createAttach();
            will(returnValue(attachedArtifact));
            one(artifactPomContainerMock).addArtifact(TEST_ARTIFACT, TEST_JAR_FILE);
            allowing(artifactPomContainerMock).createDeployableFilesInfos();
            will(returnValue(testDefaultMavenDeployments));
            one(action).execute(deployment1);
            one(action).execute(deployment2);
          }
        });

    getMavenResolver().beforeDeployment(action);
    getMavenResolver().publish(TEST_IVY_ARTIFACT, TEST_IVY_FILE, true);
    getMavenResolver().publish(TEST_ARTIFACT, TEST_JAR_FILE, true);
    checkTransaction(testDefaultMavenDeployments, attachedArtifact, classifierArtifact);
    assertSame(mavenSettingsMock, getMavenResolver().getSettings());
  }

  private PublishArtifact artifact(File file) {
    return new DefaultPublishArtifact("name", "ext", "type", null, null, file);
  }

  protected void checkTransaction(
      final Set<DefaultMavenDeployment> defaultMavenDeployments,
      final AttachedArtifact attachedArtifact,
      PublishArtifact classifierArtifact)
      throws IOException, PlexusContainerException {
    context.checking(
        new Expectations() {
          {
            one(getInstallDeployTask()).setProject(with(any(Project.class)));
            for (DefaultMavenDeployment defaultMavenDeployment : defaultMavenDeployments) {
              one(getInstallDeployTask())
                  .setFile(defaultMavenDeployment.getMainArtifact().getFile());
              one(getInstallDeployTask())
                  .addPom(
                      with(
                          pomMatcher(
                              defaultMavenDeployment.getPomArtifact().getFile(),
                              getInstallDeployTask().getProject())));
              one(loggingManagerMock).captureStandardOutput(LogLevel.INFO);
              will(returnValue(loggingManagerMock));
              one(loggingManagerMock).start();
              one(getInstallDeployTask()).execute();
              one(loggingManagerMock).stop();
              will(returnValue(loggingManagerMock));
            }
            one(getMavenResolver().mavenSettingsSupplier).supply(getInstallDeployTask());
            one(getMavenResolver().mavenSettingsSupplier).done();
          }
        });
    getMavenResolver().commitPublishTransaction();
    assertThat(attachedArtifact.getFile(), equalTo(classifierArtifact.getFile()));
    assertThat(attachedArtifact.getType(), equalTo(classifierArtifact.getType()));
    assertThat(attachedArtifact.getClassifier(), equalTo(classifierArtifact.getClassifier()));
  }

  private static Matcher<Pom> pomMatcher(
      final File expectedPomFile, final Project expectedAntProject) {
    return new BaseMatcher<Pom>() {
      public void describeTo(Description description) {
        description.appendText("matching pom");
      }

      public boolean matches(Object actual) {
        Pom actualPom = (Pom) actual;
        return actualPom.getFile().equals(expectedPomFile)
            && actualPom.getProject().equals(expectedAntProject);
      }
    };
  }

  @Test
  public void setFilter() {
    final PublishFilter publishFilterMock = context.mock(PublishFilter.class);
    context.checking(
        new Expectations() {
          {
            one(pomFilterContainerMock).setFilter(publishFilterMock);
          }
        });
    getMavenResolver().setFilter(publishFilterMock);
  }

  @Test
  public void getFilter() {
    final PublishFilter publishFilterMock = context.mock(PublishFilter.class);
    context.checking(
        new Expectations() {
          {
            allowing(pomFilterContainerMock).getFilter();
            will(returnValue(publishFilterMock));
          }
        });
    assertSame(publishFilterMock, getMavenResolver().getFilter());
  }

  @Test
  public void setPom() {
    context.checking(
        new Expectations() {
          {
            one(pomFilterContainerMock).setPom(pomMock);
          }
        });
    getMavenResolver().setPom(pomMock);
  }

  @Test
  public void getPom() {
    context.checking(
        new Expectations() {
          {
            allowing(pomFilterContainerMock).getPom();
            will(returnValue(pomMock));
          }
        });
    assertSame(pomMock, getMavenResolver().getPom());
  }

  @Test
  public void addFilter() {
    final String testName = "somename";
    final PublishFilter publishFilterMock = context.mock(PublishFilter.class);
    context.checking(
        new Expectations() {
          {
            one(pomFilterContainerMock).addFilter(testName, publishFilterMock);
          }
        });
    getMavenResolver().addFilter(testName, publishFilterMock);
  }

  @Test
  public void filter() {
    final String testName = "somename";
    final PublishFilter publishFilterMock = context.mock(PublishFilter.class);
    context.checking(
        new Expectations() {
          {
            one(pomFilterContainerMock).filter(testName);
            will(returnValue(publishFilterMock));
          }
        });
    assertSame(publishFilterMock, getMavenResolver().filter(testName));
  }

  @Test
  public void pom() {
    final String testName = "somename";
    context.checking(
        new Expectations() {
          {
            one(pomFilterContainerMock).pom(testName);
            will(returnValue(pomMock));
          }
        });
    assertSame(pomMock, getMavenResolver().pom(testName));
  }
}
示例#4
0
  public void testFile() throws Exception {
    Locale oldLocale = Locale.getDefault();

    try {
      // set the locale to UK as workaround for SUN bug 6240963
      Locale.setDefault(Locale.UK);

      // Create and configure resolver
      PackagerResolver resolver = new PackagerResolver();
      resolver.setSettings(settings);
      String repoRoot =
          new File("test/repositories/packager/repo").toURI().toURL().toExternalForm();
      resolver.addIvyPattern(repoRoot + "[organisation]/[module]/[revision]/ivy.xml");
      resolver.setPackagerPattern(repoRoot + "[organisation]/[module]/[revision]/packager.xml");
      resolver.setBuildRoot(builddir);
      resolver.setResourceCache(cachedir);
      resolver.setPreserveBuildDirectories(true);
      resolver.setVerbose(true);

      resolver.setProperty(
          "packager.website.url",
          new File("test/repositories/packager/website").toURI().toURL().toExternalForm());

      resolver.setName("packager");
      assertEquals("packager", resolver.getName());

      // Get module descriptor
      ModuleRevisionId mrid = ModuleRevisionId.newInstance("org", "mod", "1.0");
      ResolvedModuleRevision rmr =
          resolver.getDependency(new DefaultDependencyDescriptor(mrid, false), data);
      assertNotNull(rmr);

      assertEquals(mrid, rmr.getId());
      Date pubdate = new GregorianCalendar(2004, 10, 1, 11, 0, 0).getTime();
      assertEquals(pubdate, rmr.getPublicationDate());

      // Download artifact
      Artifact artifact = new DefaultArtifact(mrid, pubdate, "mod", "jar", "jar");
      DownloadReport report = resolver.download(new Artifact[] {artifact}, downloadOptions());
      assertNotNull(report);

      assertEquals(1, report.getArtifactsReports().length);

      ArtifactDownloadReport ar = report.getArtifactReport(artifact);
      System.out.println("downloaddetails: " + ar.getDownloadDetails());
      assertNotNull(ar);

      assertEquals(artifact, ar.getArtifact());
      assertEquals(DownloadStatus.SUCCESSFUL, ar.getDownloadStatus());

      // Verify resource cache now contains the distribution archive
      assertTrue(new File(cachedir, "mod-1.0.tar.gz").exists());

      // Download again, should use Ivy cache this time
      report = resolver.download(new Artifact[] {artifact}, downloadOptions());
      assertNotNull(report);

      assertEquals(1, report.getArtifactsReports().length);

      ar = report.getArtifactReport(artifact);
      assertNotNull(ar);

      assertEquals(artifact, ar.getArtifact());
      assertEquals(DownloadStatus.NO, ar.getDownloadStatus());

      // Now download the maven2 artifact
      artifact = DefaultArtifact.cloneWithAnotherName(artifact, "foobar-janfu");
      report = resolver.download(new Artifact[] {artifact}, downloadOptions());
      assertNotNull(report);

      assertEquals(1, report.getArtifactsReports().length);

      ar = report.getArtifactReport(artifact);
      assertNotNull(ar);

      assertEquals(artifact, ar.getArtifact());
      assertEquals(DownloadStatus.SUCCESSFUL, ar.getDownloadStatus());
    } finally {
      Locale.setDefault(oldLocale);
    }
  }