Skip to content

Commit

Permalink
Added test to verify analysis lib can be loaded
Browse files Browse the repository at this point in the history
  • Loading branch information
timlinux committed Sep 27, 2012
1 parent ea98fba commit 504ed49
Show file tree
Hide file tree
Showing 2 changed files with 61 additions and 0 deletions.
1 change: 1 addition & 0 deletions tests/src/python/CMakeLists.txt
Expand Up @@ -11,4 +11,5 @@ ADD_PYTHON_TEST(PyQgsRectangle test_qgsrectangle.py)
ADD_PYTHON_TEST(PyQgsSpatialIndex test_qgsspatialindex.py)
ADD_PYTHON_TEST(PyQgsComposerHtml test_qgscomposerhtml.py)
ADD_PYTHON_TEST(PyQgsComposition test_qgscomposition.py)
ADD_PYTHON_TEST(PyQgsAnalysis test_qgsanalysis.py)
#ADD_PYTHON_TEST(PyQgsComposerMap test_qgscomposermap.py)
60 changes: 60 additions & 0 deletions tests/src/python/test_qgsanalysis.py
@@ -0,0 +1,60 @@
# -*- coding: utf-8 -*-
'''
test_analysis.py
--------------------------------------
Date : September 2012
Copyright : (C) 2012 by Tim Sutton
email : tim@linfiniti.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. *
* *
***************************************************************************/
'''
import unittest
import sys
import os
from utilities import unitTestDataPath, getQgisTestApp
from PyQt4.QtCore import QFileInfo, QDir, QStringList
from PyQt4.QtXml import QDomDocument

# support python < 2.7 via unittest2
# needed for expected failure decorator
if sys.version_info[0:2] < (2,7):
try:
from unittest2 import TestCase, expectedFailure
except ImportError:
print "You need to install unittest2 to run the salt tests"
sys.exit(1)
else:
from unittest import TestCase, expectedFailure

QGISAPP, CANVAS, IFACE, PARENT = getQgisTestApp()
TEST_DATA_DIR = unitTestDataPath()


class TestQgsZonalStatistics(TestCase):

def setUp(self):
"""Run before each test."""
pass

def tearDown(self):
"""Run after each test."""
pass

@expectedFailure
def testSubstitutionMap(self):
"""Test that we can import zonal statistics was failing as of d5f6543
"""
try:
from qgis.analysis import QgsZonalStatistics
except ImportError:
self.fail('Failed to import zonal statistics python module')


if __name__ == '__main__':
unittest.main()

0 comments on commit 504ed49

Please sign in to comment.