Statistics
| Revision:

svn-gvsig-desktop / branches / v2_0_0_prep / applications / appgvSIG / src-test / org / gvsig / app / project / documents / layout / LayoutDocumentTest.java @ 36443

History | View | Annotate | Download (2.99 KB)

1 33420 jpiera
/* gvSIG. Geographic Information System of the Valencian Government
2
*
3
* Copyright (C) 2007-2008 Infrastructures and Transports Department
4
* of the Valencian Government (CIT)
5
*
6
* This program is free software; you can redistribute it and/or
7
* modify it under the terms of the GNU General Public License
8
* as published by the Free Software Foundation; either version 2
9
* of the License, or (at your option) any later version.
10
*
11
* This program is distributed in the hope that it will be useful,
12
* but WITHOUT ANY WARRANTY; without even the implied warranty of
13
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14
* GNU General Public License for more details.
15
*
16
* You should have received a copy of the GNU General Public License
17
* along with this program; if not, write to the Free Software
18
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19
* MA  02110-1301, USA.
20
*
21
*/
22
23
/*
24
* AUTHORS (In addition to CIT):
25
* 2010 {Prodevelop}   {Task}
26
*/
27
28
package org.gvsig.app.project.documents.layout;
29
30
import org.cresques.cts.IProjection;
31
import org.gvsig.app.ApplicationLocator;
32
import org.gvsig.app.ApplicationManager;
33
import org.gvsig.app.project.ProjectManager;
34
import org.gvsig.tools.ToolsLocator;
35
import org.gvsig.tools.junit.AbstractLibraryAutoInitTestCase;
36
import org.gvsig.tools.locator.LocatorException;
37
import org.gvsig.tools.persistence.PersistentState;
38
import org.gvsig.tools.persistence.exception.PersistenceClassNotRegistered;
39
import org.gvsig.tools.persistence.exception.PersistenceException;
40
import org.gvsig.tools.persistence.exception.PersistenceTypeNotSupportedException;
41
import org.gvsig.tools.persistence.exception.PersistenceValidateExceptions;
42
43
/**
44
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera Llodr&aacute;</a>
45
 */
46
public class LayoutDocumentTest extends AbstractLibraryAutoInitTestCase {
47
48
        @Override
49
        protected void doSetUp() throws Exception {
50 34861 nfrancisco
                DefaultLayoutManager.register();
51 33420 jpiera
        }
52
53
        public void testPersistence() throws PersistenceTypeNotSupportedException, PersistenceClassNotRegistered, PersistenceException, PersistenceValidateExceptions, LocatorException{
54
                ApplicationManager applicationManager = ApplicationLocator.getManager();
55
                assertNotNull(applicationManager);
56
57
                ProjectManager projectManager = applicationManager.getProjectManager();
58
                assertNotNull(projectManager);
59
60
//                Project project = projectManager.createProject();
61
//                assertNotNull(project);
62
63 36443 cordinyana
                LayoutManager layoutManager = (LayoutManager) projectManager.getDocumentManager(DefaultLayoutManager.TYPENAME);
64 33420 jpiera
            LayoutDocument layoutDocument1 = (LayoutDocument) layoutManager.createDocument();
65
            layoutDocument1.setName("My Layout");
66
67
//                project.add(document);
68
69
70
                //Save and load the layout
71
                PersistentState persistentState = ToolsLocator.getPersistenceManager().getState(layoutDocument1);
72
73
                LayoutDocument layoutDocument2 = (LayoutDocument) ToolsLocator.getPersistenceManager().create(persistentState);
74
75
                assertEquals(layoutDocument1.getName(), layoutDocument2.getName());
76
77
                IProjection projection = null;
78
        }
79
80
}