Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 1 | // 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. |
| 14 | package com.google.devtools.build.lib.packages; |
| 15 | |
lberki | aea56b3 | 2017-05-30 12:35:33 +0200 | [diff] [blame] | 16 | import static com.google.common.truth.Truth.assertThat; |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 17 | |
Lukacs Berki | 485eb96 | 2016-01-13 10:47:29 +0000 | [diff] [blame] | 18 | import com.google.devtools.build.lib.cmdline.Label; |
Mark Schaller | 0312f91 | 2016-07-22 18:45:02 +0000 | [diff] [blame] | 19 | import com.google.devtools.build.lib.cmdline.RepositoryName; |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 20 | import com.google.devtools.build.lib.events.util.EventCollectionApparatus; |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 21 | import com.google.devtools.build.lib.testutil.Scratch; |
| 22 | import com.google.devtools.build.lib.vfs.Path; |
| 23 | import com.google.devtools.build.lib.vfs.PathFragment; |
janakr | 518bb87 | 2018-10-03 15:59:28 -0700 | [diff] [blame] | 24 | import com.google.devtools.build.lib.vfs.Root; |
| 25 | import com.google.devtools.build.lib.vfs.RootedPath; |
Mark Schaller | 0312f91 | 2016-07-22 18:45:02 +0000 | [diff] [blame] | 26 | import java.util.concurrent.SynchronousQueue; |
janakr | 518bb87 | 2018-10-03 15:59:28 -0700 | [diff] [blame] | 27 | import org.junit.Before; |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 28 | import org.junit.Test; |
| 29 | import org.junit.runner.RunWith; |
| 30 | import org.junit.runners.JUnit4; |
| 31 | |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 32 | /** |
| 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) |
| 39 | public class PackageGroupStaticInitializationTest { |
| 40 | private Scratch scratch = new Scratch("/workspace"); |
| 41 | private EventCollectionApparatus events = new EventCollectionApparatus(); |
| 42 | private PackageFactoryApparatus packages = new PackageFactoryApparatus(events.reporter()); |
janakr | 518bb87 | 2018-10-03 15:59:28 -0700 | [diff] [blame] | 43 | private Root root; |
| 44 | |
| 45 | @Before |
| 46 | public void setUp() throws Exception { |
| 47 | root = Root.fromPath(scratch.dir("")); |
| 48 | } |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 49 | |
| 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 Schaller | 0312f91 | 2016-07-22 18:45:02 +0000 | [diff] [blame] | 61 | RepositoryName defaultRepoName = |
| 62 | Label.parseAbsoluteUnchecked("//context") |
| 63 | .getPackageIdentifier() |
| 64 | .getRepository(); |
| 65 | groupQueue.put(PackageSpecification.fromString(defaultRepoName, "//fruits/...")); |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 66 | } 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); |
lberki | aea56b3 | 2017-05-30 12:35:33 +0200 | [diff] [blame] | 94 | assertThat(producingThread.isAlive()).isFalse(); |
| 95 | assertThat(consumingThread.isAlive()).isFalse(); |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 96 | } |
| 97 | |
| 98 | private Package getPackage(String packageName) throws Exception { |
nharmata | b4060b6 | 2017-04-04 17:11:39 +0000 | [diff] [blame] | 99 | PathFragment buildFileFragment = PathFragment.create(packageName).getRelative("BUILD"); |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 100 | Path buildFile = scratch.resolve(buildFileFragment.getPathString()); |
janakr | 518bb87 | 2018-10-03 15:59:28 -0700 | [diff] [blame] | 101 | return packages.createPackage(packageName, RootedPath.toRootedPath(root, buildFile)); |
Han-Wen Nienhuys | 3428dc9 | 2015-10-21 15:03:34 +0000 | [diff] [blame] | 102 | } |
| 103 | |
| 104 | private PackageGroup getPackageGroup(String pkg, String name) throws Exception { |
| 105 | return (PackageGroup) getPackage(pkg).getTarget(name); |
| 106 | } |
| 107 | } |