/* * Copyright 2014-present Facebook, Inc. * * 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.facebook.buck.android; import static org.junit.Assert.assertFalse; import com.facebook.buck.io.ProjectFilesystem; import com.facebook.buck.model.BuildTargetFactory; import com.facebook.buck.testutil.integration.ProjectWorkspace; import com.facebook.buck.testutil.integration.TemporaryPaths; import com.facebook.buck.testutil.integration.TestDataHelper; import java.io.IOException; import java.nio.file.Path; import org.junit.Before; import org.junit.Rule; import org.junit.Test; public class MultipleResourcePackageIntegrationTest { @Rule public TemporaryPaths tmpFolder = new TemporaryPaths(); private ProjectWorkspace workspace; private ProjectFilesystem filesystem; @Before public void setUp() throws InterruptedException, IOException { workspace = TestDataHelper.createProjectWorkspaceForScenario(this, "android_project", tmpFolder); workspace.setUp(); filesystem = new ProjectFilesystem(workspace.getDestPath()); } @Test public void testRDotJavaFilesPerPackage() throws InterruptedException, IOException { AssumeAndroidPlatform.assumeSdkIsAvailable(); workspace.runBuckBuild("//apps/sample:app_with_multiple_rdot_java_packages").assertSuccess(); Path uberRDotJavaDir = AaptPackageResources.getPathToGeneratedRDotJavaSrcFiles( BuildTargetFactory.newInstance( "//apps/sample:app_with_multiple_rdot_java_packages#aapt_package"), filesystem); String sampleRJava = workspace.getFileContents(uberRDotJavaDir.resolve("com/sample/R.java").toString()); String sample2RJava = workspace.getFileContents(uberRDotJavaDir.resolve("com/sample2/R.java").toString()); assertFalse(sampleRJava.contains("sample2_string")); assertFalse(sample2RJava.contains("app_icon")); assertFalse(sample2RJava.contains("tiny_black")); assertFalse(sample2RJava.contains("tiny_something")); assertFalse(sample2RJava.contains("tiny_white")); assertFalse(sample2RJava.contains("top_layout")); assertFalse(sample2RJava.contains("app_name")); assertFalse(sample2RJava.contains("base_button")); } }