// Copyright 2009 The Bazel Authors. All Rights Reserved. // // Licensed under the Apache License, Version 2.0 (the "License"); // you may not use this file except in compliance with the License. // You may obtain a copy of the License at // // http://www.apache.org/licenses/LICENSE-2.0 // // Unless required by applicable law or agreed to in writing, software // distributed under the License is distributed on an "AS IS" BASIS, // WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. // See the License for the specific language governing permissions and // limitations under the License. package com.google.devtools.build.lib.syntax; import static com.google.common.truth.Truth.assertThat; import com.google.common.collect.ImmutableList; import com.google.devtools.build.lib.testutil.Suite; import com.google.devtools.build.lib.testutil.TestSpec; import java.util.List; import org.junit.Test; import org.junit.runner.RunWith; import org.junit.runners.JUnit4; /** Tests for {@link GlobList} */ @TestSpec(size = Suite.SMALL_TESTS) @RunWith(JUnit4.class) public class GlobListTest { @Test public void testParse_glob() throws Exception { String expression = "glob(['abc'])"; assertThat(GlobList.parse(expression).toExpression()).isEqualTo(expression); } @Test public void testParse_multipleGlobs() throws Exception { String expression = "glob(['abc']) + glob(['def']) + glob(['ghi'])"; assertThat(GlobList.parse(expression).toExpression()).isEqualTo(expression); } @Test public void testParse_multipleLists() throws Exception { String expression = "['abc'] + ['def'] + ['ghi']"; assertThat(GlobList.parse(expression).toExpression()).isEqualTo(expression); } @Test public void testParse_complexExpression() throws Exception { String expression = "glob(['abc', 'def', 'ghi'], " + "exclude=['rst', 'uvw', 'xyz']) " + "+ glob(['abc', 'def', 'ghi'], exclude=['rst', 'uvw', 'xyz'])"; assertThat(GlobList.parse(expression).toExpression()).isEqualTo(expression); } @Test public void testConcat_GlobToGlob() throws Exception { GlobList glob1 = GlobList.parse( "glob(['abc'], exclude=['def']) + glob(['xyz'])"); GlobList glob2 = GlobList.parse( "glob(['xyzzy']) + glob(['foo'], exclude=['bar'])"); GlobList cat = GlobList.concat(glob1, glob2); assertThat(cat.toExpression()).isEqualTo(glob1.toExpression() + " + " + glob2.toExpression()); } @Test public void testConcat_GlobToList() throws Exception { GlobList glob = GlobList.parse( "glob(['abc'], exclude=['def']) + glob(['xyz'])"); List list = ImmutableList.of("xyzzy", "foo", "bar"); GlobList cat = GlobList.concat(list, glob); assertThat(cat.toExpression()) .isEqualTo("['xyzzy', 'foo', 'bar'] + glob(['abc'], exclude=['def']) + glob(['xyz'])"); } @Test public void testConcat_ListToGlob() throws Exception { GlobList glob = GlobList.parse( "glob(['abc'], exclude=['def']) + glob(['xyz'])"); List list = ImmutableList.of("xyzzy", "foo", "bar"); GlobList cat = GlobList.concat(glob, list); assertThat(cat.toExpression()) .isEqualTo("glob(['abc'], exclude=['def']) + glob(['xyz']) + ['xyzzy', 'foo', 'bar']"); } @Test public void testGetCriteria() throws Exception { List include = ImmutableList.of("abc", "def", "ghi"); List exclude = ImmutableList.of("rst", "uvw", "xyz"); List matches = ImmutableList.of("xyzzy", "foo", "bar"); GlobList glob = GlobList.captureResults(include, exclude, matches); assertThat(glob).isEqualTo(matches); ImmutableList criteria = glob.getCriteria(); assertThat(criteria).hasSize(1); assertThat(criteria.get(0).getIncludePatterns()).isEqualTo(include); assertThat(criteria.get(0).getExcludePatterns()).isEqualTo(exclude); } }