blob: 0af39b0958048b31ef3cff95ba1d3c3b7a752361 [file] [log] [blame]
/*
* Copyright 2000-2013 JetBrains s.r.o.
*
* Licensed 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.
*/
package hg4idea.test.history;
import com.intellij.openapi.util.io.FileUtil;
import com.intellij.openapi.vfs.VfsUtilCore;
import com.intellij.openapi.vfs.VirtualFile;
import hg4idea.test.HgPlatformTest;
import org.zmlx.hg4idea.HgFile;
import org.zmlx.hg4idea.HgFileRevision;
import org.zmlx.hg4idea.command.HgLogCommand;
import org.zmlx.hg4idea.execution.HgCommandException;
import org.zmlx.hg4idea.util.HgUtil;
import java.io.File;
import java.util.List;
import static com.intellij.openapi.vcs.Executor.*;
import static hg4idea.test.HgExecutor.hg;
/**
* @author Nadya Zabrodina
*/
public class HgHistoryTest extends HgPlatformTest {
static final String[] names = {"f1.txt", "f2.txt", "f3.txt"};
static final String subDirName = "sub";
@Override
protected void setUp() throws Exception {
super.setUp();
cd(myRepository);
File hgrc = new File(new File(myRepository.getPath(), ".hg"), "hgrc");
FileUtil.appendToFile(hgrc, "[extensions]\n" +
"largefiles=!\n");
mkdir(subDirName);
cd(subDirName);
touch(names[0], "f1");
myRepository.refresh(false, true);
hg("add " + names[0]);
hg("commit -m a");
for (int i = 1; i < names.length; ++i) {
hg("mv " + names[i - 1] + " " + names[i]);
myRepository.refresh(false, true);
echo(names[i], "f" + i);
hg("commit -m a ");
}
}
public void testFileNameInTargetRevisionAfterRename() throws HgCommandException {
cd(myRepository);
int namesSize = names.length;
VirtualFile subDir = myRepository.findFileByRelativePath(subDirName);
assert subDir != null;
VirtualFile vFile = subDir.findFileByRelativePath(names[namesSize - 1]);
assert vFile != null;
HgFile hgFile = new HgFile(myRepository, VfsUtilCore.virtualToIoFile(vFile));
HgLogCommand logCommand = new HgLogCommand(myProject);
logCommand.setFollowCopies(true);
List<HgFileRevision> revisions = logCommand.execute(hgFile, -1, true);
for (int i = 0; i < revisions.size(); ++i) {
HgFile expectedFile = new HgFile(myRepository, new File(subDir.getPath(), names[namesSize - i - 1]));
HgFile targetFileName = HgUtil.getFileNameInTargetRevision(myProject, revisions.get(i).getRevisionNumber(), hgFile);
assertEquals(expectedFile.getRelativePath(),
targetFileName.getRelativePath());
}
}
public void testFileNameInTargetRevisionAfterUpdate() throws HgCommandException {
cd(myRepository);
//update to parent revision
hg("update -r .^");
//update filenames size which is in use
int namesSize = names.length - 1;
//find file with parent revision name
VirtualFile subDir = myRepository.findFileByRelativePath(subDirName);
assert subDir != null;
VirtualFile vFile = subDir.findFileByRelativePath(names[namesSize - 1]);
assert vFile != null;
HgFile hgFile = new HgFile(myRepository, VfsUtilCore.virtualToIoFile(vFile));
HgLogCommand logCommand = new HgLogCommand(myProject);
logCommand.setFollowCopies(true);
List<HgFileRevision> revisions = logCommand.execute(hgFile, -1, true);
for (int i = 0; i < revisions.size(); ++i) {
HgFile expectedFile = new HgFile(myRepository, new File(subDir.getPath(), names[namesSize - i - 1]));
HgFile targetFileName = HgUtil.getFileNameInTargetRevision(myProject, revisions.get(i).getRevisionNumber(), hgFile);
assertEquals(expectedFile.getRelativePath(),
targetFileName.getRelativePath());
}
}
public void testFileNameInTargetRevisionFromAffectedFiles() throws HgCommandException {
cd(myRepository);
int namesSize = names.length;
VirtualFile subDir = myRepository.findFileByRelativePath(subDirName);
assert subDir != null;
VirtualFile currentVirtualFile = subDir.findFileByRelativePath(names[namesSize - 1]);
assert currentVirtualFile != null;
HgFile localFile = new HgFile(myRepository, VfsUtilCore.virtualToIoFile(currentVirtualFile));
HgLogCommand logCommand = new HgLogCommand(myProject);
logCommand.setFollowCopies(true);
List<HgFileRevision> revisions = logCommand.execute(localFile, -1, true);
for (int i = 0; i < namesSize; ++i) {
HgFile hgFile = new HgFile(myRepository, new File(subDir.getPath(), names[namesSize - i - 1]));
HgFile targetFileName = HgUtil.getFileNameInTargetRevision(myProject, revisions.get(i).getRevisionNumber(), hgFile);
assertEquals(hgFile.getRelativePath(),
targetFileName.getRelativePath());
}
}
}