mirror of
https://github.com/scm-manager/scm-manager.git
synced 2026-05-06 04:07:47 +02:00
Added force to push command for git and hg repos
Committed-by: Rene Pfeuffer <rene.pfeuffer@cloudogu.com>
This commit is contained in:
committed by
René Pfeuffer
parent
a608a0df80
commit
b2472d85d0
@@ -26,25 +26,22 @@ package sonia.scm.repository.spi;
|
||||
|
||||
//~--- non-JDK imports --------------------------------------------------------
|
||||
|
||||
import com.google.common.base.Strings;
|
||||
import org.javahg.Changeset;
|
||||
import org.javahg.commands.ExecutionException;
|
||||
import com.google.common.base.Strings;
|
||||
import org.slf4j.Logger;
|
||||
import org.slf4j.LoggerFactory;
|
||||
import sonia.scm.repository.HgRepositoryHandler;
|
||||
import sonia.scm.repository.api.ImportFailedException;
|
||||
import sonia.scm.repository.api.PushFailedException;
|
||||
import sonia.scm.repository.api.PushResponse;
|
||||
|
||||
import javax.inject.Inject;
|
||||
import java.io.IOException;
|
||||
import java.util.List;
|
||||
|
||||
import static sonia.scm.ContextEntry.ContextBuilder.entity;
|
||||
|
||||
//~--- JDK imports ------------------------------------------------------------
|
||||
|
||||
/**
|
||||
*
|
||||
* @author Sebastian Sdorra
|
||||
*/
|
||||
public class HgPushCommand extends AbstractHgPushOrPullCommand implements PushCommand {
|
||||
@@ -74,9 +71,17 @@ public class HgPushCommand extends AbstractHgPushOrPullCommand implements PushCo
|
||||
List<Changeset> result;
|
||||
|
||||
try {
|
||||
result = org.javahg.commands.PushCommand.on(open()).execute(url);
|
||||
result = builder.call(() -> {
|
||||
org.javahg.commands.PushCommand hgPush = org.javahg.commands.PushCommand.on(open());
|
||||
|
||||
if (request.isForce()) {
|
||||
hgPush.force();
|
||||
}
|
||||
|
||||
return hgPush.execute(url);
|
||||
});
|
||||
} catch (ExecutionException ex) {
|
||||
throw new ImportFailedException(entity(getRepository()).build(), "could not execute pull command", ex);
|
||||
throw new PushFailedException(getRepository());
|
||||
}
|
||||
|
||||
return new PushResponse(result.size());
|
||||
|
||||
@@ -64,7 +64,8 @@ public class HgRepositoryServiceProvider extends RepositoryServiceProvider {
|
||||
public static final Set<Feature> FEATURES = EnumSet.of(
|
||||
Feature.COMBINED_DEFAULT_BRANCH,
|
||||
Feature.MODIFICATIONS_BETWEEN_REVISIONS,
|
||||
Feature.INCOMING_REVISION
|
||||
Feature.INCOMING_REVISION,
|
||||
Feature.FORCE_PUSH
|
||||
);
|
||||
|
||||
private final Injector commandInjector;
|
||||
|
||||
@@ -0,0 +1,110 @@
|
||||
/*
|
||||
* MIT License
|
||||
*
|
||||
* Copyright (c) 2020-present Cloudogu GmbH and Contributors
|
||||
*
|
||||
* Permission is hereby granted, free of charge, to any person obtaining a copy
|
||||
* of this software and associated documentation files (the "Software"), to deal
|
||||
* in the Software without restriction, including without limitation the rights
|
||||
* to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
|
||||
* copies of the Software, and to permit persons to whom the Software is
|
||||
* furnished to do so, subject to the following conditions:
|
||||
*
|
||||
* The above copyright notice and this permission notice shall be included in all
|
||||
* copies or substantial portions of the Software.
|
||||
*
|
||||
* THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
|
||||
* IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
|
||||
* FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
|
||||
* AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
|
||||
* LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
|
||||
* OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
|
||||
* SOFTWARE.
|
||||
*/
|
||||
|
||||
package sonia.scm.repository.spi;
|
||||
|
||||
import org.javahg.Changeset;
|
||||
import org.junit.Test;
|
||||
import sonia.scm.config.ScmConfiguration;
|
||||
import sonia.scm.net.GlobalProxyConfiguration;
|
||||
import sonia.scm.repository.HgConfigResolver;
|
||||
import sonia.scm.repository.HgTestUtil;
|
||||
import sonia.scm.repository.api.PushFailedException;
|
||||
import sonia.scm.repository.api.PushResponse;
|
||||
|
||||
import java.io.IOException;
|
||||
|
||||
import static org.assertj.core.api.Assertions.assertThat;
|
||||
import static org.assertj.core.api.Assertions.assertThatThrownBy;
|
||||
|
||||
public class HgPushCommandTest extends IncomingOutgoingTestBase {
|
||||
|
||||
@Test
|
||||
public void testPush() throws IOException {
|
||||
writeNewFile(outgoing, outgoingDirectory, "a.txt", "content of a.txt");
|
||||
Changeset o1 = commit(outgoing, "added a");
|
||||
|
||||
writeNewFile(outgoing, outgoingDirectory, "b.txt", "content of b.txt");
|
||||
Changeset o2 = commit(outgoing, "added b");
|
||||
|
||||
HgPushCommand cmd = createPushCommand();
|
||||
PushCommandRequest request = new PushCommandRequest();
|
||||
request.setRemoteRepository(incomingRepository);
|
||||
|
||||
PushResponse response = cmd.push(request);
|
||||
assertThat(response).isNotNull();
|
||||
assertThat(response.getChangesetCount()).isEqualTo(2);
|
||||
|
||||
assertThat(incoming.changeset(o1.getNode())).isNotNull();
|
||||
assertThat(incoming.changeset(o2.getNode())).isNotNull();
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testForcePush() throws IOException {
|
||||
writeNewFile(outgoing, outgoingDirectory, "a.txt", "content of a.txt");
|
||||
Changeset outgoingCommit = commit(outgoing, "added a");
|
||||
|
||||
writeNewFile(incoming, incomingDirectory, "a.txt", "conflicting change of a.txt");
|
||||
commit(incoming, "changed a");
|
||||
|
||||
HgPushCommand cmd = createPushCommand();
|
||||
PushCommandRequest request = new PushCommandRequest();
|
||||
request.setRemoteRepository(incomingRepository);
|
||||
request.setForce(true);
|
||||
|
||||
PushResponse response = cmd.push(request);
|
||||
assertThat(response).isNotNull();
|
||||
assertThat(response.getChangesetCount()).isEqualTo(1);
|
||||
|
||||
assertThat(incoming.tip().getNode()).isEqualTo(outgoingCommit.getNode());
|
||||
}
|
||||
|
||||
@Test
|
||||
public void testFailedPushBecauseOfConflict() throws IOException {
|
||||
writeNewFile(outgoing, outgoingDirectory, "a.txt", "content of a.txt");
|
||||
commit(outgoing, "added a");
|
||||
|
||||
writeNewFile(incoming, incomingDirectory, "a.txt", "conflicting change of a.txt");
|
||||
Changeset incomingCommit = commit(incoming, "changed a");
|
||||
|
||||
HgPushCommand cmd = createPushCommand();
|
||||
PushCommandRequest request = new PushCommandRequest();
|
||||
request.setRemoteRepository(incomingRepository);
|
||||
|
||||
assertThatThrownBy(() -> cmd.push(request))
|
||||
.isInstanceOf(PushFailedException.class)
|
||||
.hasMessageContaining("Failed to push");
|
||||
|
||||
assertThat(incoming.tip().getNode()).isEqualTo(incomingCommit.getNode());
|
||||
}
|
||||
|
||||
private HgPushCommand createPushCommand() {
|
||||
HgConfigResolver resolver = new HgConfigResolver(handler);
|
||||
return new HgPushCommand(
|
||||
handler,
|
||||
new HgCommandContext(resolver, HgTestUtil.createFactory(handler, outgoingDirectory), outgoingRepository),
|
||||
new TemporaryConfigFactory(new GlobalProxyConfiguration(new ScmConfiguration()))
|
||||
);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user