blob: 6794748f8f576259292b51f3c75a44f6bca15989 [file] [log] [blame]
/*
* 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.
*/
package com.android.build.gradle.integration.library;
import static com.google.common.truth.Truth.assertThat;
import com.android.build.gradle.integration.common.fixture.GradleTestProject;
import com.android.utils.XmlUtils;
import com.android.xml.AndroidXPathFactory;
import com.google.common.io.Files;
import java.nio.charset.StandardCharsets;
import javax.xml.xpath.XPath;
import org.junit.Rule;
import org.junit.Test;
import org.w3c.dom.Document;
public class LibsTestTest {
@Rule
public GradleTestProject project =
GradleTestProject.builder().fromTestProject("libsTest").create();
@Test
public void testManifest() throws Exception {
project.execute(":lib1:assembleAndroidTest");
String manifestContent =
Files.toString(
project.file(
"lib1/build/intermediates/packaged_manifests/debugAndroidTest/AndroidManifest.xml"),
StandardCharsets.UTF_8);
Document manifest = XmlUtils.parseDocument(manifestContent, true);
XPath xPath = AndroidXPathFactory.newXPath();
final String testApkPackage = "com.android.tests.libstest.lib1.test";
assertThat(xPath.evaluate("/manifest/@package", manifest))
.named("package")
.isEqualTo(testApkPackage);
assertThat(xPath.evaluate("/manifest/instrumentation/@android:name", manifest))
.named("instrumentation-name")
.isEqualTo("android.support.test.runner.AndroidJUnitRunner");
assertThat(xPath.evaluate("/manifest/instrumentation/@android:targetPackage", manifest))
.named("targetPackage")
.isEqualTo(testApkPackage);
}
}