Package org.sonatype.security.rest.users

Source Code of org.sonatype.security.rest.users.AbstractSecurityRestTest

/*
* 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.security.rest.users;

import java.io.File;

import org.sonatype.nexus.proxy.events.NexusStoppedEvent;
import org.sonatype.nexus.test.PlexusTestCaseSupport;
import org.sonatype.security.SecuritySystem;
import org.sonatype.security.guice.SecurityModule;
import org.sonatype.sisu.goodies.eventbus.EventBus;

import com.google.common.collect.ObjectArrays;
import com.google.inject.Module;
import net.sf.ehcache.CacheManager;
import org.apache.commons.io.FileUtils;
import org.apache.shiro.util.ThreadContext;
import org.codehaus.plexus.ContainerConfiguration;
import org.codehaus.plexus.PlexusConstants;
import org.codehaus.plexus.context.Context;

public abstract class AbstractSecurityRestTest
    extends PlexusTestCaseSupport
{
  protected static final String REALM_KEY = new MockUserManager().getSource();

  protected static final String WORK_DIR = "target/UserToRolePRTest";

  protected static final String TEST_CONFIG = "target/test-classes/"
      + UserToRolePRTest.class.getName().replaceAll("\\.", "\\/") + "-security.xml";

  private EventBus eventBus;

  @Override
  protected void customizeContainerConfiguration(ContainerConfiguration configuration) {
    configuration.setClassPathScanning(PlexusConstants.SCANNING_INDEX);
    configuration.setAutoWiring(true);

    super.customizeContainerConfiguration(configuration);
  }

  @Override
  protected Module[] getTestCustomModules() {
    Module[] modules = super.getTestCustomModules();
    if (modules == null) {
      modules = new Module[0];
    }
    modules = ObjectArrays.concat(modules, new SecurityModule());
    return modules;
  }

  @Override
  protected void setUp()
      throws Exception
  {
    // remove Shiro thread locals, as things like DelegatingSubjects might lead us to old instance of SM
    ThreadContext.remove();
    super.setUp();

    FileUtils.copyFile(new File(TEST_CONFIG), new File(WORK_DIR, "/etc/security.xml"));
    eventBus = lookup(EventBus.class);

    // start security
    this.lookup(SecuritySystem.class).start();
  }

  @Override
  protected void tearDown()
      throws Exception
  {
    // FIXME: This needs to be fired as many component relies on this to cleanup
    eventBus.post(new NexusStoppedEvent(null));
    try {
      lookup(SecuritySystem.class).stop();
      lookup(CacheManager.class).shutdown();
    }
    finally {
      super.tearDown();
    }
    // remove Shiro thread locals, as things like DelegatingSubjects might lead us to old instance of SM
    ThreadContext.remove();
  }

  @Override
  protected void customizeContext(Context context) {
    super.customizeContext(context);

    context.put("nexus-work", WORK_DIR);
    context.put("security-xml-file", WORK_DIR + "/etc/security.xml");
    context.put("application-conf", WORK_DIR + "/etc/");
  }
}
TOP

Related Classes of org.sonatype.security.rest.users.AbstractSecurityRestTest

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.