Package org.sonatype.nexus.testsuite.artifact.nexus1646

Source Code of org.sonatype.nexus.testsuite.artifact.nexus1646.Nexus1646DeployArtifactsIT

/*
* Sonatype Nexus (TM) Open Source Version
* Copyright (c) 2007-2014 Sonatype, Inc.
* All rights reserved. Includes the third-party code listed at http://links.sonatype.com/products/nexus/oss/attributions.
*
* This program and the accompanying materials are made available under the terms of the Eclipse Public License Version 1.0,
* which accompanies this distribution and is available at http://www.eclipse.org/legal/epl-v10.html.
*
* Sonatype Nexus (TM) Professional Version is available from Sonatype, Inc. "Sonatype" and "Sonatype Nexus" are trademarks
* of Sonatype, Inc. Apache Maven is a trademark of the Apache Software Foundation. M2eclipse is a trademark of the
* Eclipse Foundation. All other trademarks are the property of their respective owners.
*/
package org.sonatype.nexus.testsuite.artifact.nexus1646;

import java.io.File;
import java.io.FileInputStream;

import org.sonatype.nexus.integrationtests.AbstractNexusIntegrationTest;
import org.sonatype.nexus.proxy.maven.metadata.operations.MetadataBuilder;
import org.sonatype.nexus.test.utils.GavUtil;

import com.thoughtworks.xstream.XStream;
import org.apache.maven.artifact.repository.metadata.Metadata;
import org.apache.maven.index.artifact.Gav;
import org.junit.Assert;
import org.junit.Test;
import org.restlet.data.Status;
import org.slf4j.Logger;
import org.slf4j.LoggerFactory;

public class Nexus1646DeployArtifactsIT
    extends AbstractNexusIntegrationTest
{
  protected static Logger logger = LoggerFactory.getLogger(Nexus1646DeployArtifactsIT.class);

  @Test
  public void deployPlainArtifact()
      throws Exception
  {
    Gav gav = GavUtil.newGav("nexus1646", "artifact", "1.33.44");
    File artifact = getTestFile("artifact.jar");

    int code = getDeployUtils().deployUsingGavWithRest(REPO_TEST_HARNESS_RELEASE_REPO, gav, artifact);
    Assert.assertTrue("Unable to deploy artifact " + code, Status.isSuccess(code));

    File metadataFile =
        new File(nexusWorkDir, "storage/nexus-test-harness-release-repo/nexus1646/artifact/maven-metadata.xml");
    Assert.assertTrue("Metadata file not found " + metadataFile.getAbsolutePath(), metadataFile.isFile());

    try (FileInputStream input = new FileInputStream(metadataFile)) {
      Metadata md = MetadataBuilder.read(input);

      Assert.assertEquals(md.getVersioning().getLatest(), gav.getVersion());
      Assert.assertEquals(md.getVersioning().getRelease(), gav.getVersion());
      Assert.assertEquals(1, md.getVersioning().getVersions().size());
      Assert.assertEquals(md.getVersioning().getVersions().get(0), gav.getVersion());
    }
  }

  @Test
  public void deploySnapshotToRelease()
      throws Exception
  {
    Gav gav = GavUtil.newGav("nexus1646", "artifact", "1.1.1-SNAPSHOT");

    File artifact = getTestFile("artifact.jar");
    int code = getDeployUtils().deployUsingGavWithRest(REPO_TEST_HARNESS_RELEASE_REPO, gav, artifact);

    Assert.assertEquals("Unable to deploy artifact " + code, code, 400);
  }

  @Test
  public void deployPlainSnapshotArtifact()
      throws Exception
  {
    Gav gav = GavUtil.newGav("nexus1646", "artifact", "1.1.1-SNAPSHOT");

    File artifact = getTestFile("artifact.jar");
    int code = getDeployUtils().deployUsingGavWithRest(REPO_TEST_HARNESS_SNAPSHOT_REPO, gav, artifact);

    Assert.assertEquals("Unable to deploy artifact " + code, code, 400);
  }

  @Test
  public void deployPluginArtifactUsingRest()
      throws Exception
  {
    File artifact = getTestFile("changelog-maven-plugin-2.0-beta-1.jar");
    File pom = getTestFile("changelog-maven-plugin-2.0-beta-1.pom");

    int code = getDeployUtils().deployUsingPomWithRest(REPO_TEST_HARNESS_RELEASE_REPO, artifact, pom, null, null);
    Assert.assertTrue("Unable to deploy artifact " + code, Status.isSuccess(code));

    // validate group metadata
    File metadataFile =
        new File(nexusWorkDir, "storage/" + REPO_TEST_HARNESS_RELEASE_REPO
            + "/org/codehaus/mojo/maven-metadata.xml");
    Assert.assertTrue("Metadata file not found " + metadataFile.getAbsolutePath(), metadataFile.isFile());

    // validate artifact metadata
    metadataFile =
        new File(nexusWorkDir, "storage/" + REPO_TEST_HARNESS_RELEASE_REPO
            + "/org/codehaus/mojo/changelog-maven-plugin/maven-metadata.xml");
    Assert.assertTrue("Metadata file not found " + metadataFile.getAbsolutePath(), metadataFile.isFile());

    try (FileInputStream input = new FileInputStream(metadataFile)) {
      Metadata md = MetadataBuilder.read(input);

      logger.info(new XStream().toXML(md));

      Assert.assertEquals(md.getVersioning().getLatest(), "2.0-beta-1");
      Assert.assertEquals(md.getVersioning().getRelease(), "2.0-beta-1");
      Assert.assertEquals(1, md.getVersioning().getVersions().size());
      Assert.assertEquals(md.getVersioning().getVersions().get(0), "2.0-beta-1");
    }
  }

}
TOP

Related Classes of org.sonatype.nexus.testsuite.artifact.nexus1646.Nexus1646DeployArtifactsIT

TOP
Copyright © 2018 www.massapi.com. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.