ulfjack | f000996 | 2018-07-23 01:19:20 -0700 | [diff] [blame] | 1 | // Copyright 2018 The Bazel Authors. All rights reserved. |
| 2 | // |
| 3 | // Licensed under the Apache License, Version 2.0 (the "License"); |
| 4 | // you may not use this file except in compliance with the License. |
| 5 | // You may obtain a copy of the License at |
| 6 | // |
| 7 | // http://www.apache.org/licenses/LICENSE-2.0 |
| 8 | // |
| 9 | // Unless required by applicable law or agreed to in writing, software |
| 10 | // distributed under the License is distributed on an "AS IS" BASIS, |
| 11 | // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. |
| 12 | // See the License for the specific language governing permissions and |
| 13 | // limitations under the License. |
| 14 | |
| 15 | package com.google.devtools.build.lib.analysis; |
| 16 | |
| 17 | import static com.google.common.truth.Truth.assertThat; |
| 18 | |
| 19 | import com.google.common.collect.Iterables; |
felly | 9b91cb4 | 2019-06-04 09:35:21 -0700 | [diff] [blame^] | 20 | import com.google.devtools.build.lib.actions.CompletionContext; |
ulfjack | f000996 | 2018-07-23 01:19:20 -0700 | [diff] [blame] | 21 | import com.google.devtools.build.lib.analysis.TopLevelArtifactHelper.ArtifactsToBuild; |
| 22 | import com.google.devtools.build.lib.analysis.util.AnalysisTestCase; |
| 23 | import com.google.devtools.build.lib.buildeventstream.BuildEvent; |
| 24 | import com.google.devtools.build.lib.buildeventstream.BuildEvent.LocalFile.LocalFileType; |
| 25 | import com.google.devtools.build.lib.cmdline.RepositoryName; |
| 26 | import com.google.devtools.build.lib.skyframe.ConfiguredTargetAndData; |
| 27 | import org.junit.Test; |
| 28 | import org.junit.runner.RunWith; |
| 29 | import org.junit.runners.JUnit4; |
| 30 | |
| 31 | /** Tests for {@link TargetCompleteEvent}. */ |
| 32 | @RunWith(JUnit4.class) |
| 33 | public class TargetCompleteEventTest extends AnalysisTestCase { |
| 34 | /** Regression test for b/111653523. */ |
| 35 | @Test |
| 36 | public void testReferencedLocalFilesIncludesBaselineCoverage() throws Exception { |
| 37 | scratch.file("java/a/BUILD", |
| 38 | "java_test(name = 'Example', srcs = ['Example.java'])"); |
| 39 | useConfiguration("--collect_code_coverage"); |
| 40 | AnalysisResult result = update("//java/a:Example"); |
| 41 | ConfiguredTarget ct = Iterables.getOnlyElement(result.getTargetsToBuild()); |
| 42 | TargetAndConfiguration tac = Iterables.getOnlyElement(result.getTopLevelTargetsWithConfigs()); |
| 43 | ConfiguredTargetAndData ctAndData = |
| 44 | new ConfiguredTargetAndData(ct, tac.getTarget(), tac.getConfiguration()); |
| 45 | TopLevelArtifactContext context = |
| 46 | new TopLevelArtifactContext(false, OutputGroupInfo.DEFAULT_GROUPS); |
| 47 | ArtifactsToBuild artifactsToBuild = |
| 48 | TopLevelArtifactHelper.getAllArtifactsToBuild(ct, context); |
| 49 | TargetCompleteEvent event = |
| 50 | TargetCompleteEvent.successfulBuild( |
tomlu | 04e9281 | 2018-08-02 11:49:08 -0700 | [diff] [blame] | 51 | ctAndData, |
felly | 9b91cb4 | 2019-06-04 09:35:21 -0700 | [diff] [blame^] | 52 | CompletionContext.FAILED_COMPLETION_CTX, |
tomlu | 04e9281 | 2018-08-02 11:49:08 -0700 | [diff] [blame] | 53 | artifactsToBuild.getAllArtifactsByOutputGroup()); |
ulfjack | f000996 | 2018-07-23 01:19:20 -0700 | [diff] [blame] | 54 | assertThat(event.referencedLocalFiles()) |
| 55 | .contains( |
| 56 | new BuildEvent.LocalFile( |
| 57 | tac |
| 58 | .getConfiguration() |
| 59 | .getTestLogsDirectory(RepositoryName.DEFAULT) |
| 60 | .getRoot() |
| 61 | .asPath() |
| 62 | .getRelative("java/a/Example/baseline_coverage.dat"), |
| 63 | LocalFileType.OUTPUT)); |
| 64 | } |
| 65 | } |