// Copyright 2017 The Bazel Authors. All rights reserved. // // 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.google.devtools.build.android; import static com.google.common.truth.Truth.assertAbout; import static com.google.common.truth.Truth.assertThat; import com.google.common.collect.ImmutableList; import com.google.common.collect.ImmutableMap; import com.google.common.jimfs.Jimfs; import com.google.common.truth.Subject; import com.google.devtools.build.android.resources.JavaIdentifierValidator.InvalidJavaIdentifier; import java.io.IOException; import java.nio.file.FileSystem; import java.nio.file.Files; import java.nio.file.Path; import java.util.List; import java.util.Map; import org.junit.Before; import org.junit.Rule; import org.junit.Test; import org.junit.rules.ExpectedException; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; /** Tests for {@link AndroidResourceClassWriter}. */ @RunWith(JUnit4.class) public class AndroidResourceClassWriterTest { private FileSystem fs; @Rule public final ExpectedException thrown = ExpectedException.none(); private static final AndroidFrameworkAttrIdProvider mockAndroidFrameworkIds = new MockAndroidFrameworkAttrIdProvider(ImmutableMap.of()); @Before public void createCleanEnvironment() { fs = Jimfs.newFileSystem(); } @Test public void simpleIdFromLayout() throws Exception { Path target = fs.getPath("target"); Path source = fs.getPath("source"); AndroidResourceClassWriter resourceClassWriter = AndroidResourceClassWriter.of(mockAndroidFrameworkIds, target, "com.carroll.lewis"); ParsedAndroidData direct = AndroidDataBuilder.of(source) .addResource( "layout/some_layout.xml", AndroidDataBuilder.ResourceType.LAYOUT, "", "