/*
* Copyright (C) 2011 John Casey.
*
* This program is free software: you can redistribute it and/or modify
* it under the terms of the GNU Affero General Public License as published by
* the Free Software Foundation, either version 3 of the License, or
* (at your option) any later version.
*
* This program is distributed in the hope that it will be useful,
* but WITHOUT ANY WARRANTY; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
* GNU Affero General Public License for more details.
*
* You should have received a copy of the GNU Affero General Public License
* along with this program. If not, see <http://www.gnu.org/licenses/>.
*/
package com.redhat.rcm.version.mgr.mod;
import static com.redhat.rcm.version.testutil.TestProjectFixture.loadModel;
import static com.redhat.rcm.version.testutil.TestProjectFixture.newVersionManagerSession;
import static org.hamcrest.CoreMatchers.equalTo;
import static org.junit.Assert.assertThat;
import org.apache.maven.model.Model;
import org.junit.Test;
import com.redhat.rcm.version.model.Project;
public class RepoRemovalModderTest
extends AbstractModderTest
{
@Test
public void removeRegularRepository()
throws Exception
{
final Model model = loadModel( "pom-with-repo.xml" );
assertThat( model.getRepositories()
.size(), equalTo( 1 ) );
final boolean changed =
new RepoRemovalModder().inject( new Project( model ),
newVersionManagerSession( workspace, reports, "-rebuild-1" ) );
assertThat( changed, equalTo( true ) );
assertThat( model.getRepositories()
.size(), equalTo( 0 ) );
}
@Test
public void removePluginRepository()
throws Exception
{
final Model model = loadModel( "pom-with-pluginRepo.xml" );
assertThat( model.getPluginRepositories()
.size(), equalTo( 1 ) );
final boolean changed =
new RepoRemovalModder().inject( new Project( model ),
newVersionManagerSession( workspace, reports, "-rebuild-1" ) );
assertThat( changed, equalTo( true ) );
assertThat( model.getPluginRepositories()
.size(), equalTo( 0 ) );
}
}