/[thuban]/branches/WIP-pyshapelib-bramz/test/test_proj.py
ViewVC logotype

Diff of /branches/WIP-pyshapelib-bramz/test/test_proj.py

Parent Directory Parent Directory | Revision Log Revision Log | View Patch Patch

revision 1687 by bh, Fri Aug 29 10:02:16 2003 UTC revision 1888 by jan, Thu Oct 30 09:31:56 2003 UTC
# Line 16  __version__ = "$Revision$" Line 16  __version__ = "$Revision$"
16  import unittest  import unittest
17  import os  import os
18    
19    import xmlsupport
20  import support  import support
21  support.initthuban()  support.initthuban()
22    
23  from Thuban import _  from Thuban import _
24  from Thuban.Model.proj import Projection, ProjFile  from Thuban.Model.proj import Projection, ProjFile, \
25         PROJ_UNITS_METERS, PROJ_UNITS_DEGREES
26    from Thuban.Model.messages import PROJECTION_ADDED, PROJECTION_REMOVED, \
27         PROJECTION_REPLACED
28  import Thuban.Model.resource as resource  import Thuban.Model.resource as resource
29    
30  from xmlsupport import sax_eventlist  from xmlsupport import sax_eventlist
# Line 69  class TestProjection(unittest.TestCase, Line 72  class TestProjection(unittest.TestCase,
72          proj = Projection(params, "MyName")          proj = Projection(params, "MyName")
73          self.assertEquals(proj.GetName(), "MyName")          self.assertEquals(proj.GetName(), "MyName")
74    
75        def test_get_parameter_without_equals_sign(self):
76            """Test Projection.GetParameter() for a parameter without '=' sign"""
77            proj = Projection(["proj=utm", "zone=34", "south", "ellps=clrk66"])
78            # The Projection class pretends that for parameters specified
79            # without a value the value is the same as the parameter name.
80            self.assertEquals(proj.GetParameter("south"), "south")
81    
82        def test_get_projection_units_geo(self):
83            """Test Projection.GetProjectedUnits() for geographic projection.
84            Test for the alias 'longlat' as well.
85            """
86            proj = Projection(["proj=latlong", "to_meter=0.017453292519943295",
87                               "ellps=clrk66"])
88            self.assertEquals(proj.GetProjectedUnits(), PROJ_UNITS_DEGREES)
89            proj = Projection(["proj=longlat", "to_meter=0.017453292519943295",
90                               "ellps=clrk66"])
91            self.assertEquals(proj.GetProjectedUnits(), PROJ_UNITS_DEGREES)
92    
93        def test_get_projection_units_normal(self):
94            """Test Projection.GetProjectedUnits() for normal projection"""
95            proj = Projection(["zone=26", "proj=utm", "ellps=clrk66"])
96            self.assertEquals(proj.GetProjectedUnits(), PROJ_UNITS_METERS)
97    
98        def test_label(self):
99            """Test Projection.Label() without epsg"""
100            proj = Projection(["zone=26", "proj=utm", "ellps=clrk66"],
101                               name = "My Projection")
102            self.assertEquals(proj.Label(), "My Projection")
103    
104        def test_label_epsg(self):
105            """Test Projection.Label() with epsg"""
106            proj = Projection(["zone=26", "proj=utm", "ellps=clrk66"],
107                               name = "My Projection", epsg="42")
108            self.assertEquals(proj.Label(), "EPSG    42 My Projection")
109    
110        def test_epsgcode_for_non_epsg_projection(self):
111            """Test Projection.EPSGCode() without epsg"""
112            proj = Projection(["zone=26", "proj=utm", "ellps=clrk66"],
113                               name = "My Projection")
114            self.assertEquals(proj.EPSGCode(), None)
115    
116        def test_epsgcode_for_real_epsg_projection(self):
117            """Test Projection.EPSGCode() with epsg"""
118            proj = Projection(["zone=26", "proj=utm", "ellps=clrk66"],
119                               name = "My Projection", epsg="42")
120            self.assertEquals(proj.EPSGCode(), "42")
121    
122    
123    
124    class TestProjFileSimple:
125    
126        def test_init(self):
127            """Test ProjFile coinstructor"""
128            proj_file = ProjFile("some_filename")
129            self.assertEquals(proj_file.GetFilename(), "some_filename")
130            self.assertEquals(len(proj_file.GetProjections()), 0)
131    
132        def test_set_filename(self):
133            """Test ProjFile.SetFilename()"""
134            proj_file = ProjFile("some_filename")
135            proj.SetFilename("other_name")
136            self.assertEquals(proj_file.GetFilename(), "other_name")
137    
138    
139    class TestProjFile(unittest.TestCase, support.SubscriberMixin):
140    
141        """Test cases for ProjFile objects"""
142    
143        def setUp(self):
144            self.clear_messages()
145            self.proj0 = Projection(["proj=tmerc", "ellps=clrk66"])
146            self.proj1 = Projection(["proj=utm", "ellps=clrk66"])
147            self.proj2 = Projection(["proj=lcc", "ellps=clrk66",
148                                     "lat_1=0", "lat_2=20"])
149            self.proj_file = ProjFile("some_filename")
150            for msg in [PROJECTION_ADDED, PROJECTION_REMOVED, PROJECTION_REPLACED]:
151                self.proj_file.Subscribe(msg, self.subscribe_with_params, msg)
152    
153        def tearDown(self):
154            self.clear_messages()
155            self.proj_file.Destroy()
156    
157        def test_add_remove(self):
158            """Test ProjFile.Add() and ProjFile.Remove()"""
159            self.proj_file.Add(self.proj0)
160            self.proj_file.Add(self.proj1)
161            self.assertEquals(self.proj_file.GetProjections(),
162                              [self.proj0, self.proj1])
163            self.check_messages([(self.proj0, PROJECTION_ADDED),
164                                 (self.proj1, PROJECTION_ADDED)])
165            self.clear_messages()
166    
167            self.proj_file.Remove(self.proj0)
168            self.assertEquals(self.proj_file.GetProjections(), [self.proj1])
169            self.check_messages([(self.proj0, PROJECTION_REMOVED)])
170    
171        def test_remove_non_existing(self):
172            """Test ProjFile.Remove(<proj not in projfile>)"""
173            self.assertRaises(ValueError, self.proj_file.Remove, self.proj0)
174            # Nothing happened, so no messages should have been sent
175            self.check_messages([])
176    
177        def test_replace(self):
178            """Test ProjFile.Replace()"""
179            self.proj_file.Add(self.proj0)
180            self.proj_file.Add(self.proj1)
181            self.clear_messages()
182    
183  sample_projfile = '''\          # Replace()
184  <?xml version="1.0" encoding="UTF-8"?>          self.proj_file.Replace(self.proj0, self.proj2)
185  <!DOCTYPE projfile SYSTEM "thuban.dtd">          self.assertEquals(self.proj_file.GetProjections(),
186  <projectionlist>                            [self.proj2, self.proj1])
187      <projection name="Transverse Mercartor">          self.check_messages([(self.proj0, self.proj2, PROJECTION_REPLACED)])
         <parameter value="proj=tmerc"/>  
         <parameter value="ellps=clrk66"/>  
         <parameter value="lat_0=90w"/>  
         <parameter value="lon_0=90w"/>  
         <parameter value="k=1"/>  
     </projection>  
     <projection name="Transverse Mercartor">  
         <parameter value="proj=tmerc"/>  
         <parameter value="ellps=clrk66"/>  
         <parameter value="lat_0=30w"/>  
         <parameter value="lon_0=30w"/>  
         <parameter value="k=1"/>  
     </projection>  
     <projection name="Universal Transverse Mercartor">  
         <parameter value="proj=utm"/>  
         <parameter value="ellps=clrk66"/>  
         <parameter value="zone=1"/>  
     </projection>  
 </projectionlist>  
 '''  
