d935013bfb21ae27e2f746b385c8d68282475491
[taxeditor.git] / eu.etaxonomy.taxeditor.test / src / test / java / eu / etaxonomy / taxeditor / lazyloading / CdmEntityCacherTest.java
1 // $Id$
2 /**
3 * Copyright (C) 2014 EDIT
4 * European Distributed Institute of Taxonomy
5 * http://www.e-taxonomy.eu
6 *
7 * The contents of this file are subject to the Mozilla Public License Version 1.1
8 * See LICENSE.TXT at the top of this package for the full license terms.
9 */
10 package eu.etaxonomy.taxeditor.lazyloading;
11
12 import java.util.UUID;
13
14 import org.apache.log4j.Level;
15 import org.apache.log4j.Logger;
16 import org.hibernate.collection.spi.PersistentCollection;
17 import org.junit.Assert;
18 import org.junit.BeforeClass;
19 import org.junit.Test;
20
21 import eu.etaxonomy.cdm.api.service.ICommonService;
22 import eu.etaxonomy.cdm.api.service.IPolytomousKeyService;
23 import eu.etaxonomy.cdm.api.service.ITaxonService;
24 import eu.etaxonomy.cdm.model.common.CdmBase;
25 import eu.etaxonomy.cdm.model.common.Language;
26 import eu.etaxonomy.cdm.model.description.PolytomousKey;
27 import eu.etaxonomy.cdm.model.description.PolytomousKeyNode;
28 import eu.etaxonomy.taxeditor.httpinvoker.BaseRemotingTest;
29 import eu.etaxonomy.taxeditor.httpinvoker.CDMServer;
30
31 /**
32 * @author cmathew
33 * @date 16 Oct 2014
34 *
35 */
36 public class CdmEntityCacherTest extends BaseRemotingTest {
37
38 private static final Logger logger = Logger.getLogger(CdmEntityCacherTest.class);
39
40 UUID polytomousKeyUuid = UUID.fromString("0d53ba20-7de4-4baa-bd8a-401048447d66");
41 UUID taxon1Uuid = UUID.fromString("2b336df7-29e8-4f79-985f-66502739d22f");
42
43
44 IPolytomousKeyService polytomousKeyService = getRemoteApplicationController().getPolytomousKeyService();
45 ICommonService commonService = getRemoteApplicationController().getCommonService();
46 ITaxonService taxonService = getRemoteApplicationController().getTaxonService();
47
48 Language english = Language.getLanguageFromUuid(Language.uuidEnglish);
49
50 @BeforeClass
51 public static void initializePolytomousKeyTest() {
52 logger.setLevel(Level.INFO);
53 CDMServer.getInstance().setKeepServerRunning(true);
54
55 //initializeController("default", "127.0.0.1", 8080, "", NomenclaturalCode.ICNAFP);
56 }
57
58 @Test
59 public void testSimpleCache() {
60
61
62 }
63
64 @Test
65 public void testCachingCdmEntities() {
66 PolytomousKey pkey = CdmBase.deproxy(polytomousKeyService.find(polytomousKeyUuid),PolytomousKey.class);
67 PolytomousKeyNode pkeynode = pkey.getRoot();
68
69 PersistentCollection children = (PersistentCollection) pkeynode.getChildren();
70 PolytomousKeyNode childNode0 = (PolytomousKeyNode)commonService.get(children, 0);
71 PolytomousKey subkey1 = CdmBase.deproxy(childNode0.getSubkey(),PolytomousKey.class);
72 String subkey1title = subkey1.getTitleCache();
73 subkey1.setTitleCache(subkey1title + "test", true);
74
75 PolytomousKeyNode childNode1 = (PolytomousKeyNode)commonService.get(children, 1);
76 PolytomousKey subkey2 = CdmBase.deproxy(childNode1.getSubkey(),PolytomousKey.class);
77 String subkey2title = subkey2.getTitleCache();
78 subkey2.setTitleCache(subkey2title + "test", true);
79
80 Assert.assertNotSame(subkey1, subkey2);
81
82 polytomousKeyService.merge(pkey);
83
84
85 }
86
87
88 }