blob: 77b4a081111111b486fd7cd5be67dc03ef750f09 [file] [log] [blame]
ulfjackf0009962018-07-23 01:19:20 -07001// 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
15package com.google.devtools.build.lib.analysis;
16
17import static com.google.common.truth.Truth.assertThat;
18
19import com.google.common.collect.Iterables;
felly9b91cb42019-06-04 09:35:21 -070020import com.google.devtools.build.lib.actions.CompletionContext;
ulfjackf0009962018-07-23 01:19:20 -070021import com.google.devtools.build.lib.analysis.TopLevelArtifactHelper.ArtifactsToBuild;
22import com.google.devtools.build.lib.analysis.util.AnalysisTestCase;
23import com.google.devtools.build.lib.buildeventstream.BuildEvent;
24import com.google.devtools.build.lib.buildeventstream.BuildEvent.LocalFile.LocalFileType;
25import com.google.devtools.build.lib.cmdline.RepositoryName;
26import com.google.devtools.build.lib.skyframe.ConfiguredTargetAndData;
27import org.junit.Test;
28import org.junit.runner.RunWith;
29import org.junit.runners.JUnit4;
30
31/** Tests for {@link TargetCompleteEvent}. */
32@RunWith(JUnit4.class)
33public 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(
tomlu04e92812018-08-02 11:49:08 -070051 ctAndData,
felly9b91cb42019-06-04 09:35:21 -070052 CompletionContext.FAILED_COMPLETION_CTX,
tomlu04e92812018-08-02 11:49:08 -070053 artifactsToBuild.getAllArtifactsByOutputGroup());
ulfjackf0009962018-07-23 01:19:20 -070054 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}