mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 22:51:17 +07:00
60 lines
2.4 KiB
Java
60 lines
2.4 KiB
Java
// Copyright 2000-2021 JetBrains s.r.o. and contributors. Use of this source code is governed by the Apache 2.0 license that can be found in the LICENSE file.
|
|
package org.jetbrains.idea.svn;
|
|
|
|
import com.intellij.execution.process.ProcessOutput;
|
|
import com.intellij.openapi.vfs.VirtualFile;
|
|
import com.intellij.testFramework.vcs.TestClientRunner;
|
|
|
|
import java.io.IOException;
|
|
|
|
import static com.intellij.openapi.vfs.VfsUtilCore.virtualToIoFile;
|
|
|
|
public class SvnClientRunnerImpl implements SvnClientRunner {
|
|
private final TestClientRunner myTestClientRunner;
|
|
|
|
public SvnClientRunnerImpl(final TestClientRunner testClientRunner) {
|
|
myTestClientRunner = testClientRunner;
|
|
}
|
|
|
|
@Override
|
|
public ProcessOutput runSvn(final VirtualFile file, String... commandLine) throws IOException {
|
|
return myTestClientRunner.runClient("svn", null, virtualToIoFile(file), commandLine);
|
|
}
|
|
|
|
@Override
|
|
public void checkin(final VirtualFile file) throws IOException {
|
|
SvnTestCase.runInAndVerifyIgnoreOutput(virtualToIoFile(file), myTestClientRunner, new String[]{"ci", "-m", "test", file.getPath()});
|
|
}
|
|
|
|
@Override
|
|
public void update(final VirtualFile file) throws IOException {
|
|
SvnTestCase.runInAndVerifyIgnoreOutput(virtualToIoFile(file), myTestClientRunner,
|
|
new String[]{"up", "--accept", "postpone", file.getPath()});
|
|
}
|
|
|
|
@Override
|
|
public void checkout(final String repoUrl, final VirtualFile file) throws IOException {
|
|
SvnTestCase.runInAndVerifyIgnoreOutput(virtualToIoFile(file), myTestClientRunner, new String[]{"co", repoUrl, file.getPath()});
|
|
}
|
|
|
|
@Override
|
|
public void add(VirtualFile root, String path) throws IOException {
|
|
SvnTestCase.runInAndVerifyIgnoreOutput(virtualToIoFile(root), myTestClientRunner, new String[]{"add", path});
|
|
}
|
|
|
|
@Override
|
|
public void delete(VirtualFile root, String path) throws IOException {
|
|
SvnTestCase.runInAndVerifyIgnoreOutput(virtualToIoFile(root), myTestClientRunner, new String[]{"delete", path});
|
|
}
|
|
|
|
@Override
|
|
public void copyOrMove(VirtualFile root, String from, String to, boolean isMove) throws IOException {
|
|
SvnTestCase.runInAndVerifyIgnoreOutput(virtualToIoFile(root), myTestClientRunner, new String[]{isMove ? "move" : "copy", from, to});
|
|
}
|
|
|
|
@Override
|
|
public void testSvnVersion(VirtualFile root) throws IOException {
|
|
SvnTestCase.runInAndVerifyIgnoreOutput(virtualToIoFile(root), myTestClientRunner, new String[]{"--version"});
|
|
}
|
|
}
|