blob: faf59290f0afc3516903d3fa9737d752b4ab21aa [file]
/*
* Licensed to the Apache Software Foundation (ASF) under one
* or more contributor license agreements. See the NOTICE file
* distributed with this work for additional information
* regarding copyright ownership. The ASF licenses this file
* to you 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 org.apache.maven.plugins.ejb;
import java.util.Arrays;
import java.util.Collections;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertArrayEquals;
class IncludesExcludesTest {
@Test
void emptyListsShouldResultInZeroSizeResults() {
IncludesExcludes ie = new IncludesExcludes(
Collections.<String>emptyList(), Collections.<String>emptyList(),
Collections.<String>emptyList(), Collections.<String>emptyList());
assertArrayEquals(new String[0], ie.resultingIncludes());
assertArrayEquals(new String[0], ie.resultingExcludes());
}
@Test
void nullForIncludesShouldResultInZeroSizeResults() {
IncludesExcludes ie = new IncludesExcludes(
null,
Collections.<String>emptyList(),
Collections.<String>emptyList(),
Collections.<String>emptyList());
assertArrayEquals(new String[0], ie.resultingIncludes());
assertArrayEquals(new String[0], ie.resultingExcludes());
}
@Test
void nullForExcludesShouldResultInZeroSizeResults() {
IncludesExcludes ie = new IncludesExcludes(
Collections.<String>emptyList(),
null,
Collections.<String>emptyList(),
Collections.<String>emptyList());
assertArrayEquals(new String[0], ie.resultingIncludes());
assertArrayEquals(new String[0], ie.resultingExcludes());
}
@Test
void nonNullForDefaultExcludesShouldResultInExcludesWithDefaultExcludes() {
IncludesExcludes ie =
new IncludesExcludes(null, null, Collections.<String>emptyList(), Arrays.asList("**/package.html"));
assertArrayEquals(new String[0], ie.resultingIncludes());
assertArrayEquals(new String[] {"**/package.html"}, ie.resultingExcludes());
}
@Test
void nonNullForDefaultIncludesShouldResultInIncludesWithDefaultIncludes() {
IncludesExcludes ie =
new IncludesExcludes(null, null, Arrays.asList("**/package.html"), Collections.<String>emptyList());
assertArrayEquals(new String[] {"**/package.html"}, ie.resultingIncludes());
assertArrayEquals(new String[0], ie.resultingExcludes());
}
@Test
void nonNullIncludesShouldResultInTheSameIncludes() {
IncludesExcludes ie = new IncludesExcludes(
Arrays.asList("**/package.html"), null,
Arrays.asList("**/site.html"), null);
assertArrayEquals(new String[] {"**/package.html"}, ie.resultingIncludes());
}
@Test
void nonNullExcludesShouldResultInTheSameExcludes() {
IncludesExcludes ie = new IncludesExcludes(
null, Arrays.asList("**/package.html"),
null, Arrays.asList("**/site.html"));
assertArrayEquals(new String[] {"**/package.html"}, ie.resultingExcludes());
}
}