blob: 997657161876ac752696082e11dfbd237d4343ff [file] [log] [blame]
/**
* 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.storm.security.auth;
import java.net.InetAddress;
import java.net.UnknownHostException;
import java.security.Principal;
import java.util.HashSet;
import java.util.Set;
import javax.security.auth.Subject;
import org.apache.storm.shade.com.google.common.collect.ImmutableSet;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;
public class ReqContextTest {
private ReqContext rc;
@Before
public void setup() {
rc = ReqContext.context();
}
@Test
public void testSubject() {
Subject expected = new Subject();
Assert.assertFalse(expected.isReadOnly());
rc.setSubject(expected);
Assert.assertEquals(expected, rc.subject());
expected.setReadOnly();
rc.setSubject(expected);
Assert.assertEquals(expected, rc.subject());
}
@Test
public void testRemoteAddress() throws UnknownHostException {
InetAddress expected = InetAddress.getByAddress("ABCD".getBytes());
rc.setRemoteAddress(expected);
Assert.assertEquals(expected, rc.remoteAddress());
}
/**
* If subject has no principals, request context should return null principal
*/
@Test
public void testPrincipalReturnsNullWhenNoSubject() {
rc.setSubject(new Subject());
Assert.assertNull(rc.principal());
}
@Test
public void testPrincipal() {
final String principalName = "Test Principal";
Principal testPrincipal = new Principal() {
@Override
public String getName() {
return principalName;
}
};
Set<Principal> principals = ImmutableSet.of(testPrincipal);
Subject subject = new Subject(false, principals, new HashSet<>(), new HashSet<>());
rc.setSubject(subject);
Assert.assertNotNull(rc.principal());
Assert.assertEquals(principalName, rc.principal().getName());
rc.setSubject(null);
}
}