blob: b005079cab7026edd9f30a8b43f65d847f502e87 [file] [log] [blame]
package org.apache.maven.plugins.enforcer;
/*
* 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.
*/
import org.apache.commons.lang3.SystemUtils;
import org.apache.maven.enforcer.rule.api.EnforcerRuleException;
import org.apache.maven.enforcer.rule.api.EnforcerRuleHelper;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import static org.junit.jupiter.api.Assertions.assertThrows;
import static org.hamcrest.MatcherAssert.assertThat;
import static org.hamcrest.Matchers.is;
import java.util.Arrays;
import java.util.Collections;
/**
* The Class TestRequireJavaVendor.
*
* @author Tim Sijstermans
*/
public class TestRequireJavaVendor
{
private static final String NON_MATCHING_VENDOR = "non-matching-vendor";
private RequireJavaVendor underTest;
@BeforeEach
public void prepareTest()
{
underTest = new RequireJavaVendor();
}
@Test
public void matchingInclude()
throws EnforcerRuleException
{
// Set the required vendor to the current system vendor
underTest.setIncludes( Collections.singletonList( SystemUtils.JAVA_VENDOR ) );
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
underTest.execute( helper );
// No assert and no expected exception because this test should not fail
}
@Test
public void nonMatchingInclude()
{
// Set the included vendor to something irrelevant
underTest.setIncludes( Collections.singletonList( NON_MATCHING_VENDOR ) );
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
EnforcerRuleException e = assertThrows( EnforcerRuleException.class, () -> underTest.execute( helper ) );
assertThat( e.getMessage(), is( SystemUtils.JAVA_VENDOR + " is not an included Required Java Vendor" ) );
}
@Test
public void matchingExclude()
{
// Set the excluded vendor to current vendor name
underTest.setExcludes( Collections.singletonList( SystemUtils.JAVA_VENDOR ) );
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
EnforcerRuleException e = assertThrows( EnforcerRuleException.class, () -> underTest.execute( helper ) );
assertThat( e.getMessage(), is( SystemUtils.JAVA_VENDOR + " is an excluded Required Java Vendor" ) );
}
@Test
public void nonMatchingExclude()
throws EnforcerRuleException
{
// Set the excluded vendor to something nonsensical
underTest.setExcludes( Collections.singletonList( NON_MATCHING_VENDOR ) );
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
underTest.execute( helper );
// No assert and no expected exception because this test should not fail
}
@Test
public void matchingIncludeAndMatchingExclude()
{
underTest.setExcludes( Collections.singletonList( SystemUtils.JAVA_VENDOR ) );
underTest.setIncludes( Collections.singletonList( SystemUtils.JAVA_VENDOR ) );
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
EnforcerRuleException e = assertThrows( EnforcerRuleException.class, () -> underTest.execute( helper ) );
assertThat( e.getMessage(), is( SystemUtils.JAVA_VENDOR + " is an excluded Required Java Vendor" ) );
}
@Test
public void matchAnyExclude()
{
// Set a bunch of excluded vendors
underTest.setExcludes( Arrays.asList( SystemUtils.JAVA_VENDOR, SystemUtils.JAVA_VENDOR + "modified" ) );
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
EnforcerRuleException e = assertThrows( EnforcerRuleException.class, () -> underTest.execute( helper ) );
assertThat( e.getMessage(), is( SystemUtils.JAVA_VENDOR + " is an excluded Required Java Vendor" ) );
}
@Test
public void matchAnyInclude()
throws EnforcerRuleException
{
// Set a bunch of included vendors
underTest.setIncludes( Arrays.asList( SystemUtils.JAVA_VENDOR, SystemUtils.JAVA_VENDOR + "modified" ) );
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
underTest.execute( helper );
// No assert and no expected exception because this test should not fail
}
@Test
public void defaultRule()
throws EnforcerRuleException
{
final EnforcerRuleHelper helper = EnforcerTestUtils.getHelper();
underTest.execute( helper );
// No assert and no expected exception because this test should not fail
}
}