-
Notifications
You must be signed in to change notification settings - Fork 134
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MRELEASE-229] implementation of RemoveScmTagPhase, with unit test
this closes #29
- Loading branch information
Showing
3 changed files
with
352 additions
and
6 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
211 changes: 211 additions & 0 deletions
211
...se-manager/src/test/java/org/apache/maven/shared/release/phase/RemoveScmTagPhaseTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,211 @@ | ||
package org.apache.maven.shared.release.phase; | ||
|
||
/* | ||
* 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 java.util.List; | ||
|
||
import org.apache.maven.project.MavenProject; | ||
import org.apache.maven.scm.CommandParameters; | ||
import org.apache.maven.scm.ScmFileSet; | ||
import org.apache.maven.scm.command.untag.UntagScmResult; | ||
import org.apache.maven.scm.manager.ScmManager; | ||
import org.apache.maven.scm.provider.ScmProvider; | ||
import org.apache.maven.scm.repository.ScmRepository; | ||
import org.apache.maven.shared.release.ReleaseResult; | ||
import org.apache.maven.shared.release.config.ReleaseDescriptorBuilder; | ||
import org.apache.maven.shared.release.config.ReleaseUtils; | ||
import org.apache.maven.shared.release.env.DefaultReleaseEnvironment; | ||
import org.apache.maven.shared.release.scm.ReleaseScmCommandException; | ||
import org.apache.maven.shared.release.stubs.ScmManagerStub; | ||
import org.apache.maven.shared.release.util.ReleaseUtil; | ||
import org.junit.Assert; | ||
import org.junit.Rule; | ||
import org.junit.Test; | ||
import org.junit.rules.ExpectedException; | ||
import org.mockito.Matchers; | ||
import org.mockito.Mockito; | ||
|
||
/** | ||
* Test the remove SCM tag phase. | ||
*/ | ||
public class RemoveScmTagPhaseTest extends AbstractReleaseTestCase | ||
{ | ||
|
||
@Override | ||
public void setUp() throws Exception | ||
{ | ||
|
||
super.setUp(); | ||
|
||
phase = ( ReleasePhase ) lookup( ReleasePhase.class, "remove-scm-tag" ); | ||
|
||
} | ||
|
||
@Test | ||
public void testExecuteOutput() throws Exception | ||
{ | ||
|
||
// prepare | ||
ReleaseDescriptorBuilder builder = new ReleaseDescriptorBuilder(); | ||
builder.setScmReleaseLabel( "release-label" ); | ||
builder.setScmSourceUrl( "scm-url" ); | ||
List<MavenProject> reactorProjects = createReactorProjects(); | ||
MavenProject rootProject = ReleaseUtil.getRootProject( reactorProjects ); | ||
builder.setWorkingDirectory( getPath( rootProject.getFile().getParentFile() ) ); | ||
builder.setPomFileName( rootProject.getFile().getName() ); | ||
ScmFileSet fileSet = new ScmFileSet( rootProject.getFile().getParentFile() ); | ||
|
||
// mock, only real mather is the file set | ||
ScmProvider scmProviderMock = Mockito.mock( ScmProvider.class ); | ||
Mockito.when( scmProviderMock.untag( Matchers.isA( ScmRepository.class ), | ||
Matchers.argThat( new IsScmFileSetEquals( fileSet ) ), | ||
Matchers.isA( CommandParameters.class ) ) ) | ||
.thenReturn( new UntagScmResult( "...", "...", "...", true ) ); | ||
ScmManagerStub stub = ( ScmManagerStub ) lookup( ScmManager.class ); | ||
stub.setScmProvider( scmProviderMock ); | ||
|
||
// execute | ||
ReleaseResult actual = phase.execute( ReleaseUtils.buildReleaseDescriptor( builder ), | ||
new DefaultReleaseEnvironment(), reactorProjects ); | ||
|
||
// verify, actual contains trailing newline | ||
Assert.assertEquals( "[INFO] Removing tag with the label release-label ...", actual.getOutput().trim() ); | ||
|
||
} | ||
|
||
@Test | ||
public void testExecuteResultCode() throws Exception | ||
{ | ||
|
||
// prepare | ||
ReleaseDescriptorBuilder builder = new ReleaseDescriptorBuilder(); | ||
builder.setScmReleaseLabel( "release-label" ); | ||
builder.setScmSourceUrl( "scm-url" ); | ||
List<MavenProject> reactorProjects = createReactorProjects(); | ||
MavenProject rootProject = ReleaseUtil.getRootProject( reactorProjects ); | ||
builder.setWorkingDirectory( getPath( rootProject.getFile().getParentFile() ) ); | ||
builder.setPomFileName( rootProject.getFile().getName() ); | ||
ScmFileSet fileSet = new ScmFileSet( rootProject.getFile().getParentFile() ); | ||
|
||
// mock, only real mather is the file set | ||
ScmProvider scmProviderMock = Mockito.mock( ScmProvider.class ); | ||
Mockito.when( scmProviderMock.untag( Matchers.isA( ScmRepository.class ), | ||
Matchers.argThat( new IsScmFileSetEquals( fileSet ) ), | ||
Matchers.isA( CommandParameters.class ) ) ) | ||
.thenReturn( new UntagScmResult( "...", "...", "...", true ) ); | ||
ScmManagerStub stub = ( ScmManagerStub ) lookup( ScmManager.class ); | ||
stub.setScmProvider( scmProviderMock ); | ||
|
||
// execute | ||
ReleaseResult actual = phase.execute( ReleaseUtils.buildReleaseDescriptor( builder ), | ||
new DefaultReleaseEnvironment(), reactorProjects ); | ||
|
||
// verify | ||
Assert.assertEquals( 0, actual.getResultCode() ); | ||
|
||
} | ||
|
||
@Rule | ||
public ExpectedException exceptionRule = ExpectedException.none(); | ||
|
||
@Test | ||
public void testExecuteError() throws Exception | ||
{ | ||
|
||
// prepare | ||
ReleaseDescriptorBuilder builder = new ReleaseDescriptorBuilder(); | ||
builder.setScmReleaseLabel( "release-label" ); | ||
builder.setScmSourceUrl( "scm-url" ); | ||
List<MavenProject> reactorProjects = createReactorProjects(); | ||
MavenProject rootProject = ReleaseUtil.getRootProject( reactorProjects ); | ||
builder.setWorkingDirectory( getPath( rootProject.getFile().getParentFile() ) ); | ||
builder.setPomFileName( rootProject.getFile().getName() ); | ||
ScmFileSet fileSet = new ScmFileSet( rootProject.getFile().getParentFile() ); | ||
|
||
// mock, only real mather is the file set | ||
ScmProvider scmProviderMock = Mockito.mock( ScmProvider.class ); | ||
Mockito.when( scmProviderMock.untag( Matchers.isA( ScmRepository.class ), | ||
Matchers.argThat( new IsScmFileSetEquals( fileSet ) ), | ||
Matchers.isA( CommandParameters.class ) ) ) | ||
.thenReturn( new UntagScmResult( "command-line", "provider-message", "command-output", false ) ); | ||
ScmManagerStub stub = ( ScmManagerStub ) lookup( ScmManager.class ); | ||
stub.setScmProvider( scmProviderMock ); | ||
|
||
// set up exception rule | ||
exceptionRule.expect( ReleaseScmCommandException.class ); | ||
exceptionRule.expectMessage( | ||
"Unable to remove tag \nProvider message:\nprovider-message\nCommand output:\ncommand-output" ); | ||
|
||
// execute | ||
phase.execute( ReleaseUtils.buildReleaseDescriptor( builder ), | ||
new DefaultReleaseEnvironment(), reactorProjects ); | ||
|
||
} | ||
|
||
@Test | ||
public void testSimulateOutput() throws Exception | ||
{ | ||
|
||
// prepare | ||
ReleaseDescriptorBuilder builder = new ReleaseDescriptorBuilder(); | ||
builder.setScmReleaseLabel( "release-label" ); | ||
builder.setScmSourceUrl( "scm-url" ); | ||
List<MavenProject> reactorProjects = createReactorProjects(); | ||
MavenProject rootProject = ReleaseUtil.getRootProject( reactorProjects ); | ||
builder.setWorkingDirectory( getPath( rootProject.getFile().getParentFile() ) ); | ||
builder.setPomFileName( rootProject.getFile().getName() ); | ||
|
||
// execute | ||
ReleaseResult actual = phase.simulate(ReleaseUtils.buildReleaseDescriptor( builder ), | ||
new DefaultReleaseEnvironment(), reactorProjects ); | ||
|
||
// verify, actual contains newline | ||
Assert.assertEquals( "[INFO] Full run would remove tag with label: 'release-label'", | ||
actual.getOutput().trim() ); | ||
|
||
} | ||
|
||
@Test | ||
public void testSimulateResultCode() throws Exception | ||
{ | ||
|
||
// prepare | ||
ReleaseDescriptorBuilder builder = new ReleaseDescriptorBuilder(); | ||
builder.setScmReleaseLabel( "release-label" ); | ||
builder.setScmSourceUrl( "scm-url" ); | ||
List<MavenProject> reactorProjects = createReactorProjects(); | ||
MavenProject rootProject = ReleaseUtil.getRootProject( reactorProjects ); | ||
builder.setWorkingDirectory( getPath( rootProject.getFile().getParentFile() ) ); | ||
builder.setPomFileName( rootProject.getFile().getName() ); | ||
|
||
// execute | ||
ReleaseResult actual = phase.simulate( ReleaseUtils.buildReleaseDescriptor( builder ), | ||
new DefaultReleaseEnvironment(), reactorProjects ); | ||
|
||
Assert.assertEquals( 0, actual.getResultCode() ); | ||
|
||
} | ||
|
||
private List<MavenProject> createReactorProjects() throws Exception | ||
{ | ||
return createReactorProjects( "scm-commit/single-pom", "" ); | ||
} | ||
|
||
} |
36 changes: 36 additions & 0 deletions
36
...anager/src/test/resources/org/apache/maven/shared/release/phase/RemoveScmTagPhaseTest.xml
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
<!-- | ||
~ 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. | ||
--> | ||
|
||
<component-set> | ||
<components> | ||
<component> | ||
<role>org.apache.maven.scm.manager.ScmManager</role> | ||
<implementation>org.apache.maven.shared.release.stubs.ScmManagerStub</implementation> | ||
</component> | ||
<!-- Turn off info messages --> | ||
<component> | ||
<role>org.codehaus.plexus.logging.LoggerManager</role> | ||
<implementation>org.codehaus.plexus.logging.console.ConsoleLoggerManager</implementation> | ||
<lifecycle-handler>basic</lifecycle-handler> | ||
<configuration> | ||
<threshold>ERROR</threshold> | ||
</configuration> | ||
</component> | ||
</components> | ||
</component-set> |