YARN-7082. TestContainerManagerSecurity failing in trunk. Contributed by Akira Ajisaka

This commit is contained in:
Jason Lowe 2017-10-11 10:31:02 -05:00
parent dc63a6a52b
commit ebb34c7053
2 changed files with 12 additions and 3 deletions

View File

@ -112,9 +112,11 @@ public class BaseContainerTokenSecretManager extends
protected byte[] retrievePasswordInternal(ContainerTokenIdentifier identifier,
MasterKeyData masterKey)
throws org.apache.hadoop.security.token.SecretManager.InvalidToken {
LOG.debug("Retrieving password for {} for user {} to be run on NM {}",
identifier.getContainerID(), identifier.getUser(),
identifier.getNmHostAddress());
if (LOG.isDebugEnabled()) {
LOG.debug("Retrieving password for {} for user {} to be run on NM {}",
identifier.getContainerID(), identifier.getUser(),
identifier.getNmHostAddress());
}
return createPassword(identifier.getBytes(), masterKey.getSecretKey());
}

View File

@ -24,6 +24,7 @@ import java.io.IOException;
import org.apache.commons.io.IOUtils;
import org.apache.hadoop.io.Text;
import org.apache.hadoop.security.UserGroupInformation;
import org.apache.hadoop.yarn.api.records.ContainerId;
import org.apache.hadoop.yarn.api.records.LogAggregationContext;
import org.apache.hadoop.yarn.api.records.Priority;
@ -121,6 +122,12 @@ public class ContainerTokenIdentifierForTest extends ContainerTokenIdentifier {
return new ContainerIdPBImpl(proto.getContainerId());
}
@Override
public UserGroupInformation getUser() {
final ContainerId containerId = getContainerID();
return UserGroupInformation.createRemoteUser(containerId.toString());
}
public String getApplicationSubmitter() {
return proto.getAppSubmitter();
}