blob: f335003a54893ef2b7d84e4ec20ba8a109596ecc [file] [log] [blame]
package org.apache.maven.toolchain;
/*
* 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 static org.junit.jupiter.api.Assertions.assertEquals;
import static org.junit.jupiter.api.Assertions.assertFalse;
import static org.junit.jupiter.api.Assertions.assertNotEquals;
import static org.mockito.Mockito.mock;
import static org.mockito.Mockito.verify;
import java.util.Collections;
import org.apache.maven.toolchain.java.DefaultJavaToolChain;
import org.apache.maven.toolchain.model.ToolchainModel;
import org.codehaus.plexus.util.xml.Xpp3Dom;
import org.junit.jupiter.api.BeforeEach;
import org.junit.jupiter.api.Test;
import org.mockito.MockitoAnnotations;
import org.slf4j.Logger;
public class DefaultToolchainTest
{
private final Logger logger = mock( Logger.class );
@BeforeEach
public void setUp()
throws Exception
{
MockitoAnnotations.initMocks( this );
}
private DefaultToolchain newDefaultToolchain( ToolchainModel model )
{
return new DefaultToolchain( model, logger )
{
@Override
public String findTool( String toolName )
{
return null;
}
};
}
private DefaultToolchain newDefaultToolchain( ToolchainModel model, String type )
{
return new DefaultToolchain( model, type, logger )
{
@Override
public String findTool( String toolName )
{
return null;
}
};
}
@Test
public void testGetModel()
{
ToolchainModel model = new ToolchainModel();
DefaultToolchain toolchain = newDefaultToolchain( model );
assertEquals( model, toolchain.getModel() );
}
@Test
public void testGetType()
{
ToolchainModel model = new ToolchainModel();
DefaultToolchain toolchain = newDefaultToolchain( model, "TYPE" );
assertEquals( "TYPE", toolchain.getType() );
model.setType( "MODEL_TYPE" );
toolchain = newDefaultToolchain( model );
assertEquals( "MODEL_TYPE", toolchain.getType() );
}
@Test
public void testGetLogger()
{
ToolchainModel model = new ToolchainModel();
DefaultToolchain toolchain = newDefaultToolchain( model );
assertEquals( logger, toolchain.getLog() );
}
@Test
public void testMissingRequirementProperty()
{
ToolchainModel model = new ToolchainModel();
model.setType( "TYPE" );
DefaultToolchain toolchain = newDefaultToolchain( model );
assertFalse( toolchain.matchesRequirements( Collections.singletonMap( "name", "John Doe" ) ) );
verify( logger ).debug( "Toolchain type:TYPE{} is missing required property: name" );
}
@Test
public void testNonMatchingRequirementProperty()
{
ToolchainModel model = new ToolchainModel();
model.setType( "TYPE" );
DefaultToolchain toolchain = newDefaultToolchain( model );
toolchain.addProvideToken( "name", RequirementMatcherFactory.createExactMatcher( "Jane Doe" ) );
assertFalse( toolchain.matchesRequirements( Collections.singletonMap( "name", "John Doe" ) ) );
verify( logger ).debug( "Toolchain type:TYPE{name = Jane Doe} doesn't match required property: name" );
}
@Test
public void testEquals()
{
ToolchainModel tm1 = new ToolchainModel();
tm1.setType( "jdk" );
tm1.addProvide( "version", "1.5" );
tm1.addProvide( "vendor", "sun" );
Xpp3Dom configuration1 = new Xpp3Dom("configuration");
Xpp3Dom jdkHome1 = new Xpp3Dom( "jdkHome" );
jdkHome1.setValue("${env.JAVA_HOME}");
configuration1.addChild( jdkHome1 );
tm1.setConfiguration( configuration1 );
ToolchainModel tm2 = new ToolchainModel();
tm1.setType( "jdk" );
tm1.addProvide( "version", "1.4" );
tm1.addProvide( "vendor", "sun" );
Xpp3Dom configuration2 = new Xpp3Dom("configuration");
Xpp3Dom jdkHome2 = new Xpp3Dom( "jdkHome" );
jdkHome2.setValue("${env.JAVA_HOME}");
configuration2.addChild( jdkHome2 );
tm2.setConfiguration( configuration2 );
DefaultToolchain tc1 = new DefaultJavaToolChain( tm1, null );
DefaultToolchain tc2 = new DefaultJavaToolChain( tm2, null );
assertEquals( tc1, tc1 );
assertNotEquals( tc1, tc2 );
assertNotEquals( tc2, tc1 );
assertEquals( tc2, tc2 );
}
}