188    
189  sample_projfile_data = [("Transverse Mercartor", ["proj=tmerc",      def test_replace_non_existing(self):
190                                                    "ellps=clrk66",          """Test ProjFile.Replace(<proj not in projfile>, <some proj>)"""
191                                                    "lat_0=90w",          self.proj_file.Add(self.proj0)
192                                                    "lon_0=90w",          self.proj_file.Add(self.proj1)
193                                                    "k=1"]),          self.clear_messages()
194                          ("Transverse Mercartor", ["proj=tmerc",          self.assertRaises(ValueError,
195                                                    "ellps=clrk66",                            self.proj_file.Replace, self.proj2, self.proj0)
196                                                    "lat_0=30w",          # All projections should still be there
197                                                    "lon_0=30w",          self.assertEquals(self.proj_file.GetProjections(),
198                                                    "k=1"]),                            [self.proj0, self.proj1])
199                          ("Universal Transverse Mercartor", ["proj=utm",          # Nothing happened, so no messages should have been sent
200                                                              "ellps=clrk66",          self.check_messages([])
                                                             "zone=1"])]  
201    
 sample_projfile2 = '''\  
 <?xml version="1.0" encoding="UTF-8"?>  
 <!DOCTYPE projfile SYSTEM "thuban.dtd">  
 <projectionlist>  
 </projectionlist>  
 '''  
