John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 1 | // Copyright 2017 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 | |
ulfjack | cff0dc9 | 2017-11-03 09:27:53 -0400 | [diff] [blame] | 19 | import com.google.common.collect.ImmutableMap; |
dannark | 25d5efc | 2018-04-30 09:27:58 -0700 | [diff] [blame] | 20 | import com.google.devtools.build.lib.analysis.LocationExpander.LocationFunction; |
pcloudy | 0df4d14 | 2021-09-01 01:58:07 -0700 | [diff] [blame] | 21 | import com.google.devtools.build.lib.cmdline.RepositoryMapping; |
dannark | c7c5ab1 | 2018-06-21 14:40:46 -0700 | [diff] [blame] | 22 | import com.google.devtools.build.lib.cmdline.RepositoryName; |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 23 | import java.util.ArrayList; |
| 24 | import java.util.List; |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 25 | import org.junit.Test; |
| 26 | import org.junit.runner.RunWith; |
| 27 | import org.junit.runners.JUnit4; |
| 28 | |
| 29 | /** Unit tests for {@link LocationExpander}. */ |
| 30 | @RunWith(JUnit4.class) |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 31 | public class LocationExpanderTest { |
cparsons | 963881a | 2018-10-03 14:23:55 -0700 | [diff] [blame] | 32 | private static final class Capture implements RuleErrorConsumer { |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 33 | private final List<String> warnsOrErrors = new ArrayList<>(); |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 34 | |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 35 | @Override |
| 36 | public void ruleWarning(String message) { |
| 37 | warnsOrErrors.add("WARN: " + message); |
| 38 | } |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 39 | |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 40 | @Override |
| 41 | public void ruleError(String message) { |
| 42 | warnsOrErrors.add("ERROR: " + message); |
| 43 | } |
| 44 | |
| 45 | @Override |
| 46 | public void attributeWarning(String attrName, String message) { |
| 47 | warnsOrErrors.add("WARN-" + attrName + ": " + message); |
| 48 | } |
| 49 | |
| 50 | @Override |
| 51 | public void attributeError(String attrName, String message) { |
| 52 | warnsOrErrors.add("ERROR-" + attrName + ": " + message); |
| 53 | } |
cparsons | 0dcffc5 | 2017-10-13 23:40:31 +0200 | [diff] [blame] | 54 | |
| 55 | @Override |
cparsons | 0dcffc5 | 2017-10-13 23:40:31 +0200 | [diff] [blame] | 56 | public boolean hasErrors() { |
| 57 | return !warnsOrErrors.isEmpty(); |
| 58 | } |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 59 | } |
| 60 | |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 61 | private LocationExpander makeExpander(RuleErrorConsumer ruleErrorConsumer) throws Exception { |
dannark | 25d5efc | 2018-04-30 09:27:58 -0700 | [diff] [blame] | 62 | LocationFunction f1 = new LocationFunctionBuilder("//a", false) |
| 63 | .setExecPaths(false) |
| 64 | .add("//a", "/exec/src/a") |
| 65 | .build(); |
| 66 | |
| 67 | LocationFunction f2 = new LocationFunctionBuilder("//b", true) |
| 68 | .setExecPaths(false) |
| 69 | .add("//b", "/exec/src/b") |
| 70 | .build(); |
| 71 | |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 72 | return new LocationExpander( |
| 73 | ruleErrorConsumer, |
dannark | 25d5efc | 2018-04-30 09:27:58 -0700 | [diff] [blame] | 74 | ImmutableMap.<String, LocationFunction>of( |
| 75 | "location", f1, |
dannark | c7c5ab1 | 2018-06-21 14:40:46 -0700 | [diff] [blame] | 76 | "locations", f2), |
pcloudy | 0df4d14 | 2021-09-01 01:58:07 -0700 | [diff] [blame] | 77 | RepositoryMapping.ALWAYS_FALLBACK); |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 78 | } |
| 79 | |
| 80 | private String expand(String input) throws Exception { |
| 81 | return makeExpander(new Capture()).expand(input); |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 82 | } |
| 83 | |
| 84 | @Test |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 85 | public void noExpansion() throws Exception { |
| 86 | assertThat(expand("abc")).isEqualTo("abc"); |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 87 | } |
| 88 | |
| 89 | @Test |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 90 | public void oneOrMore() throws Exception { |
dannark | 25d5efc | 2018-04-30 09:27:58 -0700 | [diff] [blame] | 91 | assertThat(expand("$(location a)")).isEqualTo("src/a"); |
| 92 | assertThat(expand("$(locations b)")).isEqualTo("src/b"); |
| 93 | assertThat(expand("---$(location a)---")).isEqualTo("---src/a---"); |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 94 | } |
| 95 | |
| 96 | @Test |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 97 | public void twoInOne() throws Exception { |
dannark | 25d5efc | 2018-04-30 09:27:58 -0700 | [diff] [blame] | 98 | assertThat(expand("$(location a) $(locations b)")).isEqualTo("src/a src/b"); |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 99 | } |
| 100 | |
| 101 | @Test |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 102 | public void notAFunction() throws Exception { |
| 103 | assertThat(expand("$(locationz a)")).isEqualTo("$(locationz a)"); |
| 104 | } |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 105 | |
ulfjack | 04509fa | 2017-10-02 14:52:14 +0200 | [diff] [blame] | 106 | @Test |
| 107 | public void missingClosingParen() throws Exception { |
| 108 | Capture capture = new Capture(); |
| 109 | String value = makeExpander(capture).expand("foo $(location a"); |
| 110 | // In case of an error, no location expansion is performed. |
| 111 | assertThat(value).isEqualTo("foo $(location a"); |
| 112 | assertThat(capture.warnsOrErrors).containsExactly("ERROR: unterminated $(location) expression"); |
| 113 | } |
| 114 | |
| 115 | // In case of errors, the exact return value is unspecified. However, we don't want to |
| 116 | // accidentally change the behavior even in this unspecified case - that's why I added a test |
| 117 | // here. |
| 118 | @Test |
| 119 | public void noExpansionOnError() throws Exception { |
| 120 | Capture capture = new Capture(); |
| 121 | String value = makeExpander(capture).expand("foo $(location a) $(location a"); |
| 122 | assertThat(value).isEqualTo("foo $(location a) $(location a"); |
| 123 | assertThat(capture.warnsOrErrors).containsExactly("ERROR: unterminated $(location) expression"); |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 124 | } |
dannark | c7c5ab1 | 2018-06-21 14:40:46 -0700 | [diff] [blame] | 125 | |
| 126 | @Test |
| 127 | public void expansionWithRepositoryMapping() throws Exception { |
| 128 | LocationFunction f1 = new LocationFunctionBuilder("//a", false) |
| 129 | .setExecPaths(false) |
| 130 | .add("@bar//a", "/exec/src/a") |
| 131 | .build(); |
| 132 | |
Googler | 80ada0f | 2021-12-22 07:15:59 -0800 | [diff] [blame^] | 133 | ImmutableMap<RepositoryName, RepositoryName> repositoryMapping = ImmutableMap.of( |
| 134 | RepositoryName.create("@foo"), |
| 135 | RepositoryName.create("@bar")); |
dannark | c7c5ab1 | 2018-06-21 14:40:46 -0700 | [diff] [blame] | 136 | |
pcloudy | 0df4d14 | 2021-09-01 01:58:07 -0700 | [diff] [blame] | 137 | LocationExpander locationExpander = |
| 138 | new LocationExpander( |
| 139 | new Capture(), |
| 140 | ImmutableMap.<String, LocationFunction>of("location", f1), |
| 141 | RepositoryMapping.createAllowingFallback(repositoryMapping)); |
dannark | c7c5ab1 | 2018-06-21 14:40:46 -0700 | [diff] [blame] | 142 | |
| 143 | String value = locationExpander.expand("$(location @foo//a)"); |
| 144 | assertThat(value).isEqualTo("src/a"); |
| 145 | } |
John Cater | aacc305 | 2017-08-01 01:17:02 +0200 | [diff] [blame] | 146 | } |