gid_t and uid_t are unsigned ints, so we need to compare against unsigned constants. Bug: 26936282 Test: mmm system/core/libcutils/tests Test: adb shell /data/nativetest/libcutils_test/libcutils_test32 \ --gtest_filter=MultiuserTest.* (on hikey) Test: adb shell /data/nativetest64/libcutils_test/libcutils_test64 \ --gtest_filter=MultiuserTest.* (on hikey) Change-Id: Ic4c8a137e3f37cb5e95ba925814f201cfd5a06b0 Signed-off-by: Greg Hackmann <ghackmann@google.com>
77 lines
3 KiB
C++
77 lines
3 KiB
C++
/*
|
|
* Copyright (C) 2016 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.
|
|
*/
|
|
|
|
#include <cutils/multiuser.h>
|
|
#include <gtest/gtest.h>
|
|
|
|
static constexpr auto ERR_GID = static_cast<gid_t>(-1);
|
|
|
|
TEST(MultiuserTest, TestMerge) {
|
|
EXPECT_EQ(0U, multiuser_get_uid(0, 0));
|
|
EXPECT_EQ(1000U, multiuser_get_uid(0, 1000));
|
|
EXPECT_EQ(10000U, multiuser_get_uid(0, 10000));
|
|
EXPECT_EQ(50000U, multiuser_get_uid(0, 50000));
|
|
EXPECT_EQ(1000000U, multiuser_get_uid(10, 0));
|
|
EXPECT_EQ(1001000U, multiuser_get_uid(10, 1000));
|
|
EXPECT_EQ(1010000U, multiuser_get_uid(10, 10000));
|
|
EXPECT_EQ(1050000U, multiuser_get_uid(10, 50000));
|
|
}
|
|
|
|
TEST(MultiuserTest, TestSplitUser) {
|
|
EXPECT_EQ(0U, multiuser_get_user_id(0));
|
|
EXPECT_EQ(0U, multiuser_get_user_id(1000));
|
|
EXPECT_EQ(0U, multiuser_get_user_id(10000));
|
|
EXPECT_EQ(0U, multiuser_get_user_id(50000));
|
|
EXPECT_EQ(10U, multiuser_get_user_id(1000000));
|
|
EXPECT_EQ(10U, multiuser_get_user_id(1001000));
|
|
EXPECT_EQ(10U, multiuser_get_user_id(1010000));
|
|
EXPECT_EQ(10U, multiuser_get_user_id(1050000));
|
|
}
|
|
|
|
TEST(MultiuserTest, TestSplitApp) {
|
|
EXPECT_EQ(0U, multiuser_get_app_id(0));
|
|
EXPECT_EQ(1000U, multiuser_get_app_id(1000));
|
|
EXPECT_EQ(10000U, multiuser_get_app_id(10000));
|
|
EXPECT_EQ(50000U, multiuser_get_app_id(50000));
|
|
EXPECT_EQ(0U, multiuser_get_app_id(1000000));
|
|
EXPECT_EQ(1000U, multiuser_get_app_id(1001000));
|
|
EXPECT_EQ(10000U, multiuser_get_app_id(1010000));
|
|
EXPECT_EQ(50000U, multiuser_get_app_id(1050000));
|
|
}
|
|
|
|
TEST(MultiuserTest, TestCache) {
|
|
EXPECT_EQ(ERR_GID, multiuser_get_cache_gid(0, 0));
|
|
EXPECT_EQ(ERR_GID, multiuser_get_cache_gid(0, 1000));
|
|
EXPECT_EQ(20000U, multiuser_get_cache_gid(0, 10000));
|
|
EXPECT_EQ(ERR_GID, multiuser_get_cache_gid(0, 50000));
|
|
EXPECT_EQ(1020000U, multiuser_get_cache_gid(10, 10000));
|
|
}
|
|
|
|
TEST(MultiuserTest, TestExt) {
|
|
EXPECT_EQ(ERR_GID, multiuser_get_ext_gid(0, 0));
|
|
EXPECT_EQ(ERR_GID, multiuser_get_ext_gid(0, 1000));
|
|
EXPECT_EQ(30000U, multiuser_get_ext_gid(0, 10000));
|
|
EXPECT_EQ(ERR_GID, multiuser_get_ext_gid(0, 50000));
|
|
EXPECT_EQ(1030000U, multiuser_get_ext_gid(10, 10000));
|
|
}
|
|
|
|
TEST(MultiuserTest, TestShared) {
|
|
EXPECT_EQ(ERR_GID, multiuser_get_shared_gid(0, 0));
|
|
EXPECT_EQ(ERR_GID, multiuser_get_shared_gid(0, 1000));
|
|
EXPECT_EQ(50000U, multiuser_get_shared_gid(0, 10000));
|
|
EXPECT_EQ(ERR_GID, multiuser_get_shared_gid(0, 50000));
|
|
EXPECT_EQ(1050000U, multiuser_get_shared_gid(10, 10000));
|
|
}
|