blob: b457cd29fb5c2dc3adff3f758df0c975b85e692d [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.flink.yarn;
import org.junit.Assert;
import org.junit.Test;
import java.util.regex.Pattern;
/** Tests for {@link YarnTestBase}. */
public class YarnTestBaseTest {
@Test
public void ensureWhitelistEntryMatches() {
ensureWhitelistEntryMatch("465 java.lang.InterruptedException: sleep interrupted");
ensureWhitelistEntryMatch(
"2020-09-19 22:06:19,458 WARN akka.remote.ReliableDeliverySupervisor [] - Association with remote system [akka.tcp://flink@e466f3e261f3:42352] has failed, address is now gated for [50] ms. Reason: [Association failed with [akka.tcp://flink@e466f3e261f3:42352]] Caused by: [java.net.ConnectException: Connection refused: e466f3e261f3/192.168.224.2:42352]");
ensureWhitelistEntryMatch(
"2020-10-15 10:31:09,661 WARN akka.remote.transport.netty.NettyTransport [] - Remote connection to [61b81e62b514/192.168.128.2:39365] failed with java.io.IOException: Broken pipe");
}
private void ensureWhitelistEntryMatch(String probe) {
for (Pattern pattern : YarnTestBase.WHITELISTED_STRINGS) {
if (pattern.matcher(probe).find()) {
return;
}
}
Assert.fail("The following string didn't match any whitelisted patterns '" + probe + "'");
}
}