blob: b373a6dde2a9765d46da658e629d65f4def486c9 [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.configuration;
import org.apache.flink.util.TestLogger;
import org.junit.Test;
import java.util.Arrays;
import java.util.HashSet;
import static org.junit.Assert.assertTrue;
/**
* Test that checks that all packages that need to be loaded 'parent-first' are also
* in the parent-first patterns.
*/
public class ParentFirstPatternsTest extends TestLogger {
private static final HashSet<String> PARENT_FIRST_PACKAGES = new HashSet<>(
Arrays.asList(CoreOptions.ALWAYS_PARENT_FIRST_LOADER_PATTERNS.defaultValue().split(";")));
/**
* All java and Flink classes must be loaded parent first.
*/
@Test
public void testAllCorePatterns() {
assertTrue(PARENT_FIRST_PACKAGES.contains("java."));
assertTrue(PARENT_FIRST_PACKAGES.contains("org.apache.flink."));
assertTrue(PARENT_FIRST_PACKAGES.contains("javax.annotation."));
}
/**
* To avoid multiple binding problems and warnings for logger frameworks, we load them
* parent-first.
*/
@Test
public void testLoggersParentFirst() {
assertTrue(PARENT_FIRST_PACKAGES.contains("org.slf4j"));
assertTrue(PARENT_FIRST_PACKAGES.contains("org.apache.log4j"));
assertTrue(PARENT_FIRST_PACKAGES.contains("org.apache.logging"));
assertTrue(PARENT_FIRST_PACKAGES.contains("org.apache.commons.logging"));
assertTrue(PARENT_FIRST_PACKAGES.contains("ch.qos.logback"));
}
/**
* As long as Scala is not a pure user library, but is also used in the Flink runtime, we need
* to load all Scala classes parent-first.
*/
@Test
public void testScalaParentFirst() {
assertTrue(PARENT_FIRST_PACKAGES.contains("scala."));
}
/**
* As long as we have Hadoop classes leaking through some of Flink's APIs (example bucketing sink),
* we need to make them parent first.
*/
@Test
public void testHadoopParentFirst() {
assertTrue(PARENT_FIRST_PACKAGES.contains("org.apache.hadoop."));
}
}