blob: 1e8fec5a71a33827dee6002ac06477c63da80d9e [file] [log] [blame]
/*
* Copyright (C) 2022 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.
*/
package com.android.tests.apex.app;
import static com.google.common.truth.Truth.assertThat;
import static org.junit.Assert.assertTrue;
import android.Manifest;
import android.content.pm.PackageInfo;
import android.content.pm.PackageManager;
import androidx.test.platform.app.InstrumentationRegistry;
import com.android.cts.install.lib.Install;
import com.android.cts.install.lib.InstallUtils;
import com.android.cts.install.lib.TestApp;
import org.junit.Test;
import org.junit.runner.RunWith;
import org.junit.runners.JUnit4;
import java.nio.file.Files;
import java.nio.file.Path;
import java.nio.file.Paths;
@RunWith(JUnit4.class)
public class VendorApexTests {
private static final String TAG = "VendorApexTests";
private static final String APEX_PACKAGE_NAME = "com.android.apex.vendor.foo";
private static final TestApp Apex2Rebootless = new TestApp(
"com.android.apex.vendor.foo.v2", APEX_PACKAGE_NAME, 2,
/*isApex*/true, "com.android.apex.vendor.foo.v2.apex");
private static final TestApp Apex2RequireNativeLibs = new TestApp(
"com.android.apex.vendor.foo.v2_with_requireNativeLibs", APEX_PACKAGE_NAME, 2,
/*isApex*/true, "com.android.apex.vendor.foo.v2_with_requireNativeLibs.apex");
@Test
public void testRebootlessUpdate() throws Exception {
InstallUtils.dropShellPermissionIdentity();
InstallUtils.adoptShellPermissionIdentity(Manifest.permission.INSTALL_PACKAGE_UPDATES);
final PackageManager pm =
InstrumentationRegistry.getInstrumentation().getContext().getPackageManager();
{
PackageInfo apex = pm.getPackageInfo(APEX_PACKAGE_NAME, PackageManager.MATCH_APEX);
assertThat(apex.getLongVersionCode()).isEqualTo(1);
assertThat(apex.applicationInfo.sourceDir).startsWith("/vendor/apex");
}
Install.single(Apex2Rebootless).commit();
{
PackageInfo apex = pm.getPackageInfo(APEX_PACKAGE_NAME, PackageManager.MATCH_APEX);
assertThat(apex.getLongVersionCode()).isEqualTo(2);
assertThat(apex.applicationInfo.sourceDir).startsWith("/data/apex/active");
}
}
@Test
public void testGenerateLinkerConfigurationOnUpdate() throws Exception {
InstallUtils.dropShellPermissionIdentity();
InstallUtils.adoptShellPermissionIdentity(Manifest.permission.INSTALL_PACKAGE_UPDATES);
// There's no ld.config.txt for v1 (preinstalled, empty)
final Path ldConfigTxt = Paths.get("/linkerconfig", APEX_PACKAGE_NAME, "ld.config.txt");
assertTrue(Files.notExists(ldConfigTxt));
Install.single(Apex2RequireNativeLibs).commit();
// v2 uses "libbinder_ndk.so" (requireNativeLibs)
assertTrue(Files.exists(ldConfigTxt));
assertThat(Files.readAllLines(ldConfigTxt))
.contains("namespace.default.link.system.shared_libs += libbinder_ndk.so");
}
}