Statistics
| Revision:

svn-gvsig-desktop / trunk / org.gvsig.desktop / org.gvsig.desktop.plugin / org.gvsig.daltransform.app / org.gvsig.daltransform.app.join / src / test / java / org / gvsig / app / join / dal / feature / JoinTransformTest.java @ 40558

History | View | Annotate | Download (4.31 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
/* gvSIG. Geographic Information System of the Valencian Government
25
*
26
* Copyright (C) 2007-2008 Infrastructures and Transports Department
27
* of the Valencian Government (CIT)
28
* 
29
* This program is free software; you can redistribute it and/or
30
* modify it under the terms of the GNU General Public License
31
* as published by the Free Software Foundation; either version 2
32
* of the License, or (at your option) any later version.
33
* 
34
* This program is distributed in the hope that it will be useful,
35
* but WITHOUT ANY WARRANTY; without even the implied warranty of
36
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
37
* GNU General Public License for more details.
38
* 
39
* You should have received a copy of the GNU General Public License
40
* along with this program; if not, write to the Free Software
41
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, 
42
* MA  02110-1301, USA.
43
* 
44
*/
45

    
46
/*
47
* AUTHORS (In addition to CIT):
48
* 2009 {Iver T.I.}   {Task}
49
*/
50
 
51
package org.gvsig.app.join.dal.feature;
52

    
53
import java.io.File;
54
import java.net.URL;
55
import java.util.ArrayList;
56
import java.util.Iterator;
57

    
58
import org.gvsig.daltransform.BaseFeatureStoreTransform;
59
import org.gvsig.fmap.dal.DataStoreParameters;
60
import org.gvsig.fmap.dal.exception.DataException;
61
import org.gvsig.fmap.dal.exception.InitializeException;
62
import org.gvsig.fmap.dal.exception.ProviderNotRegisteredException;
63
import org.gvsig.fmap.dal.exception.ValidateDataParametersException;
64
import org.gvsig.fmap.dal.feature.FeatureAttributeDescriptor;
65
import org.gvsig.fmap.dal.feature.FeatureStore;
66
import org.gvsig.fmap.dal.feature.FeatureStoreTransform;
67
import org.gvsig.fmap.dal.store.dbf.DBFStoreParameters;
68
import org.gvsig.fmap.dal.store.dbf.DBFStoreProvider;
69

    
70
/**
71
 * @author <a href="mailto:jpiera@gvsig.org">Jorge Piera</a>
72
 */
73
public class JoinTransformTest extends BaseFeatureStoreTransform {
74
        private final File dbf = new File("src-test/org/gvsig/app/join/dal/feature/data/join.dbf");
75
        
76
        @Override
77
        public DataStoreParameters getDefaultDataStoreParameters()
78
                        throws DataException {                
79
            DataStoreParameters dbfParameters = null;
80
        dbfParameters = dataManager.createStoreParameters(DBFStoreProvider.NAME);
81

    
82
        dbfParameters.setDynValue("dbfFile", dbf);
83

    
84
                return dbfParameters;
85
        }
86

    
87
        @Override
88
        public FeatureStoreTransform getFeatureStoreTransform()
89
                        throws DataException, ValidateDataParametersException {
90
                URL url = JoinTransformTest.class.getResource("data/events.dbf");
91
                
92
                FeatureStore store = (FeatureStore) dataManager.createStore(this
93
                                .getDefaultDataStoreParameters());
94
                
95
                FeatureStore store2 = (FeatureStore) dataManager.createStore(this
96
                                .getDefaultDataStoreParameters2());                
97
                
98
                JoinTransform transform = new JoinTransform();
99
                                
100
                ArrayList names = new ArrayList();
101
                Iterator iter = store2.getDefaultFeatureType().iterator();// <FeatureAttributeDescriptor>
102
                while (iter.hasNext()) {
103
                        names.add(((FeatureAttributeDescriptor) iter.next()).getName());
104
                }
105
                
106
                transform.initialize(store, store2, 
107
                                "NOMBRE", "NOMBRE", 
108
                                null, null, 
109
                                (String[]) names.toArray(new String[0]));
110
                return transform;
111
        }
112
        
113
        private DataStoreParameters getDefaultDataStoreParameters2() throws InitializeException, ProviderNotRegisteredException{
114
                DBFStoreParameters dbfParameters = null;
115
                dbfParameters = (DBFStoreParameters) dataManager
116
                                .createStoreParameters(DBFStoreProvider.NAME);
117

    
118
                dbfParameters.setFile(dbf);
119

    
120
                return dbfParameters;
121
        }
122

    
123
}
124