202    
203  sample_projfile_data2 = []  class ProjFileTest(unittest.TestCase, support.FileTestMixin,
204                       xmlsupport.ValidationTest):
205    
206  class TestProjFile(unittest.TestCase, support.FileTestMixin):      """Base class for the proj file tests that read or write files"""
207    
208      """Test cases for reading and writing projection files.      def filename(self):
209      """          """Return the filename for the test"""
210            return self.temp_file_name(self.id() + ".proj")
211    
     def compare_xml(self, xml1, xml2):  
         self.assertEquals(sax_eventlist(xml1), sax_eventlist(xml2))  
212    
213      def test(self):  class ProjFileReadTests(ProjFileTest):
         """Test ProjFile"""  
214    
215          proj0 = Projection(["proj=tmerc", "ellps=clrk66"])      """Test read ProjFile objects from files
         proj1 = Projection(["proj=utm", "ellps=clrk66"])  
         proj2 = Projection(["proj=lcc", "ellps=clrk66",  
                             "lat_1=0", "lat_2=20"])  
   
         eq = self.assertEquals  
   
   
         #  
         # __init__()  
         # GetFilename()  
         # SetFilename()  
         #  
         for name in ["", "hello_world"]:  
             projFile = ProjFile(name)  
             eq(projFile.GetFilename(), name)  
   
             projFile.SetFilename("XXX")  
             projFile.SetFilename(name)  
             eq(projFile.GetFilename(), name)  
   
         # initial number of projections should be 0  
         eq(len(projFile.GetProjections()), 0)  
   
         #  
         # Add()  
         # Remove()  
         #  
         projFile.Add(proj0)  
         eq(len(projFile.GetProjections()), 1)  
         projFile.Remove(proj0)  
         eq(len(projFile.GetProjections()), 0)  
   
         # try to remove something that doesn't exist  
         self.assertRaises(ValueError, projFile.Remove, None)  
         self.assertRaises(ValueError, projFile.Remove, proj0)  
   
         projFile.Add(proj0)  
         projFile.Add(proj1)  
         projFile.Add(proj2)  
         eq(len(projFile.GetProjections()), 3)  
   
         # GetProjections() -- tests order  
         projs = projFile.GetProjections()  
         eq(projs[0], proj0)  
         eq(projs[1], proj1)  
         eq(projs[2], proj2)  
216    
217          projFile.Remove(proj2)      The files only cover error handling and the system projection file.
218          projFile.Remove(proj1)      """
219    
220          # Replace()      def test_read_non_existing_file(self):
221          projFile.Replace(proj0, proj1)          """Test read_proj_file with non-existing file"""
         projs = projFile.GetProjections()  
         eq(projs[0], proj1)  
   
         # replace a non-existent projection  
         self.assertRaises(ValueError, projFile.Replace, None, proj2)  
         self.assertRaises(ValueError, projFile.Replace, proj0, proj2)  
   
     def testRead(self):  
         """Test read_proj_file"""  
   
         self.doTestRead(sample_projfile_data, sample_projfile)  
         self.doTestRead(sample_projfile_data2, sample_projfile2)  
   
         #  
         # file doesn't exist  
         #  
