blob: 12979dcdb4484ed482dab8301a1d3ed0e2dc35d5 [file] [log] [blame]
// Copyright 2008-2010 Victor Iacoban
//
// 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 org.zmlx.hg4idea.test;
import com.intellij.openapi.vcs.VcsTestUtil;
import com.intellij.openapi.vfs.VirtualFile;
import org.testng.annotations.Test;
import java.io.File;
public class HgRenameTest extends HgSingleUserTest {
@Test
public void testRenameUnmodifiedFile() throws Exception {
VirtualFile file = createFileInCommand("a.txt", "new file content");
runHgOnProjectRepo("commit", "-m", "added file");
renameFileInCommand(file, "b.txt");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.added("b.txt"), HgTestOutputParser.removed("a.txt"));
}
@Test
public void testRenameModifiedFile() throws Exception {
VirtualFile file = createFileInCommand("a.txt", "new file content");
runHgOnProjectRepo("commit", "-m", "added file");
VcsTestUtil.editFileInCommand(myProject, file, "modified new file content");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.modified("a.txt"));
renameFileInCommand(file, "b.txt");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.added("b.txt"), HgTestOutputParser.removed("a.txt"));
}
@Test
public void testRenameNewFile() throws Exception {
VirtualFile file = createFileInCommand("a.txt", "new file content");
renameFileInCommand(file, "b.txt");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.added("b.txt"));
}
@Test
public void testRenameRenamedFile() throws Exception {
VirtualFile file = createFileInCommand("a.txt", "new file content");
runHgOnProjectRepo("commit", "-m", "added file");
renameFileInCommand(file, "b.txt");
renameFileInCommand(file, "c.txt");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.added("c.txt"), HgTestOutputParser.removed("a.txt"));
}
@Test
public void testRenameVersionedFolder() throws Exception {
VirtualFile parent = createDirInCommand(myWorkingCopyDir, "com");
createFileInCommand(parent, "a.txt", "new file content");
runHgOnProjectRepo("commit", "-m", "added file");
renameFileInCommand(parent, "org");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.added("org", "a.txt"), HgTestOutputParser.removed("com", "a.txt"));
}
@Test
public void testRenameUnversionedFolder() throws Exception {
VirtualFile parent = createDirInCommand(myWorkingCopyDir, "com");
File unversionedFile = new File(parent.getPath(), "a.txt");
makeFile(unversionedFile);
verify(runHgOnProjectRepo("status"), HgTestOutputParser.unknown("com", "a.txt"));
renameFileInCommand(parent, "org");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.unknown("org", "a.txt"));
}
@Test
public void testRenameUnversionedFile() throws Exception {
File unversionedFile = new File(myWorkingCopyDir.getPath(), "a.txt");
VirtualFile file = makeFile(unversionedFile);
verify(runHgOnProjectRepo("status"), HgTestOutputParser.unknown("a.txt"));
renameFileInCommand(file, "b.txt");
verify(runHgOnProjectRepo("status"), HgTestOutputParser.unknown("b.txt"));
}
}