netty5/testsuite-native/src/test/java/io/netty/testsuite_native/NativeLoadingTest.java
Norman Maurer 775b36ee66
Verify we can load native modules and add job that verifies on aarch64 as well (#10933)
Motivation:

As shown in the past we need to verify we actually can load the native as otherwise we may introduce regressions.

Modifications:

- Add new maven module which tests loading of native modules
- Add job that will also test loading on aarch64

Result:

Less likely to introduce regressions related to loading native code in the future
2021-01-14 17:11:19 +01:00

45 lines
1.4 KiB
Java

/*
* Copyright 2020 The Netty Project
*
* The Netty Project 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:
*
* https://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 io.netty.testsuite_native;
import io.netty.channel.epoll.Epoll;
import io.netty.channel.kqueue.KQueue;
import io.netty.resolver.dns.macos.MacOSDnsServerAddressStreamProvider;
import org.junit.jupiter.api.Test;
import org.junit.jupiter.api.condition.EnabledOnOs;
import org.junit.jupiter.api.condition.OS;
public class NativeLoadingTest {
@Test
@EnabledOnOs(OS.MAC)
public void testNativeLoadingKqueue() {
KQueue.ensureAvailability();
}
@Test
@EnabledOnOs(OS.MAC)
public void testNativeLoadingDnsServerAddressStreamProvider() {
MacOSDnsServerAddressStreamProvider.ensureAvailability();
}
@Test
@EnabledOnOs(OS.LINUX)
public void testNativeLoadingEpoll() {
Epoll.ensureAvailability();
}
}