Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit a9ef4dc7 authored by Colin Cross's avatar Colin Cross Committed by Gerrit Code Review
Browse files

Merge changes I975ba933,Ica9d211b

* changes:
  Add tests for multiton issue
  Add GetExecutableDirectory to libbase
parents 8a3a1660 a0931ebd
Loading
Loading
Loading
Loading
+4 −1
Original line number Diff line number Diff line
@@ -238,8 +238,11 @@ std::string GetExecutablePath() {
#endif
}

std::string Basename(const std::string& path) {
std::string GetExecutableDirectory() {
  return Dirname(GetExecutablePath());
}

std::string Basename(const std::string& path) {
  // Copy path because basename may modify the string passed in.
  std::string result(path);

+8 −0
Original line number Diff line number Diff line
@@ -159,6 +159,14 @@ TEST(file, Readlink) {
#endif
}

TEST(file, GetExecutableDirectory) {
  std::string path = android::base::GetExecutableDirectory();
  ASSERT_NE("", path);
  ASSERT_NE(android::base::GetExecutablePath(), path);
  ASSERT_EQ('/', path[0]);
  ASSERT_NE('/', path[path.size() - 1]);
}

TEST(file, GetExecutablePath) {
  ASSERT_NE("", android::base::GetExecutablePath());
}
+1 −0
Original line number Diff line number Diff line
@@ -51,6 +51,7 @@ bool Readlink(const std::string& path, std::string* result);
#endif

std::string GetExecutablePath();
std::string GetExecutableDirectory();

// Like the regular basename and dirname, but thread-safe on all
// platforms and capable of correctly handling exotic Windows paths.
+25 −0
Original line number Diff line number Diff line
@@ -23,6 +23,7 @@ cc_test {
    srcs: [
        "BitSet_test.cpp",
        "LruCache_test.cpp",
        "Singleton_test.cpp",
        "String8_test.cpp",
        "StrongPointer_test.cpp",
        "Unicode_test.cpp",
@@ -42,6 +43,8 @@ cc_test {
                "liblog",
                "libcutils",
                "libutils",
                "libbase",
                "libdl",
            ],
        },
        linux: {
@@ -54,13 +57,35 @@ cc_test {
            static_libs: [
                "libutils",
                "liblog",
                "libbase",
            ],
            host_ldlibs: ["-ldl"],
        },
    },

    required: [
        "libutils_tests_singleton1",
        "libutils_tests_singleton2",
    ],

    cflags: [
        "-Wall",
        "-Wextra",
        "-Werror",
    ],
}

cc_test_library {
    name: "libutils_tests_singleton1",
    host_supported: true,
    relative_install_path: "libutils_tests",
    srcs: ["Singleton_test1.cpp"],
}

cc_test_library {
    name: "libutils_tests_singleton2",
    host_supported: true,
    relative_install_path: "libutils_tests",
    srcs: ["Singleton_test2.cpp"],
    shared_libs: ["libutils_tests_singleton1"],
}
+69 −0
Original line number Diff line number Diff line
/*
 * Copyright (C) 2017 The Android Open Source Project
 *
 * Licensed 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.
 */

#define LOG_TAG "Singleton_test"

#include <dlfcn.h>

#include <android-base/file.h>
#include <android-base/stringprintf.h>
#include <utils/Singleton.h>

#include <gtest/gtest.h>

#include "Singleton_test.h"

namespace android {

TEST(SingletonTest, bug35674422) {
    std::string path = android::base::GetExecutableDirectory();
    // libutils_tests_singleton1.so contains the ANDROID_SINGLETON_STATIC_INSTANCE
    // definition of SingletonTestData, load it first.
    std::string lib = android::base::StringPrintf("%s/libutils_tests_singleton1.so", path.c_str());
    void* handle1 = dlopen(lib.c_str(), RTLD_NOW);
    ASSERT_TRUE(handle1 != nullptr) << dlerror();

    // libutils_tests_singleton2.so references SingletonTestData but should not
    // have a definition
    lib = android::base::StringPrintf("%s/libutils_tests_singleton2.so", path.c_str());
    void* handle2 = dlopen(lib.c_str(), RTLD_NOW);
    ASSERT_TRUE(handle2 != nullptr) << dlerror();

    using has_fn_t = decltype(&singletonHasInstance);
    using get_fn_t = decltype(&singletonGetInstanceContents);
    using set_fn_t = decltype(&singletonSetInstanceContents);

    has_fn_t has1 = reinterpret_cast<has_fn_t>(dlsym(handle1, "singletonHasInstance"));
    ASSERT_TRUE(has1 != nullptr) << dlerror();
    has_fn_t has2 = reinterpret_cast<has_fn_t>(dlsym(handle2, "singletonHasInstance"));
    ASSERT_TRUE(has2 != nullptr) << dlerror();
    get_fn_t get1 = reinterpret_cast<get_fn_t>(dlsym(handle1, "singletonGetInstanceContents"));
    ASSERT_TRUE(get1 != nullptr) << dlerror();
    get_fn_t get2 = reinterpret_cast<get_fn_t>(dlsym(handle2, "singletonGetInstanceContents"));
    ASSERT_TRUE(get2 != nullptr) << dlerror();
    set_fn_t set1 = reinterpret_cast<set_fn_t>(dlsym(handle2, "singletonSetInstanceContents"));
    ASSERT_TRUE(set1 != nullptr) << dlerror();

    EXPECT_FALSE(has1());
    EXPECT_FALSE(has2());
    set1(12345678U);
    EXPECT_TRUE(has1());
    EXPECT_TRUE(has2());
    EXPECT_EQ(12345678U, get1());
    EXPECT_EQ(12345678U, get2());
}

}
Loading