Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

r.buffer: Added test script #4482

Merged
merged 12 commits into from
Nov 8, 2024
99 changes: 99 additions & 0 deletions raster/r.buffer/testsuite/test_buffer.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,99 @@
from grass.gunittest.case import TestCase
from grass.gunittest.main import test
from grass.gunittest.gmodules import SimpleModule
import grass.script as gs


class TestRBuffer(TestCase):

@classmethod
def setUpClass(cls):
"""Set up a temporary region for testing."""
cls.output = "test_buffer"
cls.use_temp_region()
cls.runModule("g.region", n=223000, s=220000, w=640000, e=643000, nsres=100)

@classmethod
def tearDownClass(cls):
"""Clean up after tests."""
cls.del_temp_region()

def tearDown(self):
"""Remove temporary maps created during tests"""
gs.run_command(
"g.remove",
type="raster",
name="test_buffer,zero_map,null_map",
flags="f",
)

def test_buffer_creation(self):
"""Test creating a buffer around roadsmajor with multiple distances."""
distances = [100, 200, 300, 400, 500]

module = SimpleModule(
"r.buffer",
input="roadsmajor",
output=self.output,
distances=distances,
overwrite=True,
)
self.assertModule(module)

self.assertRasterExists(self.output)

expected_categories = [i + 1 for i in range(len(distances) + 1)]

self.assertRasterMinMax(
map=self.output,
refmin=min(expected_categories),
refmax=max(expected_categories),
msg=f"Buffer zones should have category values from 1 to {max(expected_categories)}",
)

def test_no_non_null_values(self):
"""Test r.buffer with null input raster resulting in an empty output."""
null_map = "null_map"
self.runModule("r.mapcalc", expression=f"{null_map} = null()")

distances = [100, 200, 300]

module = SimpleModule(
"r.buffer",
input=null_map,
output=self.output,
distances=distances,
overwrite=True,
)
self.assertModule(module)

self.assertRasterExists(self.output)

expected_stats = {"n": 0}
self.assertRasterFitsUnivar(self.output, reference=expected_stats)

def test_ignore_zero_values(self):
"""Test r.buffer with input raster of only zero values using -z flag."""
zero_map = "zero_map"
self.runModule("r.mapcalc", expression=f"{zero_map} = 0")

distances = [100]

module = SimpleModule(
"r.buffer",
input=zero_map,
output=self.output,
distances=distances,
flags="z",
overwrite=True,
)
self.assertModule(module)

self.assertRasterExists(self.output)

expected_stats = {"n": 0}
self.assertRasterFitsUnivar(self.output, reference=expected_stats)


if __name__ == "__main__":
test()
Loading