summaryrefslogtreecommitdiff
path: root/tests/gis_tests/rasterapp
AgeCommit message (Collapse)Author
2026-02-03Fixed CVE-2026-1207 -- Prevented SQL injections in RasterField lookups via ↵Jacob Walls
band index. Thanks Tarek Nakkouch for the report, and Simon Charette for the initial triage and review.
2026-01-20Refs #36639 -- Updated test migrations to match models.Skyiesac
2023-09-20Fixed #34851 -- Dropped support for PostgreSQL 12 and PostGIS 2.5.Mariusz Felisiak
2023-02-01Refs #33476 -- Applied Black's 2023 stable style.David Smith
Black 23.1.0 is released which, as the first release of the year, introduces the 2023 stable style. This incorporates most of last year's preview style. https://github.com/psf/black/releases/tag/23.1.0
2022-02-07Refs #33476 -- Reformatted code with Black.django-bot
2021-07-30Refs #32956 -- Updated words ending in -wards.David Smith
AP styleguide: Virtually none of the words ending with -wards end with an s.
2020-07-30Bumped minimum isort version to 5.1.0.David Smith
Fixed inner imports per isort 5. isort 5.0.0 to 5.1.0 was unstable.
2020-04-14Refs #31196 -- Installed postgis_raster extension on PostGIS 3+.Claude Paroz
2020-03-07Refs #30489 -- Fixed RasterFieldTest.test_deserialize_with_pixeltype_flags() ↵Mariusz Felisiak
when run without numpy.
2020-03-07Replaced deprecated assertEquals() with assertEqual() in RasterFieldTest.Mariusz Felisiak
2020-03-05Fixed #30489 -- Fixed RasterField deserialization with pixeltype flags.Hasan Ramezani
Thanks Ivor Bosloper for the original patch.
2019-05-27Fixed typo in RasterField test name.Ivor Bosloper
2019-03-03Reverted "Fixed relative paths imports per isort 4.3.5."Mariusz Felisiak
This reverts commit 463fe11bc8b2d068e447c5df677e7a31c2af7e03 due to restore of relative paths sorting from isort < 4.3.5 in isort 4.3.10.
2019-02-25Fixed relative paths imports per isort 4.3.5.Mariusz Felisiak
2017-10-21Removed unnecessary tuple()/list() calls.Mads Jensen
2017-07-20Simplified handling of GIS lookup params.Sergey Fedoseev
2017-07-20Tested the case when the lhs of a raster lookup has an index specified and ↵Sergey Fedoseev
the rhs doesn't.
2017-07-18Removed redundant lookup values in ↵Sergey Fedoseev
RasterFieldTest.test_all_gis_lookups_with_rasters. These values produce already tested lookups and prevent another one from being tested.
2017-07-18Fixed RasterFieldTest.test_all_gis_lookups_with_rasters.Sergey Fedoseev
It was inadvertently made a no-op in 378cf689d8772d917f642a80967ab8a2332eb41c.
2017-06-01Refs #23968 -- Removed unnecessary lists, generators, and tuple calls.Jon Dufresne
2017-05-04Fixed #28160 -- Prevented hiding GDAL exceptions when it's not installed.Tim Graham
2017-04-01Fixed #25605 -- Made GIS DB functions accept geometric expressions, not only ↵Sergey Fedoseev
values, in all positions.
2017-03-29Made isvalid lookup use IsValid function to decrease code redundancy.Sergey Fedoseev
2017-03-27Refs #27736 -- Used decorators for GIS lookup registration.Sergey Fedoseev
2016-11-19Fixed #27493 -- Fixed test failure with recent GDAL versionsNicolas Noé
2016-11-15Refs #26753 -- Removed obsolete workarounds in GIS tests for lack of GDAL.Adam Chainz
Missed in f7a363ee1d2039824d95f35e54219e09c5af67b0.
2016-09-02Added error messages for GIS DB functions when used with rasters.Daniel Wiesmann
2016-06-18Fixed #26753 -- Made GDAL a required dependency for contrib.gisClaude Paroz
Thanks Tim Graham for the review.
2016-06-16Fixed #26747 -- Used more specific assertions in the Django test suite.Jon Dufresne
2016-05-06Fixed #25588 -- Added spatial lookups to RasterField.Daniel Wiesmann
Thanks Tim Graham for the review.
2015-11-19Allowed RasterFieldWithoutGDALTest to run even if GDAL is installed.Sergey Fedoseev
2015-07-10Fixed #25072 -- Prevented GDALRaster memory to be uncollectableClaude Paroz
Setting GDALRaster.bands as a cached property was creating a circular reference with objects having __del__ methods, which means the memory could never be freed. Thanks Daniel Wiesmann for the report and test, and Tim Graham for the review.
2015-06-23Fixed #25011, Refs #23804 -- Added check for GDAL on RasterField initializationDaniel Wiesmann
2015-06-19Fixed #23804 -- Added RasterField for PostGIS.Daniel Wiesmann
Thanks to Tim Graham and Claude Paroz for the reviews and patches.