Package org.sonatype.nexus.proxy

Source Code of org.sonatype.nexus.proxy.RepositoryEvictUnusedItemsTest

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

import java.util.Collection;

import org.sonatype.nexus.proxy.item.AbstractStorageItem;
import org.sonatype.nexus.proxy.item.RepositoryItemUid;
import org.sonatype.nexus.proxy.repository.Repository;

import org.junit.Test;

import static org.junit.Assert.assertNotNull;
import static org.junit.Assert.fail;

public class RepositoryEvictUnusedItemsTest
    extends AbstractProxyTestEnvironment
{
  private static final long DAY = 24L * 60L * 60L * 1000L;

  @Override
  protected EnvironmentBuilder getEnvironmentBuilder()
      throws Exception
  {
    return new M2TestsuiteEnvironmentBuilder("repo1", "repo2", "repo3");
  }

  @Test
  public void testEvictUnusedItems()
      throws Exception
  {
    Repository repo1 = getRepositoryRegistry().getRepository("repo1");

    // proxy in some content
    // we want some cache content, not interested in result

    repo1.retrieveItem(new ResourceStoreRequest("/activemq/activemq-core/1.2/activemq-core-1.2.jar", false));

    repo1.retrieveItem(new ResourceStoreRequest("/org/slf4j/slf4j-api/1.4.3/slf4j-api-1.4.3.pom", false));

    repo1.retrieveItem(new ResourceStoreRequest("/rome/rome/0.9/rome-0.9.pom", false));

    // now mangle the attributes of one of them
    AbstractStorageItem mangledItem = repo1.getLocalStorage().retrieveItem(
        repo1,
        new ResourceStoreRequest("/activemq/activemq-core/1.2/activemq-core-1.2.jar", true));

    // make it last requested before 3 days
    mangledItem.setLastRequested(System.currentTimeMillis() - (3 * DAY));

    // store the change
    repo1.getAttributesHandler().storeAttributes(mangledItem);

    // and evict all that are not "used" for 2 days
    Collection<String> evicted = repo1.evictUnusedItems(new ResourceStoreRequest(
        RepositoryItemUid.PATH_ROOT,
        true), System.currentTimeMillis() - (2 * DAY));

    // checks
    assertNotNull(evicted);

    assertEquals(1, evicted.size());

    assertEquals("/activemq/activemq-core/1.2/activemq-core-1.2.jar", evicted.iterator().next());

    // check for removed empty folders too
    // doing localOnly requests to avoid proxying and make sure they are gone too
    try {
      repo1.retrieveItem(new ResourceStoreRequest("/activemq/activemq-core/1.2", true));

      fail("Collection should not exists!");
    }
    catch (ItemNotFoundException e) {
      // fine
    }

    try {
      repo1.retrieveItem(new ResourceStoreRequest("/activemq/activemq-core", true));

      fail("Collection should not exists!");
    }
    catch (ItemNotFoundException e) {
      // fine
    }

    try {
      repo1.retrieveItem(new ResourceStoreRequest("/activemq", true));

      fail("Collection should not exists!");
    }
    catch (ItemNotFoundException e) {
      // fine
    }

  }
}
TOP

Related Classes of org.sonatype.nexus.proxy.RepositoryEvictUnusedItemsTest

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.