/* * 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.jvm.java; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertNotNull; import com.facebook.buck.io.ProjectFilesystem; import com.facebook.buck.rules.FakeBuildableContext; import com.facebook.buck.step.ExecutionContext; import com.facebook.buck.step.TestExecutionContext; import com.facebook.buck.testutil.integration.TemporaryPaths; import com.facebook.buck.testutil.integration.TestDataHelper; import com.facebook.buck.testutil.integration.ZipInspector; import com.facebook.buck.zip.CustomJarOutputStream; import java.io.IOException; import java.nio.file.Files; import java.nio.file.Path; import java.nio.file.Paths; import java.util.jar.JarFile; import java.util.jar.Manifest; import org.junit.Rule; import org.junit.Test; public class CalculateAbiFromClassesStepTest { @Rule public TemporaryPaths temp = new TemporaryPaths(); @Test public void shouldCalculateAbiFromAStubJar() throws InterruptedException, IOException { Path outDir = temp.newFolder().toAbsolutePath(); ProjectFilesystem filesystem = new ProjectFilesystem(outDir); Path directory = TestDataHelper.getTestDataDirectory(this); Path source = directory.resolve("prebuilt/junit.jar"); Path binJar = Paths.get("source.jar"); Files.copy(source, outDir.resolve(binJar)); Path abiJar = outDir.resolve("abi.jar"); ExecutionContext executionContext = TestExecutionContext.newInstance(); FakeBuildableContext context = new FakeBuildableContext(); new CalculateAbiFromClassesStep(context, filesystem, binJar, abiJar, false) .execute(executionContext); String seenHash = filesystem.computeSha1(Paths.get("abi.jar")).getHash(); // Hi there! This is hardcoded here because we want to make sure buck always produces the same // jar files across timezones and versions. If the test is failing because of an intentional // modification to how we produce abi .jar files, then just update the hash, otherwise please // investigate why the value is different. // NOTE: If this starts failing on CI for no obvious reason it's possible that the offset // calculation in ZipConstants.getFakeTime() does not account for DST correctly. assertEquals("52a5db02b73cfc816bd5180d98dd99997f97622d", seenHash); // Assert that the abiJar contains non-class resources (like txt files). ZipInspector inspector = new ZipInspector(abiJar); inspector.assertFileExists("LICENSE.txt"); try (JarFile jarFile = new JarFile(abiJar.toFile())) { Manifest manifest = jarFile.getManifest(); assertNotNull( manifest .getAttributes("junit/runner/BaseTestRunner.class") .getValue(CustomJarOutputStream.DIGEST_ATTRIBUTE_NAME)); } } }