blob: bfae6ecb5ca962988fb2bf253f596260be398317 [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.slider.funtest.lifecycle
import groovy.transform.CompileStatic
import groovy.util.logging.Slf4j
import org.apache.slider.common.SliderExitCodes
import org.apache.slider.common.params.Arguments
import org.apache.slider.common.params.SliderActions
import org.apache.slider.funtest.framework.AgentCommandTestBase
import org.apache.slider.funtest.framework.FuntestProperties
import org.apache.slider.funtest.framework.SliderShell
import org.junit.After
import org.junit.Test
@CompileStatic
@Slf4j
public class AgentFailures2IT extends AgentCommandTestBase
implements FuntestProperties, Arguments, SliderExitCodes, SliderActions {
private static String COMMAND_LOGGER = "COMMAND_LOGGER"
private static String APPLICATION_NAME = "two-container-fail-heartbeat"
private static String APP_TEMPLATE3 =
"../slider-core/src/test/app_packages/test_command_log/appConfig_no_hb.json"
@After
public void destroyCluster() {
cleanup(APPLICATION_NAME)
}
@Test
public void testAgentFailHeartbeatingTwiceOnce() throws Throwable {
assumeAgentTestsEnabled()
cleanup(APPLICATION_NAME)
File launchReportFile = createAppReportFile();
SliderShell shell = createTemplatedSliderApplication(
APPLICATION_NAME, APP_TEMPLATE3, APP_RESOURCE,
[],
launchReportFile)
logShell(shell)
def appId = ensureYarnApplicationIsUp(launchReportFile)
expectContainerRequestedCountReached(APPLICATION_NAME, COMMAND_LOGGER, 2,
CONTAINER_LAUNCH_TIMEOUT * 2)
sleep(1000 * 20)
expectContainerRequestedCountReached(APPLICATION_NAME, COMMAND_LOGGER, 3,
CONTAINER_LAUNCH_TIMEOUT * 2)
assertAppRunning(appId)
}
}