Skip to content

Commit

Permalink
Use test path. IOError no longer raised.
Browse files Browse the repository at this point in the history
  • Loading branch information
geographika committed Mar 20, 2018
1 parent 3a50925 commit f0762b4
Showing 1 changed file with 6 additions and 5 deletions.
11 changes: 6 additions & 5 deletions mapscript/python/tests/cases/symboltest.py
Expand Up @@ -55,8 +55,9 @@ def testConstructorImage(self):
"""create new instance of symbolObj from an image"""
symbol = mapscript.symbolObj('xmarks', XMARKS_IMAGE)
assert symbol.name == 'xmarks'
assert symbol.type == mapscript.MS_SYMBOL_PIXMAP
format = mapscript.outputFormatObj('GD/PNG')
print(symbol.type)
assert symbol.type == mapscript.MS_SYMBOL_PIXMAP # now MS_SYMBOL_VECTOR? MS_SYMBOL_VECTOR
format = mapscript.outputFormatObj('AGG/PNG')
img = symbol.getImage(format)
img.save('sym-%s.%s' % (symbol.name, img.format.extension))

Expand All @@ -83,7 +84,7 @@ def testSetPCTImage(self):
"""set image of new symbolObj"""
assert self.h_symbol.name == 'house'
assert self.h_symbol.type == mapscript.MS_SYMBOL_PIXMAP
format = mapscript.outputFormatObj('GD/PNG')
format = mapscript.outputFormatObj('AGG/PNG')
format.transparent = mapscript.MS_ON
img = self.h_symbol.getImage(format)
img.save('set-%s.%s' % (self.h_symbol.name, img.format.extension))
Expand All @@ -105,7 +106,7 @@ def testSetRGBAImage(self):
"""set image of new symbolObj"""
assert self.x_symbol.name == 'xmarks'
assert self.x_symbol.type == mapscript.MS_SYMBOL_PIXMAP
format = mapscript.outputFormatObj('GD/PNG')
format = mapscript.outputFormatObj('AGG/PNG')
img = self.x_symbol.getImage(format)
img.save('set-%s.%s' % (self.x_symbol.name, img.format.extension))

Expand Down Expand Up @@ -148,7 +149,7 @@ def testSetPoints(self):
def testSetStyle(self):
"""expect success after setting an existing symbol's style"""
symbol = self.map.symbolset.getSymbol(1)
assert symbol.setPattern(0, 1) == mapscript.MS_SUCCESS
assert symbol.setPoints(0, 1) == mapscript.MS_SUCCESS

def testRGBASymbolInPNG24(self):
"""draw a RGBA PNG pixmap on PNG canvas"""
Expand Down

0 comments on commit f0762b4

Please sign in to comment.