mirror of
				https://github.com/qgis/QGIS.git
				synced 2025-11-03 00:14:12 -05:00 
			
		
		
		
	
		
			
				
	
	
		
			94 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
			
		
		
	
	
			94 lines
		
	
	
		
			3.2 KiB
		
	
	
	
		
			Python
		
	
	
	
	
	
# -*- coding: utf-8 -*-
 | 
						|
 | 
						|
"""
 | 
						|
***************************************************************************
 | 
						|
    ParametersTest.py
 | 
						|
    ---------------------
 | 
						|
    Date                 : March 2013
 | 
						|
    Copyright            : (C) 2013 by Victor Olaya
 | 
						|
    Email                : volayaf at gmail dot com
 | 
						|
***************************************************************************
 | 
						|
*                                                                         *
 | 
						|
*   This program is free software; you can redistribute it and/or modify  *
 | 
						|
*   it under the terms of the GNU General Public License as published by  *
 | 
						|
*   the Free Software Foundation; either version 2 of the License, or     *
 | 
						|
*   (at your option) any later version.                                   *
 | 
						|
*                                                                         *
 | 
						|
***************************************************************************
 | 
						|
"""
 | 
						|
 | 
						|
__author__ = 'Victor Olaya'
 | 
						|
__date__ = 'March 2013'
 | 
						|
__copyright__ = '(C) 2013, Victor Olaya'
 | 
						|
 | 
						|
# This will get replaced with a git SHA1 when you do a git archive
 | 
						|
 | 
						|
__revision__ = '$Format:%H$'
 | 
						|
 | 
						|
import unittest
 | 
						|
from processing.core.parameters import ParameterNumber
 | 
						|
from processing.core.parameters import ParameterCrs
 | 
						|
from processing.core.parameters import ParameterExtent
 | 
						|
 | 
						|
 | 
						|
class ParametersTest(unittest.TestCase):
 | 
						|
 | 
						|
    def testParameterNumber(self):
 | 
						|
        param = ParameterNumber('name', 'desc', 0, 10)
 | 
						|
        assert not param.setValue('wrongvalue')
 | 
						|
        assert param.value is None
 | 
						|
        assert not param.setValue(25)
 | 
						|
        assert param.value is None
 | 
						|
        assert param.setValue(5)
 | 
						|
        assert param.value == 5
 | 
						|
        assert param.setValue(None)
 | 
						|
        assert param.value == param.default
 | 
						|
        s = param.serialize()
 | 
						|
        param2 = ParameterNumber()
 | 
						|
        param2.deserialize(s)
 | 
						|
        assert param.default == param2.default
 | 
						|
        assert param.max == param2.max
 | 
						|
        assert param.min == param2.min
 | 
						|
        assert param.description == param2.description
 | 
						|
        assert param.name == param2.name
 | 
						|
 | 
						|
    def testParameterCRS(self):
 | 
						|
        param = ParameterCrs('name', 'desc')
 | 
						|
        assert param.setValue('EPSG:12003')
 | 
						|
        assert param.value == 'EPSG:12003'
 | 
						|
        assert param.setValue(None)
 | 
						|
        assert param.value == param.default
 | 
						|
        s = param.serialize()
 | 
						|
        param2 = ParameterCrs()
 | 
						|
        param2.deserialize(s)
 | 
						|
        assert param.default == param2.default
 | 
						|
        assert param.description == param2.description
 | 
						|
        assert param.name == param2.name
 | 
						|
 | 
						|
    def testParameterExtent(self):
 | 
						|
        param = ParameterExtent('name', 'desc')
 | 
						|
        assert not param.setValue('0,2,0')
 | 
						|
        assert not param.setValue('0,2,0,a')
 | 
						|
        assert not param.setValue('0,2,2,4')
 | 
						|
        assert param.value == '0,2,2,4'
 | 
						|
        assert param.setValue(None)
 | 
						|
        assert param.value == param.default
 | 
						|
        s = param.serialize()
 | 
						|
        param2 = ParameterExtent()
 | 
						|
        param2.deserialize(s)
 | 
						|
        assert param.default == param2.default
 | 
						|
        assert param.description == param2.description
 | 
						|
        assert param.name == param2.name
 | 
						|
 | 
						|
 | 
						|
def suite():
 | 
						|
    suite = unittest.makeSuite(ParametersTest, 'test')
 | 
						|
    return suite
 | 
						|
 | 
						|
 | 
						|
def runtests():
 | 
						|
    result = unittest.TestResult()
 | 
						|
    testsuite = suite()
 | 
						|
    testsuite.run(result)
 | 
						|
    return result
 |