Merge pull request #102 from bykoianko/integration_tests_moving

Integration tests moving. Fixing unit test for Android.
This commit is contained in:
Viktor Govako 2015-10-02 13:18:41 +03:00
commit 7bc1f8e46f
21 changed files with 36 additions and 30 deletions

View file

@ -79,7 +79,7 @@ android {
}
def NUM_OF_PARALLEL_MAKE_TASKS = Runtime.runtime.availableProcessors() + 1
def INTEGRATION_TESTS_BUILD = '../../integration_tests/'
def INTEGRATION_TESTS_BUILD = '../../routing/routing_integration_tests/'
Properties properties = new Properties()
properties.load(project.rootProject.file('local.properties').newDataInputStream())
def NDK_BUILD = properties.getProperty('ndk.dir') + '/ndk-build'

View file

@ -7,8 +7,8 @@ MY_PREBUILT_LIBS_PATH := ../libs/tmp/$(TARGET_ARCH_ABI)
$(info $(MY_PREBUILT_LIBS_PATH))
include $(CLEAR_VARS)
LOCAL_MODULE := integration_tests
LOCAL_SRC_FILES := $(MY_PREBUILT_LIBS_PATH)/libintegration_tests.so
LOCAL_MODULE := routing_integration_tests
LOCAL_SRC_FILES := $(MY_PREBUILT_LIBS_PATH)/librouting_integration_tests.so
include $(PREBUILT_SHARED_LIBRARY)
include $(CLEAR_VARS)
@ -27,6 +27,6 @@ LOCAL_SRC_FILES := ./main.cpp
LOCAL_STATIC_LIBRARIES := android_native_app_glue
# todo(vbykoianko) extract the names of the libs from tests_list.sh
LOCAL_SHARED_LIBRARIES := integration_tests indexer_tests
LOCAL_SHARED_LIBRARIES := routing_integration_tests indexer_tests
include ./jni/AndroidEnding.mk

View file

@ -23,7 +23,7 @@ define add_prebuild_static_lib
include $(PREBUILT_STATIC_LIBRARY)
endef
prebuild_static_libs := osrm protobuf tomcrypt jansson bzip2 zlib fribidi freetype expat base coding geometry anim platform graphics indexer storage search routing gui map stats_client succinct
prebuild_static_libs := minizip osrm protobuf tomcrypt jansson fribidi freetype expat base coding geometry anim platform graphics indexer storage search routing gui map opening_hours stats_client succinct
$(foreach item,$(prebuild_static_libs),$(eval $(call add_prebuild_static_lib,$(item))))
@ -60,5 +60,5 @@ LOCAL_SRC_FILES += $(ROOT_PATH_FROM_JNI)/android/UnitTests/jni/mock.cpp
LOCAL_SRC_FILES += ./test.cpp
LOCAL_LDLIBS := -llog -landroid -lEGL -lGLESv1_CM
LOCAL_LDLIBS += -lGLESv2 -latomic
LOCAL_LDLIBS += -lGLESv2 -latomic -lz
LOCAL_LDLIBS += -Wl,--gc-sections

View file

@ -1,7 +1,7 @@
// @todo(vbykoianko) this file should be generated with a script based on tests_list.sh
#include "mock.hpp"
#include "integration_tests/jni/test.hpp"
#include "routing/routing_integration_tests/jni/test.hpp"
#include "indexer/indexer_tests/jni/test.hpp"
#include <android_native_app_glue.h>
@ -12,7 +12,7 @@ void android_main(struct android_app * state)
// Make sure glue isn't stripped.
app_dummy();
integration_tests::test(state);
routing_integration_tests::test(state);
indexer_tests::test(state);
// @todo(vbykoianko) Take care of correctly leaving the activity after all tests have

View file

