mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-08-07 17:49:17 +00:00
Merged V3.3-BUG-FIX to HEAD
21634: Fix ALF-3822: Storing of datetime does not work 21646: ALF-3752: Getting Parent on a specific version throws exception 21655: Fix ALF-4006: Incorrect search result after renaming a folder 21659: Workaround for ALF-4230: use of flash technology to upload documents into a share site makes the use of (some) external authentication methods difficult (or impossible) - The Flash uploader can be disabled via share-config: DocumentLibary / file-upload / adobe-flash-enabled 21675: AVM - build/test fix (testSubmitUpdatedItemWithLF) 21687: Merged V3.3 to V3.3-BUG-FIX 21650: Fix for ALF-4239: Cannot open any folder that contains a node that is neither folder nor content in Share repo browser 21658: Merged HEAD to BRANCHES/V3.3: 21557: Fix ALF-4141: Cannot create relationship via OpenCMIS 21673: ALF-1905: Corrected LDAP connection validation to allow synchronization connection to use anonymous bind 21686: Merged PATCHES/V3.3.1 to V3.3 21684: ALF-4039: Use ISO 9705-style encoding to ensure that compound WCM store names do not collide when user names contain illegal characters - Previously, characters that were illegal were just replaced with _ so there could be collisions in store names - Also, the sequence -- in a user name or user names "preview" and "workflow" would have been problematic. 21535: (RECORD ONLY) Merged V3.3 to PATCHES/V3.3.1 20778: Added revision to version label. git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@21689 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
@@ -1496,6 +1496,7 @@ public class SandboxServiceImplTest extends AbstractWCMServiceImplTest
|
||||
// submit (new assets) !
|
||||
sbService.submitWebApp(authorSandboxIdA, webAppA, "A1", "A1");
|
||||
|
||||
// wait for submit to complete
|
||||
pollForSnapshotCount(stagingSandboxIdA, 1);
|
||||
|
||||
assets = sbService.listChangedWebApp(authorSandboxIdA, webAppA, false);
|
||||
@@ -1531,6 +1532,9 @@ public class SandboxServiceImplTest extends AbstractWCMServiceImplTest
|
||||
|
||||
assertEquals(1, assetService.listAssets(authorSandboxIdB, -1, authorSandboxPathB, false).size());
|
||||
|
||||
assets = sbService.listChangedWebApp(authorSandboxIdB, webAppB, false);
|
||||
assertEquals(0, assets.size());
|
||||
|
||||
// modify file
|
||||
final String MYFILE_MODIFIED = "This is testfile.txt modified in BBB";
|
||||
|
||||
@@ -1542,18 +1546,12 @@ public class SandboxServiceImplTest extends AbstractWCMServiceImplTest
|
||||
assets = sbService.listChangedWebApp(authorSandboxIdB, webAppB, false);
|
||||
assertEquals(1, assets.size());
|
||||
|
||||
// ETHREEOH_2836
|
||||
// ETHREEOH-2836
|
||||
assertEquals(AVMDifference.NEWER, assets.get(0).getDiffCode());
|
||||
|
||||
// initiate submit (modified asset)
|
||||
sbService.submitWebApp(authorSandboxIdB, webAppB, "B1", "B1");
|
||||
|
||||
assets = sbService.listChangedWebApp(authorSandboxIdB, webAppB, false);
|
||||
assertEquals(1, assets.size());
|
||||
|
||||
// ETHREEOH_2836
|
||||
assertEquals(AVMDifference.NEWER, assets.get(0).getDiffCode());
|
||||
|
||||
// wait for submit to complete
|
||||
pollForSnapshotCount(stagingSandboxIdB, 1);
|
||||
|
||||
|
Reference in New Issue
Block a user