YARN-4976. Missing NullPointer check in ContainerLaunchContextPBImpl. Contributed by Giovanni Matteo Fumarola
This commit is contained in:
parent
b4be288c5d
commit
95a5046607
|
@ -369,14 +369,20 @@ extends ContainerLaunchContext {
|
|||
public void remove() {
|
||||
throw new UnsupportedOperationException();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public StringStringMapProto next() {
|
||||
String key = keyIter.next();
|
||||
return StringStringMapProto.newBuilder().setKey(key).setValue(
|
||||
(environment.get(key))).build();
|
||||
String value = environment.get(key);
|
||||
|
||||
if (value == null) {
|
||||
value = "";
|
||||
}
|
||||
|
||||
return StringStringMapProto.newBuilder().setKey(key)
|
||||
.setValue((value)).build();
|
||||
}
|
||||
|
||||
|
||||
@Override
|
||||
public boolean hasNext() {
|
||||
return keyIter.hasNext();
|
||||
|
|
|
@ -0,0 +1,69 @@
|
|||
/**
|
||||
* 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.hadoop.yarn.api.records.impl.pb;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.nio.ByteBuffer;
|
||||
import java.util.Collections;
|
||||
import java.util.HashMap;
|
||||
import java.util.List;
|
||||
import java.util.Map;
|
||||
|
||||
import org.apache.hadoop.io.DataOutputBuffer;
|
||||
import org.apache.hadoop.security.Credentials;
|
||||
import org.apache.hadoop.yarn.api.records.ApplicationAccessType;
|
||||
import org.apache.hadoop.yarn.api.records.ContainerLaunchContext;
|
||||
import org.apache.hadoop.yarn.api.records.LocalResource;
|
||||
import org.junit.Assert;
|
||||
import org.junit.Test;
|
||||
|
||||
public class TestApplicationClientProtocolRecords {
|
||||
|
||||
/*
|
||||
* This test validates the scenario in which the client sets a null value for a
|
||||
* particular environment.
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
public void testCLCPBImplNullEnv() throws IOException {
|
||||
Map<String, LocalResource> localResources = Collections.emptyMap();
|
||||
Map<String, String> environment = new HashMap<String, String>();
|
||||
List<String> commands = Collections.emptyList();
|
||||
Map<String, ByteBuffer> serviceData = Collections.emptyMap();
|
||||
Credentials containerCreds = new Credentials();
|
||||
DataOutputBuffer dob = new DataOutputBuffer();
|
||||
containerCreds.writeTokenStorageToStream(dob);
|
||||
ByteBuffer containerTokens =
|
||||
ByteBuffer.wrap(dob.getData(), 0, dob.getLength());
|
||||
Map<ApplicationAccessType, String> acls = Collections.emptyMap();
|
||||
|
||||
environment.put("testCLCPBImplNullEnv", null);
|
||||
|
||||
ContainerLaunchContext clc =
|
||||
ContainerLaunchContext.newInstance(localResources, environment,
|
||||
commands, serviceData, containerTokens, acls);
|
||||
|
||||
ContainerLaunchContext clcProto = new ContainerLaunchContextPBImpl(
|
||||
((ContainerLaunchContextPBImpl) clc).getProto());
|
||||
|
||||
Assert.assertEquals("",
|
||||
clcProto.getEnvironment().get("testCLCPBImplNullEnv"));
|
||||
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue