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 40559 jjdelcerro
/**
2
 * gvSIG. Desktop Geographic Information System.
3 40435 jjdelcerro
 *
4 40559 jjdelcerro
 * Copyright (C) 2007-2013 gvSIG Association.
5
 *
6 40435 jjdelcerro
 * This program is free software; you can redistribute it and/or
7
 * modify it under the terms of the GNU General Public License
8 40559 jjdelcerro
 * as published by the Free Software Foundation; either version 3
9 40435 jjdelcerro
 * of the License, or (at your option) any later version.
10 40559 jjdelcerro
 *
11 40435 jjdelcerro
 * 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 40559 jjdelcerro
 *
16 40435 jjdelcerro
 * 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 40559 jjdelcerro
 * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
19 40435 jjdelcerro
 * MA  02110-1301, USA.
20 40559 jjdelcerro
 *
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 40435 jjdelcerro
 */
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
}