blob: 7d1cc8e2782422fe7072026fa7a1a96a5b84348a [file] [log] [blame]
package org.apache.maven.shared.project.install.internal;
/*
* 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.mockito.Mockito.mock;
import java.io.IOException;
import org.apache.maven.project.ProjectBuildingRequest;
import org.apache.maven.shared.artifact.install.ArtifactInstallerException;
import org.apache.maven.shared.project.NoFileAssignedException;
import org.apache.maven.shared.project.install.ProjectInstaller;
import org.junit.Rule;
import org.junit.Test;
import org.junit.rules.ExpectedException;
/**
* Check the parameter contracts which have been made based on the interface {@link ProjectInstaller}.
*
* @author Karl Heinz Marbaise <a href="mailto:khmarbaise@apache.org">khmabaise@apache.org</a>
*/
public class DefaultProjectInstallerTest
{
@Rule
public ExpectedException thrown = ExpectedException.none();
@Test
public void installShouldReturnIllegalArgumentExceptionWhereBuildingRequestIsNull()
throws IOException, ArtifactInstallerException, NoFileAssignedException
{
DefaultProjectInstaller dai = new DefaultProjectInstaller();
thrown.expect( IllegalArgumentException.class );
thrown.expectMessage( "The parameter buildingRequest is not allowed to be null." );
dai.install( null, null );
}
@Test
public void installShouldReturnIllegalArgumentExceptionWhereInstallerRequestIsNull()
throws IOException, ArtifactInstallerException, NoFileAssignedException
{
DefaultProjectInstaller dai = new DefaultProjectInstaller();
thrown.expect( IllegalArgumentException.class );
thrown.expectMessage( "The parameter installerRequest is not allowed to be null." );
ProjectBuildingRequest pbr = mock( ProjectBuildingRequest.class );
dai.install( pbr, null );
}
}