Package com.google.enterprise.connector.notes

Source Code of com.google.enterprise.connector.notes.NotesAuthenticationManagerTest

// Copyright 2011 Google Inc.
//
// Licensed under the Apache License, Version 2.0 (the "License");
// you may not use this file except in compliance with the License.
// You may obtain a copy of the License at
//
//      http://www.apache.org/licenses/LICENSE-2.0
//
// Unless required by applicable law or agreed to in writing, software
// distributed under the License is distributed on an "AS IS" BASIS,
// WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
// See the License for the specific language governing permissions and
// limitations under the License.

package com.google.enterprise.connector.notes;

import com.google.enterprise.connector.notes.NotesConnectorSession;
import com.google.enterprise.connector.spi.AuthenticationManager;
import com.google.enterprise.connector.spi.AuthenticationResponse;
import com.google.enterprise.connector.spi.Principal;
import com.google.enterprise.connector.spi.RepositoryException;
import com.google.enterprise.connector.spi.Session;
import com.google.enterprise.connector.spi.SimpleAuthenticationIdentity;

import java.util.Collection;

public class NotesAuthenticationManagerTest extends ConnectorFixture {

  private String username;
  private String password;

  public NotesAuthenticationManagerTest() {
    super();
  }

  @Override
  protected void setUp() throws Exception {
    super.setUp();
    username = ConnectorFixture.getRequiredProperty(
        "javatest.authentication.username");
    password = ConnectorFixture.getRequiredProperty(
        "javatest.authentication.password");

    // Temporary fix for the need to create user/group cache.
    // TODO: Create a better fixture that handles the need to set
    // up data before tests.
    Session session = connector.login();
    NotesUserGroupManager userGroupManager =
        new NotesUserGroupManager((NotesConnectorSession) session);
    userGroupManager.updateUsersGroups(true);
  }

  /**
   * Tests an invalid user name.
   *
   * @throws RepositoryException
   */
  public void testInvalidUser() throws RepositoryException {
    Session session = connector.login();
    AuthenticationManager manager = session.getAuthenticationManager();
    AuthenticationResponse response = manager.authenticate(
        new SimpleAuthenticationIdentity("not a real username"));
    assertFalse(response.isValid());
  }

  /**
   * Tests a valid user name.
   *
   * @throws RepositoryException
   */
  public void testValidUser() throws RepositoryException {
    Session session = connector.login();
    AuthenticationManager manager = session.getAuthenticationManager();
    AuthenticationResponse response = manager.authenticate(
        new SimpleAuthenticationIdentity(username, password));
    assertTrue("Failed to authenticate: " + username, response.isValid());
    @SuppressWarnings({ "unchecked", "cast" })
        Collection<Principal> groups = (Collection<Principal>) response.getGroups();
    if (groups != null) {
      String groupPrefix = ((NotesConnectorSession) session)
          .getGsaGroupPrefix();
      for (Principal group : groups) {
        String name = group.getName();
        assertTrue(name, name.startsWith(groupPrefix));
        assertTrue(name, name.indexOf(" ") < 0);
      }
    }
  }

  /**
   * Tests a valid user name with no password.
   *
   * @throws RepositoryException
   */
  public void testValidUserGroupResolutionOnly() throws RepositoryException {
    Session session = connector.login();
    AuthenticationManager manager = session.getAuthenticationManager();
    AuthenticationResponse response = manager.authenticate(
        new SimpleAuthenticationIdentity(username, null));
    assertTrue("Authenticated: " + username, response.isValid());
    @SuppressWarnings({ "unchecked", "cast" })
        Collection<Principal> groups = (Collection<Principal>) response.getGroups();
    if (groups != null) {
      String groupPrefix = ((NotesConnectorSession) session)
          .getGsaGroupPrefix();
      for (Principal group : groups) {
        String name = group.getName();
        assertTrue(name, name.startsWith(groupPrefix));
        assertTrue(name, name.indexOf(" ") < 0);
      }
    }
  }
}
TOP

Related Classes of com.google.enterprise.connector.notes.NotesAuthenticationManagerTest

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.