-
-
Notifications
You must be signed in to change notification settings - Fork 180
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Motivation: We did end up with a BoringSSL artifact that could not load the native lib Modifications: -Add test that validates that the native lib can be loaded for BoringSSL Result: Correctly be able to use BoringSSL again
- Loading branch information
1 parent
d4fd276
commit 6e5bf3f
Showing
3 changed files
with
42 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
39 changes: 39 additions & 0 deletions
39
boringssl-static/src/test/java/io/netty/internal/tcnative/NativeTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright 2024 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: | ||
* | ||
* 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 io.netty.internal.tcnative; | ||
|
||
|
||
import org.junit.jupiter.api.Test; | ||
|
||
import java.io.File; | ||
|
||
public class NativeTest { | ||
|
||
@Test | ||
public void loadNativeLib() throws Exception { | ||
String testClassesRoot = NativeTest.class.getProtectionDomain().getCodeSource().getLocation().getFile(); | ||
File[] directories = new File(testClassesRoot + File.separator + "META-INF" + File.separator + "native") | ||
.listFiles(); | ||
if (directories == null || directories.length != 1) { | ||
throw new IllegalStateException("Could not find platform specific native directory"); | ||
} | ||
String libName = System.mapLibraryName("netty_tcnative") | ||
// Fix the filename (this is needed for macOS). | ||
.replace(".dylib", ".jnilib"); | ||
String libPath = directories[0].getAbsoluteFile() + File.separator + libName; | ||
System.load(libPath); | ||
} | ||
} |