/* * Licensed to the Apache Software Foundation (ASF) under one or more * contributor license agreements. See the NOTICE file distributed with * this work for additional information regarding copyright ownership. * The ASF licenses this file to You 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 org.apache.accumulo.tserver; import static org.easymock.EasyMock.expect; import static org.junit.Assert.assertFalse; import static org.junit.Assert.assertTrue; import static org.powermock.api.easymock.PowerMock.createMock; import static org.powermock.api.easymock.PowerMock.replay; import java.nio.ByteBuffer; import java.util.Collections; import java.util.List; import org.apache.accumulo.core.client.impl.thrift.ThriftSecurityException; import org.apache.accumulo.core.data.ArrayByteSequence; import org.apache.accumulo.core.data.ByteSequence; import org.apache.accumulo.core.security.thrift.TCredentials; import org.apache.accumulo.server.security.SecurityOperation; import org.junit.Test; public class TservConstraintEnvTest { @Test public void testGetAuthorizationsContainer() throws ThriftSecurityException { SecurityOperation security = createMock(SecurityOperation.class); TCredentials goodCred = createMock(TCredentials.class); TCredentials badCred = createMock(TCredentials.class); ByteSequence bs = new ArrayByteSequence("foo".getBytes()); List<ByteBuffer> bbList = Collections.<ByteBuffer> singletonList(ByteBuffer.wrap(bs.getBackingArray(), bs.offset(), bs.length())); expect(security.userHasAuthorizations(goodCred, bbList)).andReturn(true); expect(security.userHasAuthorizations(badCred, bbList)).andReturn(false); replay(security); assertTrue(new TservConstraintEnv(security, goodCred).getAuthorizationsContainer().contains(bs)); assertFalse(new TservConstraintEnv(security, badCred).getAuthorizationsContainer().contains(bs)); } }