Как загрузить.so при использовании Robolectric?

W/Environment: EXTERNAL_STORAGE не определено; откат к дефолту

java.lang.UnsatisfiedLinkError: com.autonavi.amap.mapcore.MapCore.nativeNewInstance(Ljava/lang/String;)J
    at com.autonavi.amap.mapcore.MapCore.nativeNewInstance(Native Method)
    at com.autonavi.amap.mapcore.MapCore.<init>(MapCore.java:62)
    at com.amap.api.mapcore.AMapDelegateImpGLSurfaceView.<init>(AMapDelegateImpGLSurfaceView.java:356)
    at com.amap.api.mapcore.AMapDelegateImpGLSurfaceView.<init>(AMapDelegateImpGLSurfaceView.java:318)
    at com.amap.api.mapcore.ak.a(MapFragmentDelegateImp.java:123)
    at com.amap.api.maps.MapView.onCreate(MapView.java:131)
    at com.e.activity.DriverReleaseActivity.initData(DriverReleaseActivity.java:179)
    at com.e.base.BaseActivity.onCreate(BaseActivity.java:29)
    at android.app.Activity.performCreate(Activity.java:5933)
    at org.robolectric.util.ReflectionHelpers.callInstanceMethod(ReflectionHelpers.java:195)
    at org.robolectric.util.ActivityController$1.run(ActivityController.java:122)
    at org.robolectric.shadows.ShadowLooper.runPaused(ShadowLooper.java:304)
    at org.robolectric.shadows.CoreShadowsAdapter$2.runPaused(CoreShadowsAdapter.java:45)
    at org.robolectric.util.ActivityController.create(ActivityController.java:118)
    at org.robolectric.util.ActivityController.create(ActivityController.java:129)
    at com.enjoytech.ecar.carpooling.activity.DriverReleaseAcitivityTest.init(DriverReleaseAcitivityTest.java:87)
    at com.enjoytech.ecar.carpooling.activity.DriverReleaseAcitivityTest.test(DriverReleaseAcitivityTest.java:79)
    at org.junit.runners.model.FrameworkMethod$1.runReflectiveCall(FrameworkMethod.java:50)
    at org.junit.internal.runners.model.ReflectiveCallable.run(ReflectiveCallable.java:12)
    at org.junit.runners.model.FrameworkMethod.invokeExplosively(FrameworkMethod.java:47)
    at org.junit.internal.runners.statements.InvokeMethod.evaluate(InvokeMethod.java:17)
    at org.junit.internal.runners.statements.RunBefores.evaluate(RunBefores.java:26)
    at org.robolectric.RobolectricTestRunner$2.evaluate(RobolectricTestRunner.java:251)
    at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:188)
    at org.robolectric.RobolectricTestRunner.runChild(RobolectricTestRunner.java:54)
    at org.junit.runners.ParentRunner$3.run(ParentRunner.java:290)
    at org.junit.runners.ParentRunner$1.schedule(ParentRunner.java:71)
    at org.junit.runners.ParentRunner.runChildren(ParentRunner.java:288)
    at org.junit.runners.ParentRunner.access$000(ParentRunner.java:58)
    at org.junit.runners.ParentRunner$2.evaluate(ParentRunner.java:268)
    at org.robolectric.RobolectricTestRunner$1.evaluate(RobolectricTestRunner.java:152)
    at org.junit.runners.ParentRunner.run(ParentRunner.java:363)
    at org.junit.runner.JUnitCore.run(JUnitCore.java:137)
    at com.intellij.rt.execution.application.AppMain.main(AppMain.java:140)

Процесс завершен с кодом выхода -1

Не удалось загрузить файл.so.

Когда я использую

try {      
    System.loadLibrary("libamapv304");
    System.loadLibrary("libamapv304ex");
} catch (UnsatisfiedLinkError e) {
    e.printStackTrace();
}

это вызывает java.lang.UnsatisfiedLinkError: no libamapv304 in java.library.path

Как я могу использовать .so завершить модульное тестирование с Roboletric?

2 ответа

Решение

Я бы загружал нативные библиотеки каким-то контролируемым способом. Для простоты предположим, что это в Application:

public class NativeLibApplication extends Application {
    ...
    protected void loadNativeLibraries() {
        try {      
            System.loadLibrary("libamapv304");
            System.loadLibrary("libamapv304ex");
        } catch (UnsatisfiedLinkError e) {
            ...
        }
    }
    ...
}

Robolectric дает вам возможность настроить приложение под тест. Вы должны создать TestNativeLibApplication в том же пакете под тестовой папкой и подавить загрузку нативных библиотек:

public class TestNativeLibApplication extends NativeLibApplication {
    ...
    @Override
    protected void loadNativeLibraries() {
        //do nothing
    }
    ...
}

Поддержка библиотек, которые упаковывают нативные библиотеки

Резюме

1. Отключите загрузку так в вашем коде приложения.

2. Портирование динамической библиотеки ссылок.

  • Если вы используете операционную систему Linux, которая является самой простой, просто получите x86-64(Depending on your cpu architecture) вот так, и добавь библиотеку зависимостей так (находится в папке ndk-bundle, платформы).

  • Если вы используете операционную систему masOS, вам нужно сделать немного больше работы. И у вас должен быть собственный исходный код библиотеки и скомпилируйте его в системе macOS:

`` `Баш

.o

cc -c -I / Система / Библиотека / Каркасы /JavaVM.framework/ Заголовки *.cpp

получить xxx.dylib

g ++ -dynamiclib -неопределенное подавление -flat_namespace *.o -o что-то.dylib

`` `

  • Windows похожа.

3. Загрузите библиотеку в ваше приложение Robolectric.

Конец, запустите свой тестовый пример, молодец:

http://rocko-blog.qiniudn.com/2016-11-27_09-32-15_test_case_success.png

подробность

Пример кода: https://github.com/zhengxiaopeng/RobolectricSupportNativeLibs

Другие вопросы по тегам