mirror of
https://github.com/Alfresco/alfresco-community-repo.git
synced 2025-07-07 18:25:23 +00:00
17667: Branch for SpringSurf integration - from HEAD r17665 17668: Fix to ensure included scripts files are not loaded from a cached classpath loader. 17670: Part 1 of SpringSurf integration - changes relating to spring-surf-core-1.0.0.CI-SNAPSHOT.jar 17674: Part 2 of SpringSurf integration - changes relating to spring-surf-core-configservice-1.0.0.CI-SNAPSHOT.jar git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@17788 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
45 lines
1.5 KiB
Java
45 lines
1.5 KiB
Java
/**
|
|
*
|
|
*/
|
|
package org.alfresco.repo.avm.util;
|
|
|
|
import java.util.List;
|
|
|
|
import org.alfresco.repo.avm.AVMNodeConverter;
|
|
import org.springframework.extensions.surf.util.Pair;
|
|
|
|
import junit.framework.TestCase;
|
|
|
|
/**
|
|
* Test out stuffing and unstuffing Version/Paths
|
|
* @author britt
|
|
*/
|
|
public class VersionPathTest extends TestCase
|
|
{
|
|
public void testVersionPath()
|
|
{
|
|
VersionPathStuffer stuffer = new VersionPathStuffer();
|
|
stuffer.add(-1, "figs:/bottom/top");
|
|
stuffer.add(1, "piggy:/back/ride");
|
|
stuffer.add(2, "main:/boring/path/to/nowhere");
|
|
String stuffed = stuffer.toString();
|
|
VersionPathUnstuffer unstuffer = new VersionPathUnstuffer(stuffed);
|
|
List<Pair<Integer, String>> items = unstuffer.getVersionPaths();
|
|
assertEquals(3, items.size());
|
|
assertEquals(-1, (int)items.get(0).getFirst());
|
|
assertEquals("figs:/bottom/top", items.get(0).getSecond());
|
|
assertEquals(1, (int)items.get(1).getFirst());
|
|
assertEquals("piggy:/back/ride", items.get(1).getSecond());
|
|
assertEquals(2, (int)items.get(2).getFirst());
|
|
assertEquals("main:/boring/path/to/nowhere", items.get(2).getSecond());
|
|
stuffer = new VersionPathStuffer();
|
|
for (Pair<Integer, String> item : items)
|
|
{
|
|
stuffer.add(AVMNodeConverter.ToNodeRef(item.getFirst(), item.getSecond()));
|
|
}
|
|
String stuffed2 = stuffer.toString();
|
|
assertEquals(stuffed, stuffed2);
|
|
System.out.println(stuffed2);
|
|
}
|
|
}
|