@ -226,6 +226,12 @@ void Platform::RunOnGuiThread(TFunctor const & fn)
LOG(LWARNING, ("Platform::RunOnGuiThread() is not implemented."));
}
Platform::EConnectionType Platform::ConnectionStatus()
{
LOG(LWARNING, ("Platform::ConnectionStatus() is not implemented."));
return Platform::EConnectionType::CONNECTION_NONE;
}
JavaVM * GetJVM()
{
LOG(LWARNING, ("GetJVM() returns nullptr."));

View file

@ -4,7 +4,7 @@ package com.mapswithme.maps.unittests;
public class AllTestsActivity extends android.app.NativeActivity {
static {
System.loadLibrary("integration_tests");
System.loadLibrary("routing_integration_tests");
System.loadLibrary("indexer_tests");
System.loadLibrary("all_tests");
}

View file

@ -9,4 +9,4 @@
MY_PATH=$(dirname "$0") # relative
MY_PATH="`( cd \"$MY_PATH\" && pwd )`" # absolutized and normalized
declare -r TESTS_LIST=($MY_PATH/../../integration_tests/ $MY_PATH/../../indexer/indexer_tests/)
declare -r TESTS_LIST=($MY_PATH/../../routing/routing_integration_tests/ $MY_PATH/../../indexer/indexer_tests/)

View file

@ -10,6 +10,6 @@ include ../../android/UnitTests/jni/AndroidBeginning.mk
LOCAL_MODULE := indexer_tests
LOCAL_STATIC_LIBRARIES := android_native_app_glue indexer platform geometry coding base protobuf tomcrypt zlib
LOCAL_STATIC_LIBRARIES := android_native_app_glue indexer platform geometry coding base protobuf tomcrypt opening_hours minizip zlib
include ../../android/UnitTests/jni/AndroidEnding.mk

View file

@ -1 +0,0 @@
../../android/UnitTests/jni/Application.mk

View file

@ -38,7 +38,7 @@ SUBDIRS += storage
CONFIG(gtool):!CONFIG(no-tests) {
SUBDIRS += search
SUBDIRS += map
SUBDIRS += integration_tests
SUBDIRS += routing/routing_integration_tests
}
CONFIG(desktop) {
@ -80,12 +80,12 @@ CONFIG(desktop) {
SUBDIRS += storage/storage_tests
SUBDIRS += search/search_tests
SUBDIRS += map/map_tests map/benchmark_tool map/mwm_tests
SUBDIRS += routing/routing_integration_tests
SUBDIRS += routing/routing_tests
SUBDIRS += generator/generator_tests
SUBDIRS += indexer/indexer_tests
SUBDIRS += graphics/graphics_tests
SUBDIRS += gui/gui_tests
SUBDIRS *= integration_tests
SUBDIRS += pedestrian_routing_benchmarks
SUBDIRS += search/search_integration_tests

View file

@ -5,11 +5,11 @@
# - there are additional libs here (android_native_app_glue and zlib);
LOCAL_PATH := $(call my-dir)
ROOT_PATH := ..
include ../android/UnitTests/jni/AndroidBeginning.mk
ROOT_PATH := ../..
include ../../android/UnitTests/jni/AndroidBeginning.mk
LOCAL_MODULE := integration_tests
LOCAL_MODULE := routing_integration_tests
LOCAL_STATIC_LIBRARIES := android_native_app_glue base tomcrypt map routing search storage geometry osrm jansson indexer protobuf succinct stats_client platform coding zlib
LOCAL_STATIC_LIBRARIES := android_native_app_glue base tomcrypt map routing search storage geometry osrm jansson indexer protobuf succinct stats_client platform coding opening_hours minizip zlib
include ../android/UnitTests/jni/AndroidEnding.mk
include ../../android/UnitTests/jni/AndroidEnding.mk

View file

@ -0,0 +1 @@
../../../android/UnitTests/jni/Application.mk

View file

@ -5,7 +5,7 @@
extern int main(int argc, char * argv[]);
namespace integration_tests
namespace routing_integration_tests
{
void test(android_app * state)
{

View file

@ -3,7 +3,7 @@
struct android_app;
namespace integration_tests
namespace routing_integration_tests
{
void test(android_app * state);
}

View file

@ -1,6 +1,6 @@
#include "testing/testing.hpp"
#include "integration_tests/routing_test_tools.hpp"
#include "routing/routing_integration_tests/routing_test_tools.hpp"
namespace
{

View file

@ -1,8 +1,8 @@
#include "testing/testing.hpp"
#include "integration_tests/routing_test_tools.hpp"
#include "routing/routing_integration_tests/routing_test_tools.hpp"
#include "../indexer/mercator.hpp"
#include "../../indexer/mercator.hpp"
using namespace routing;

View file

@ -1,6 +1,6 @@
#include "testing/testing.hpp"
#include "integration_tests/routing_test_tools.hpp"
#include "routing/routing_integration_tests/routing_test_tools.hpp"
#include "routing/route.hpp"

View file

@ -1,6 +1,6 @@
#include "testing/testing.hpp"
#include "integration_tests/routing_test_tools.hpp"
#include "routing/routing_integration_tests/routing_test_tools.hpp"
#include "indexer/mercator.hpp"

View file

@ -5,12 +5,12 @@
# - tests are written to be launch on the whole world dataset;
# - tests covers significant number of subsystems;
TARGET = integration_tests
TARGET = routing_integration_tests
CONFIG += console warn_on
CONFIG -= app_bundle
TEMPLATE = app
ROOT_DIR = ..
ROOT_DIR = ../..
DEPENDENCIES = map routing search storage indexer platform geometry coding base osrm jansson protobuf tomcrypt succinct stats_client
macx-*: LIBS *= "-framework IOKit" "-framework SystemConfiguration"
@ -20,7 +20,7 @@ include($$ROOT_DIR/common.pri)
QT *= core
SOURCES += \
../testing/testingmain.cpp \
../../testing/testingmain.cpp \
online_cross_tests.cpp \
osrm_route_test.cpp \
osrm_turn_test.cpp \

View file

@ -1,4 +1,4 @@
#include "integration_tests/routing_test_tools.hpp"
#include "routing/routing_integration_tests/routing_test_tools.hpp"
#include "testing/testing.hpp"