blob: 7acef7ee85a92fc22ad8b75af2bfca1a1b1f8e24 [file] [log] [blame]
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +00001// Copyright 2015 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.
14package com.google.devtools.build.lib.packages;
15
lberkiaea56b32017-05-30 12:35:33 +020016import static com.google.common.truth.Truth.assertThat;
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000017
Lukacs Berki485eb962016-01-13 10:47:29 +000018import com.google.devtools.build.lib.cmdline.Label;
Mark Schaller0312f912016-07-22 18:45:02 +000019import com.google.devtools.build.lib.cmdline.RepositoryName;
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000020import com.google.devtools.build.lib.events.util.EventCollectionApparatus;
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000021import com.google.devtools.build.lib.testutil.Scratch;
22import com.google.devtools.build.lib.vfs.Path;
23import com.google.devtools.build.lib.vfs.PathFragment;
janakr518bb872018-10-03 15:59:28 -070024import com.google.devtools.build.lib.vfs.Root;
25import com.google.devtools.build.lib.vfs.RootedPath;
Mark Schaller0312f912016-07-22 18:45:02 +000026import java.util.concurrent.SynchronousQueue;
janakr518bb872018-10-03 15:59:28 -070027import org.junit.Before;
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000028import org.junit.Test;
29import org.junit.runner.RunWith;
30import org.junit.runners.JUnit4;
31
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000032/**
33 * Checks against a class initialization deadlock. "query sometimes hangs".
34 *
35 * <p>This requires static initialization of PackageGroup and PackageSpecification
36 * to occur in a multithreaded context, and therefore must be in its own class.
37 */
38@RunWith(JUnit4.class)
39public class PackageGroupStaticInitializationTest {
40 private Scratch scratch = new Scratch("/workspace");
41 private EventCollectionApparatus events = new EventCollectionApparatus();
42 private PackageFactoryApparatus packages = new PackageFactoryApparatus(events.reporter());
janakr518bb872018-10-03 15:59:28 -070043 private Root root;
44
45 @Before
46 public void setUp() throws Exception {
47 root = Root.fromPath(scratch.dir(""));
48 }
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000049
50 @Test
51 public void testNoDeadlockOnPackageGroupCreation() throws Exception {
52 scratch.file("fruits/BUILD", "package_group(name = 'mango', packages = ['//...'])");
53
54 final SynchronousQueue<PackageSpecification> groupQueue = new SynchronousQueue<>();
55 Thread producingThread =
56 new Thread(
57 new Runnable() {
58 @Override
59 public void run() {
60 try {
Mark Schaller0312f912016-07-22 18:45:02 +000061 RepositoryName defaultRepoName =
62 Label.parseAbsoluteUnchecked("//context")
63 .getPackageIdentifier()
64 .getRepository();
65 groupQueue.put(PackageSpecification.fromString(defaultRepoName, "//fruits/..."));
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000066 } catch (Exception e) {
67 // Can't throw from Runnable, but this will cause the test to timeout
68 // when the consumer can't take the object.
69 e.printStackTrace();
70 }
71 }
72 });
73
74 Thread consumingThread =
75 new Thread(
76 new Runnable() {
77 @Override
78 public void run() {
79 try {
80 getPackageGroup("fruits", "mango");
81 groupQueue.take();
82 } catch (Exception e) {
83 // Can't throw from Runnable, but this will cause the test to timeout
84 // when the producer can't put the object.
85 e.printStackTrace();
86 }
87 }
88 });
89
90 consumingThread.start();
91 producingThread.start();
92 producingThread.join(3000);
93 consumingThread.join(3000);
lberkiaea56b32017-05-30 12:35:33 +020094 assertThat(producingThread.isAlive()).isFalse();
95 assertThat(consumingThread.isAlive()).isFalse();
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +000096 }
97
98 private Package getPackage(String packageName) throws Exception {
nharmatab4060b62017-04-04 17:11:39 +000099 PathFragment buildFileFragment = PathFragment.create(packageName).getRelative("BUILD");
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +0000100 Path buildFile = scratch.resolve(buildFileFragment.getPathString());
janakr518bb872018-10-03 15:59:28 -0700101 return packages.createPackage(packageName, RootedPath.toRootedPath(root, buildFile));
Han-Wen Nienhuys3428dc92015-10-21 15:03:34 +0000102 }
103
104 private PackageGroup getPackageGroup(String pkg, String name) throws Exception {
105 return (PackageGroup) getPackage(pkg).getTarget(name);
106 }
107}