222          self.assertRaises(IOError,          self.assertRaises(IOError,
223              resource.read_proj_file, self.temp_file_name("nonexistent.proj"))                            resource.read_proj_file,
224                              self.temp_file_name("nonexistent.proj"))
225    
226        def test_read_unreadable_file(self):
227            """Test read_proj_file with unreadable file
228    
229          #          As currently written this only works on unix-like systems and
230          # file isn't readable          not e.g. on MS Windows.
231          #          """
232          filename = self.temp_file_name("projfile.proj")          filename = self.filename()
233          file = open(filename, "w")          file = open(filename, "w")
234          file.close()          file.close()
235          os.chmod(filename, 0200) # write-only          os.chmod(filename, 0200) # write-only
236          self.assertRaises(IOError, resource.read_proj_file, filename)          self.assertRaises(IOError, resource.read_proj_file, filename)
         os.chmod(filename, 0600) # read/write so we reuse the file  
237    
238          #      def test_read_empty_file(self):
239          # file has invalid XML (or none at all)          """Test read_proj_file with empty file"""
240          #          filename = self.filename()
         filename = self.temp_file_name("projfile.proj")  
241          file = open(filename, "w")          file = open(filename, "w")
242          file.close()          file.close()
243    
244          self.assertRaises(SAXParseException, resource.read_proj_file, filename)          self.assertRaises(SAXParseException, resource.read_proj_file, filename)
245    
246      def testWrite(self):      def test_get_system_proj_file(self):
247          """Test write_proj_file"""          """Test resource.get_system_proj_file()
248    
249            This is primarily to test whether the system proj file contains
250            invalid projection paramers and whether the proj file is not
251            empty
252            """
253            projfile, warnings = resource.get_system_proj_file()
254            self.assertEquals(warnings, [])
255            self.assert_(len(projfile.GetProjections()) > 0)
256    
257            # see whether it got cached and we get the same projfile object
258            # when we read the file again
259            projfile2, warnings = resource.get_system_proj_file()
260            self.assert_(projfile is projfile2)
261    
262    
263          self.doTestWrite(sample_projfile_data, sample_projfile)  class WriteProjFileTests(ProjFileTest):
         self.doTestWrite(sample_projfile_data2, sample_projfile2)  
264    
265      def doTestWrite(self, data, expected):      """Test cases for writing proj files"""
266    
267          filename = self.temp_file_name("projfile.proj")      def compare_xml(self, xml1, xml2):
268            self.assertEquals(sax_eventlist(xml1), sax_eventlist(xml2))
269    
270          pf = ProjFile(filename)      def doTestWrite(self, projfile, expected):
271          for proj in data:          filename = self.filename()
             pf.Add(Projection(proj[1], proj[0]))  
