mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged HEAD-BUG-FIX (5.0/Cloud) to HEAD (5.0/Cloud)
78429: Merged EOL (5.0/Cloud) to HEAD-BUG-FIX (5.0/Cloud) 75801: ACE-2149: EOL AVM / WCM - Thorough sweep of 'avm' and 'wcm' references - Picked up on many 'deployment' and related classes and configuration - Repo starts git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@82558 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -248,28 +248,19 @@ public class FTPServerTest extends TestCase
|
||||
reply = ftp.getReplyCode();
|
||||
assertTrue(FTPReply.isPositiveCompletion(reply));
|
||||
|
||||
// expect /Alfresco directory
|
||||
// /AVM directory - avm removed
|
||||
assertTrue(files.length == 1);
|
||||
|
||||
boolean foundAVM=false;
|
||||
boolean foundAlfresco=false;
|
||||
for(FTPFile file : files)
|
||||
{
|
||||
logger.debug("file name=" + file.getName());
|
||||
assertTrue(file.isDirectory());
|
||||
|
||||
if(file.getName().equalsIgnoreCase("AVM"))
|
||||
{
|
||||
foundAVM=true;
|
||||
}
|
||||
if(file.getName().equalsIgnoreCase("Alfresco"))
|
||||
{
|
||||
foundAlfresco=true;
|
||||
}
|
||||
}
|
||||
// AVM mount point removed
|
||||
//assertTrue(foundAVM);
|
||||
assertTrue(foundAlfresco);
|
||||
|
||||
// Change to Alfresco Dir that we know exists
|
||||
@@ -568,8 +559,6 @@ public class FTPServerTest extends TestCase
|
||||
|
||||
final String TEST_DIR="/Alfresco/User Homes/" + USER_ONE;
|
||||
|
||||
final RetryingTransactionHelper tran = transactionService.getRetryingTransactionHelper();
|
||||
|
||||
FTPClient ftpOne = connectClient();
|
||||
FTPClient ftpTwo = connectClient();
|
||||
try
|
||||
@@ -666,8 +655,6 @@ public class FTPServerTest extends TestCase
|
||||
|
||||
final String TEST_DIR="/Alfresco/User Homes/" + USER_THREE;
|
||||
|
||||
final RetryingTransactionHelper tran = transactionService.getRetryingTransactionHelper();
|
||||
|
||||
FTPClient ftpOne = connectClient();
|
||||
try
|
||||
{
|
||||
|
Reference in New Issue
Block a user