Package org.sonatype.nexus.testsuite.group.nexus947

Source Code of org.sonatype.nexus.testsuite.group.nexus947.Nexus947GroupBrowsingIT

/*
* 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.group.nexus947;

import java.io.IOException;
import java.util.ArrayList;
import java.util.List;

import org.sonatype.nexus.integrationtests.AbstractNexusIntegrationTest;
import org.sonatype.nexus.integrationtests.RequestFacade;
import org.sonatype.nexus.integrationtests.TestContainer;
import org.sonatype.nexus.rest.model.ContentListResource;
import org.sonatype.nexus.test.utils.ContentListMessageUtil;

import org.junit.BeforeClass;
import org.junit.Test;
import org.restlet.data.MediaType;
import org.restlet.data.Method;
import org.restlet.data.Response;

import static org.hamcrest.MatcherAssert.*;
import static org.hamcrest.Matchers.*;

public class Nexus947GroupBrowsingIT
    extends AbstractNexusIntegrationTest
{

  @BeforeClass
  public static void setSecureTest() {
    TestContainer.getInstance().getTestContext().setSecureTest(true);
  }

  @Test
  public void groupTest() throws IOException {
    ContentListMessageUtil contentUtil = new ContentListMessageUtil(this.getXMLXStream(), MediaType.APPLICATION_XML);

    List<ContentListResource> items = contentUtil.getContentListResource("public", "/", true);

    // make sure we have a few items
    assertThat("Expected more then 1 item", items.size(), greaterThan(1));

    // now for a bit more control
    items = contentUtil.getContentListResource("public", "/nexus947/nexus947/3.2.1/", true);

    ArrayList<String> itemsText = new ArrayList<String>();

    for (ContentListResource resource : items) {
      itemsText.add(resource.getText());
    }

    // they are sorted in alpha order, so expect the jar, then the pom
    assertThat(itemsText, containsInAnyOrder("nexus947-3.2.1.jar", "nexus947-3.2.1.pom"));
  }

  @Test
  public void redirectTest() throws IOException {
    String uriPart = RequestFacade.SERVICE_LOCAL + "repo_groups/" + "public" + "/content";
    Response response = RequestFacade.sendMessage(uriPart, Method.GET);
    assertThat(response.getStatus().getCode(), equalTo(301));
    assertThat(response.getLocationRef().toString(), endsWith(uriPart + "/"));
  }
}
TOP

Related Classes of org.sonatype.nexus.testsuite.group.nexus947.Nexus947GroupBrowsingIT

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.