Package v7db.files.mongodb

Source Code of v7db.files.mongodb.AuthorisationProviderTest

/**
* Copyright (c) 2011, Thilo Planz. All rights reserved.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as
* published by the Free Software Foundation, either version 3 of the
* License, or (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/

package v7db.files.mongodb;

import java.util.Properties;

import junit.framework.TestCase;
import v7db.auth.AuthenticationToken;
import v7db.files.AuthorisationProvider;
import v7db.files.AuthorisationProviderFactory;
import v7db.files.mongodb.V7File;

import com.mongodb.BasicDBObject;

public abstract class AuthorisationProviderTest extends TestCase {

  final String aclProvider;

  public AuthorisationProviderTest(String aclProvider) {
    this.aclProvider = aclProvider;
  }

  public void testAnonymousCannotDoAnythingByDefault() {
    Properties props = new Properties();
    props.setProperty("acl.provider", aclProvider);
    AuthorisationProvider auth = AuthorisationProviderFactory
        .getAuthorisationProvider(props);

    V7File dummyFile = new V7File(null, new BasicDBObject(), null);

    assertFalse(auth.authoriseOpen(dummyFile, null));
    assertFalse(auth
        .authoriseOpen(dummyFile, AuthenticationToken.ANONYMOUS));
    assertFalse(auth.authoriseRead(dummyFile, null));
    assertFalse(auth
        .authoriseRead(dummyFile, AuthenticationToken.ANONYMOUS));
    assertFalse(auth.authoriseWrite(dummyFile, null));
    assertFalse(auth.authoriseWrite(dummyFile,
        AuthenticationToken.ANONYMOUS));

  }

}
TOP

Related Classes of v7db.files.mongodb.AuthorisationProviderTest

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.