272    
273          resource.write_proj_file(pf)          resource.write_proj_file(projfile)
274    
275          file = open(filename)          file = open(filename)
276          written_contents = file.read()          written_contents = file.read()
277          file.close()          file.close()
278          self.compare_xml(written_contents, expected)          self.compare_xml(written_contents, expected)
279            self.validate_data(written_contents)
280            self.validate_data(expected)
281    
282      def doTestRead(self, data, input):      def test_write(self):
283            """Test write_proj_file"""
284            pf = ProjFile(self.filename())
285            pf.Add(Projection(['proj=tmerc', 'ellps=clrk66',
286                               'lat_0=90w', 'lon_0=90w', 'k=1'],
287                              "Transverse Mercator",))
288            pf.Add(Projection(["proj=tmerc",
289                               "lat_0=0.000000000", "lon_0=-62.000000000",
290                               "k=0.999500", "x_0=400000.000", "y_0=0.000",
291                               "ellps=clrk80", "units=m"],
292                              "Anguilla 1957 / British West Indies Grid",
293                              epsg="200"))
294            file_contents = '''<?xml version="1.0" encoding="UTF-8"?>
295            <!DOCTYPE projectionlist SYSTEM "projfile.dtd">
296            <projectionlist>
297                <projection name="Transverse Mercator">
298                    <parameter value="proj=tmerc"/>
299                    <parameter value="ellps=clrk66"/>
300                    <parameter value="lat_0=90w"/>
301                    <parameter value="lon_0=90w"/>
302                    <parameter value="k=1"/>
303                </projection>
304                <projection epsg="200"
305                            name="Anguilla 1957 / British West Indies Grid">
306                    <parameter value="proj=tmerc"/>
307                    <parameter value="lat_0=0.000000000"/>
308                    <parameter value="lon_0=-62.000000000"/>
309                    <parameter value="k=0.999500"/>
310                    <parameter value="x_0=400000.000"/>
311                    <parameter value="y_0=0.000"/>
312                    <parameter value="ellps=clrk80"/>
313                    <parameter value="units=m"/>
314                </projection>
315            </projectionlist>
316            '''
317            self.doTestWrite(pf, file_contents)
318    
319        def test_write_empty_file(self):
320            """Test write empty ProjFile"""
321            pf = ProjFile(self.filename())
322            file_contents = '''<?xml version="1.0" encoding="UTF-8"?>
323            <!DOCTYPE projectionlist SYSTEM "projfile.dtd">
324            <projectionlist>
325            </projectionlist>
326            '''
327            self.doTestWrite(pf, file_contents)
328    
329    
330    class ProjFileLoadTestCase(support.FileLoadTestCase):
331    
332        """Base class for the test cases that read specific test files"""
333    
334        file_extension = ".proj"
335    
336        def tearDown(self):
337            """Clear the cache explicitly"""
338            resource.clear_proj_file_cache()
339    
         filename = self.temp_file_name("projfile.proj")  
         file = open(filename, "w")  
         file.write(input)  
         file.close()  
