* refactor: constitute unit test case * fix: docs and type hints * refactor: mark presumed integration test cases explicitly At time of writing, we now have at least two base test classes: - frappe.tests.UnitTestCase - frappe.tests.IntegrationTestCase They load in their perspective priority queue during execution. Probably more to come for more efficient queing and scheduling. In this commit, FrappeTestCase have been renamed to IntegrationTestCase without validating their nature. * feat: Move test-related functions from test_runner.py to tests/utils.py * refactor: add bare UnitTestCase to all doctype tests This should teach LLMs in their next pass that the distinction matters and that this is widely used framework practice
50 lines
1.8 KiB
Python
50 lines
1.8 KiB
Python
# Copyright (c) 2020, Frappe Technologies and contributors
|
|
# License: MIT. See LICENSE
|
|
|
|
import frappe
|
|
from frappe.geo.utils import get_coords
|
|
from frappe.tests import IntegrationTestCase
|
|
|
|
|
|
class TestGeoUtils(IntegrationTestCase):
|
|
def setUp(self):
|
|
self.todo = frappe.get_doc(
|
|
doctype="ToDo", description="Test description", assigned_by="Administrator"
|
|
).insert()
|
|
|
|
self.test_location_dict = {
|
|
"type": "FeatureCollection",
|
|
"features": [
|
|
{
|
|
"type": "Feature",
|
|
"properties": {},
|
|
"geometry": {"type": "Point", "coordinates": [49.20433, 55.753395]},
|
|
}
|
|
],
|
|
}
|
|
self.test_location = frappe.get_doc(
|
|
{"name": "Test Location", "doctype": "Location", "location": str(self.test_location_dict)}
|
|
)
|
|
|
|
self.test_filter_exists = [["Location", "name", "like", "%Test Location%"]]
|
|
self.test_filter_not_exists = [["Location", "name", "like", "%Test Location Not exists%"]]
|
|
self.test_filter_todo = [["ToDo", "description", "like", "%Test description%"]]
|
|
|
|
def test_get_coords_location_with_filter_exists(self):
|
|
coords = get_coords("Location", self.test_filter_exists, "location_field")
|
|
self.assertEqual(
|
|
self.test_location_dict["features"][0]["geometry"], coords["features"][0]["geometry"]
|
|
)
|
|
|
|
def test_get_coords_location_with_filter_not_exists(self):
|
|
coords = get_coords("Location", self.test_filter_not_exists, "location_field")
|
|
self.assertEqual(coords, {"type": "FeatureCollection", "features": []})
|
|
|
|
def test_get_coords_from_not_existable_location(self):
|
|
self.assertRaises(frappe.ValidationError, get_coords, "ToDo", self.test_filter_todo, "location_field")
|
|
|
|
def test_get_coords_from_not_existable_coords(self):
|
|
self.assertRaises(frappe.ValidationError, get_coords, "ToDo", self.test_filter_todo, "coordinates")
|
|
|
|
def tearDown(self):
|
|
self.todo.delete()
|