-
-
Notifications
You must be signed in to change notification settings - Fork 3k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[processing] allow tests for scripts
- Loading branch information
Showing
4 changed files
with
95 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
# -*- coding: utf-8 -*- | ||
|
||
""" | ||
*************************************************************************** | ||
ScriptAlgorithmsTests.py | ||
--------------------- | ||
Date : March 2017 | ||
Copyright : (C) 2017 by Alexander Bruy | ||
Email : alexander dot bruy 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__ = 'Alexander Bruy' | ||
__date__ = 'March 2017' | ||
__copyright__ = '(C) 2017, Alexander Bruy' | ||
|
||
# This will get replaced with a git SHA1 when you do a git archive | ||
|
||
__revision__ = ':%H$' | ||
|
||
import AlgorithmsTestBase | ||
|
||
import nose2 | ||
import shutil | ||
|
||
from qgis.testing import start_app, unittest | ||
|
||
|
||
class TestScriptAlgorithms(unittest.TestCase, AlgorithmsTestBase.AlgorithmsTest): | ||
|
||
@classmethod | ||
def setUpClass(cls): | ||
start_app() | ||
from processing.core.Processing import Processing | ||
Processing.initialize() | ||
cls.cleanup_paths = [] | ||
|
||
@classmethod | ||
def tearDownClass(cls): | ||
for path in cls.cleanup_paths: | ||
shutil.rmtree(path) | ||
|
||
def test_definition_file(self): | ||
return 'script_algorithm_tests.yaml' | ||
|
||
|
||
if __name__ == '__main__': | ||
nose2.main() |
31 changes: 31 additions & 0 deletions
31
python/plugins/processing/tests/testdata/scripts/centroids.py
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
##Centroids=name | ||
##Geometry=group | ||
##INPUT_LAYER=vector | ||
##OUTPUT_LAYER=output vector | ||
|
||
from qgis.core import QgsWkbTypes, QgsGeometry | ||
|
||
from processing.tools.vector import VectorWriter | ||
|
||
layer = processing.getObject(INPUT_LAYER) | ||
fields = layer.fields() | ||
|
||
writer = VectorWriter(OUTPUT_LAYER, 'utf-8', fields, QgsWkbTypes.Point, layer.crs()) | ||
|
||
features = processing.features(layer) | ||
count = len(features) | ||
if count == 0: | ||
raise GeoAlgorithmExecutionException('Input layer contains no features.') | ||
|
||
total = 100.0 / len(features) | ||
|
||
for count, f in enumerate(features): | ||
outputFeature = f | ||
if f.geometry(): | ||
outputGeometry = f.geometry().centroid() | ||
outputFeature.setGeometry(outputGeometry) | ||
|
||
writer.addFeature(outputFeature) | ||
feedback.setProgress(int(count * total)) | ||
|
||
del writer |