|
@@ -38,53 +38,72 @@ public class CreateFolderTest extends ActivityInstrumentationTestCase2<TestActiv
|
|
|
*/
|
|
|
public void testCreateFolder() {
|
|
|
|
|
|
+ String folderName = "testCreateFolder" + mCurrentDate;
|
|
|
String remotePath = "/testCreateFolder" + mCurrentDate;
|
|
|
boolean createFullPath = true;
|
|
|
|
|
|
- RemoteOperationResult result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ RemoteOperationResult result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
+ assertTrue(result.isSuccess() || result.getCode() == ResultCode.TIMEOUT);
|
|
|
+
|
|
|
+ // Create Subfolder
|
|
|
+ folderName = "testCreateFolder" + mCurrentDate;
|
|
|
+ remotePath = "/testCreateFolder" + mCurrentDate + "/" + "testCreateFolder" + mCurrentDate;
|
|
|
+ createFullPath = true;
|
|
|
+
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.isSuccess() || result.getCode() == ResultCode.TIMEOUT);
|
|
|
}
|
|
|
|
|
|
+
|
|
|
/**
|
|
|
* Test to Create Folder with special characters
|
|
|
*/
|
|
|
public void testCreateFolderSpecialCharacters() {
|
|
|
boolean createFullPath = true;
|
|
|
|
|
|
+ String folderName = "testSpecialCharacters_//" + mCurrentDate;
|
|
|
String remotePath = "/testSpecialCharacters_//" + mCurrentDate;
|
|
|
- RemoteOperationResult result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ RemoteOperationResult result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_\\" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_\\" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_<" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_<" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_>" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_>" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_:" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_:" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_\"" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_\"" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_|" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_|" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_?" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_?" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
|
|
|
+ folderName = "testSpecialCharacters_*" + mCurrentDate;
|
|
|
remotePath = "/testSpecialCharacters_*" + mCurrentDate;
|
|
|
- result = mActivity.createFolder(remotePath, createFullPath);
|
|
|
+ result = mActivity.createFolder(folderName, remotePath, createFullPath);
|
|
|
assertTrue(result.getCode() == ResultCode.INVALID_CHARACTER_IN_NAME);
|
|
|
}
|
|
|
|