340    
341          pf = resource.read_proj_file(filename)  class TestLoadingProjFile(ProjFileLoadTestCase):
342    
343        file_contents = '''\
344    <?xml version="1.0" encoding="UTF-8"?>
345    <!DOCTYPE projectionlist SYSTEM "projfile.dtd">
346    <projectionlist>
347        <projection name="Transverse Mercator">
348            <parameter value="proj=tmerc"/>
349            <parameter value="ellps=clrk66"/>
350            <parameter value="lat_0=90w"/>
351            <parameter value="lon_0=90w"/>
352            <parameter value="k=1"/>
353        </projection>
354        <projection epsg="200" name="Anguilla 1957 / British West Indies Grid">
355            <parameter value="proj=tmerc"/>
356            <parameter value="lat_0=0.000000000"/>
357            <parameter value="lon_0=-62.000000000"/>
358            <parameter value="k=0.999500"/>
359            <parameter value="x_0=400000.000"/>
360            <parameter value="y_0=0.000"/>
361            <parameter value="ellps=clrk80"/>
362            <parameter value="units=m"/>
363        </projection>
364    </projectionlist>
365    '''
366    
367        def check_projection(self, proj, label, parameters):
368            """Check the values of the proj's label and parameters"""
369            self.assertEquals(proj.Label(), label)
370            params = proj.GetAllParameters()[:]
371            params.sort()
372            self.assertEquals(params, parameters)
373    
374        def test(self):
375            projfile, warnings = resource.read_proj_file(self.filename())
376            # no warnings
377            self.assertEquals(warnings, [])
378    
379            # There are two projections
380            projs = projfile.GetProjections()
381            self.assertEquals(len(projs), 2)
382    
383            self.check_projection(projs[0],
384                                  "Transverse Mercator",
385                                  ['ellps=clrk66', 'k=1', 'lat_0=90w', 'lon_0=90w',
386                                   'proj=tmerc'])
387            self.check_projection(projs[1],
388                             "EPSG   200 Anguilla 1957 / British West Indies Grid",
389                                  ["ellps=clrk80", "k=0.999500",
390                                   "lat_0=0.000000000", "lon_0=-62.000000000",
391                                   "proj=tmerc", "units=m",
392                                   "x_0=400000.000", "y_0=0.000"])
393    
394        def test_caching(self):
395            # test whether the projfile cache works
396            projfile, warnings = resource.read_proj_file(self.filename())
397            projfile2, warnings = resource.read_proj_file(self.filename())
398    
399            # Both projfiles should be the same object
400            self.assert_(projfile2 is projfile)
401    
402            # If we clear the cache we should get a new one.
403            resource.clear_proj_file_cache()
404            projfile3, warnings = resource.read_proj_file(self.filename())
405            self.assert_(projfile3 is not projfile)
406    
407    
408    class TestLoadingProjFileWithEmptyProjectionlist(ProjFileLoadTestCase):
409    
410        file_contents = '''\
411    <?xml version="1.0" encoding="UTF-8"?>
412    <!DOCTYPE projectionlist SYSTEM "projfile.dtd">
413    <projectionlist>
414    </projectionlist>
415    '''
416    
417        def test(self):
418            projfile, warnings = resource.read_proj_file(self.filename())
419            # no warnings
420            self.assertEquals(warnings, [])
421    
422            # There are no projections
423            self.assertEquals(len(projfile.GetProjections()), 0)
424    
425    
426          eq = self.assertEquals  class TestProjFileWithInvalidParameters(ProjFileLoadTestCase):
427    
428        file_contents = '''\
429    <?xml version="1.0" encoding="UTF-8"?>
430    <!DOCTYPE projectionlist SYSTEM "projfile.dtd">
431    <projectionlist>
432        <projection name="Universal Transverse Mercator">
433            <parameter value="proj=utm"/>
434            <parameter value="ellps=clrk66"/>
435            <!-- an invalid zone number to trigger the parameter checking
436                 in the proj library -->
437            <parameter value="zone=1000"/>
438        </projection>
439        <projection name="Transverse Mercator">
440            <parameter value="proj=tmerc"/>
441            <parameter value="ellps=clrk66"/>
442            <parameter value="lat_0=90w"/>
443            <parameter value="lon_0=90w"/>
444            <parameter value="k=1"/>
445        </projection>
446    </projectionlist>
447    '''
448    
449          eq(pf.GetFilename(), filename)      def setUp(self):
450            support.FileLoadTestCase.setUp(self)
451    
452          for proj, d in zip(pf.GetProjections(), data):      def test(self):
453              eq(proj.GetName(), d[0])          """Test reading a proj file with invalid parameters"""
454              for param in proj.GetAllParameters():          projfile, warnings = resource.read_proj_file(self.filename())
455                  self.assert_(param in d[1])          projs = projfile.GetProjections()
456            self.assertEquals(len(projs), 1)
457            params = projs[0].GetAllParameters()[:]
458            params.sort()
459            self.assertEquals(params, ['ellps=clrk66', 'k=1', 'lat_0=90w',
460                                       'lon_0=90w', 'proj=tmerc'])
461            self.assertEquals(warnings,
462                           ['Error in projection "Universal Transverse Mercator":'
463                            ' invalid UTM zone number'])
464    
465    
466  if __name__ == "__main__":  if __name__ == "__main__":
467      unittest.main()      support.run_tests()

Legend:
Removed from v.1687  
changed lines
  Added in v.1888

[email protected]
ViewVC Help
Powered by ViewVC 1.1.26