Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.compat.cdc / org.gvsig.fmap.mapcontext / org.gvsig.fmap.mapcontext.api / src / test / java / org / gvsig / fmap / mapcontext / tools / persistence / FontPersistenceFactoryTest.java @ 40559

History | View | Annotate | Download (3.25 KB)

1
/**
2
 * gvSIG. Desktop Geographic Information System.
3
 *
4
 * Copyright (C) 2007-2013 gvSIG Association.
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 3
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
 * For any additional information, do not hesitate to contact us
22
 * at info AT gvsig.com, or visit our website www.gvsig.com.
23
 */
24
/*
25
 * AUTHORS (In addition to CIT):
26
 * 2009 {}  {{Task}}
27
 */
28
package org.gvsig.fmap.mapcontext.tools.persistence;
29

    
30
import java.awt.Font;
31

    
32
import org.easymock.MockControl;
33
import org.gvsig.tools.ToolsLocator;
34
import org.gvsig.tools.junit.AbstractLibraryAutoInitTestCase;
35
import org.gvsig.tools.persistence.PersistenceManager;
36
import org.gvsig.tools.persistence.PersistentState;
37

    
38
/**
39
 * Unit tests for the class {@link FontPersistenceFactory}.
40
 * 
41
 * @author 2009- <a href="cordinyana@gvsig.org">C?sar Ordi?ana</a> - gvSIG team
42
 */
43
public class FontPersistenceFactoryTest extends AbstractLibraryAutoInitTestCase {
44

    
45
        private FontPersistenceFactory factory;
46
        private MockControl stateControl;
47
        private PersistentState state;
48
        private Font font;
49

    
50
        protected void doSetUp() throws Exception {
51
                PersistenceManager persistenceManager = ToolsLocator
52
                                .getPersistenceManager();
53
                factory = (FontPersistenceFactory) persistenceManager.getFactories()
54
                                .get(Font.class);
55
                stateControl = MockControl.createNiceControl(PersistentState.class);
56
                state = (PersistentState) stateControl.getMock();
57
                font = new Font("Arial", Font.BOLD, 18);
58
        }
59

    
60
        /**
61
         * Test method for
62
         * {@link org.gvsig.fmap.mapcontext.tools.persistence.FontPersistenceFactory#createFromState(org.gvsig.tools.persistence.PersistentState, java.lang.Class)}
63
         * .
64
         */
65
        public void testCreateFromState() throws Exception {
66
                stateControl.expectAndReturn(state
67
                                .getString(FontPersistenceFactory.FIELD_NAME), font.getName());
68
                stateControl.expectAndReturn(state
69
                                .getInt(FontPersistenceFactory.FIELD_STYLE), font.getStyle());
70
                stateControl.expectAndReturn(state
71
                                .getInt(FontPersistenceFactory.FIELD_SIZE), font.getSize());
72
                stateControl.replay();
73

    
74
                Font newFont = (Font) factory.createFromState(state);
75
                assertTrue(newFont.equals(font));
76

    
77
                stateControl.verify();
78
        }
79

    
80
        /**
81
         * Test method for
82
         * {@link org.gvsig.fmap.mapcontext.tools.persistence.FontPersistenceFactory#saveToState(org.gvsig.tools.persistence.PersistentState, java.lang.Object)}
83
         * .
84
         */
85
        public void testSaveToState() throws Exception {
86
                state.set(FontPersistenceFactory.FIELD_NAME, font.getName());
87
                state.set(FontPersistenceFactory.FIELD_STYLE, font.getStyle());
88
                state.set(FontPersistenceFactory.FIELD_SIZE, font.getSize());
89
                stateControl.replay();
90

    
91
                factory.saveToState(state, font);
92

    
93
                stateControl.verify();
94
        }
95

    
96
}