-
Notifications
You must be signed in to change notification settings - Fork 26
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
✅ [#2173] Added tests for map component
- Loading branch information
1 parent
5e4a3b2
commit 9636d7d
Showing
3 changed files
with
323 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,292 @@ | ||
from unittest.mock import Mock, patch | ||
|
||
from django.test import TestCase | ||
|
||
from rest_framework.test import APIRequestFactory | ||
|
||
from openforms.config.models import GlobalConfiguration | ||
from openforms.config.tests.factories import MapTileLayerFactory | ||
from openforms.formio.datastructures import FormioConfigurationWrapper | ||
from openforms.formio.dynamic_config import ( | ||
rewrite_formio_components, | ||
rewrite_formio_components_for_request, | ||
) | ||
from openforms.submissions.tests.factories import SubmissionFactory | ||
|
||
rf = APIRequestFactory() | ||
|
||
|
||
class DynamicConfigTests(TestCase): | ||
@patch("openforms.formio.components.vanilla.GlobalConfiguration.get_solo") | ||
def test_map_without_default_map_config(self, m_solo: Mock): | ||
m_solo.return_value = GlobalConfiguration( | ||
form_map_default_zoom_level="8", | ||
form_map_default_latitude="55.123", | ||
form_map_default_longitude="56.456", | ||
) | ||
|
||
configuration = { | ||
"components": [ | ||
{ | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
} | ||
] | ||
} | ||
formio_configuration = FormioConfigurationWrapper(configuration) | ||
submission = SubmissionFactory.create() | ||
rewrite_formio_components(formio_configuration, submission) | ||
|
||
request = rf.get("/dummy") | ||
rewrite_formio_components_for_request(formio_configuration, request) | ||
|
||
expected = { | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
} | ||
self.assertEqual(configuration["components"][0], expected) | ||
|
||
@patch("openforms.formio.components.vanilla.GlobalConfiguration.get_solo") | ||
def test_map_with_default_map_config(self, m_solo: Mock): | ||
m_solo.return_value = GlobalConfiguration( | ||
form_map_default_zoom_level="8", | ||
form_map_default_latitude="55.123", | ||
form_map_default_longitude="56.456", | ||
) | ||
|
||
configuration = { | ||
"components": [ | ||
{ | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": True, | ||
} | ||
] | ||
} | ||
formio_configuration = FormioConfigurationWrapper(configuration) | ||
submission = SubmissionFactory.create() | ||
rewrite_formio_components(formio_configuration, submission) | ||
|
||
request = rf.get("/dummy") | ||
rewrite_formio_components_for_request(formio_configuration, request) | ||
|
||
expected = { | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "8", | ||
"initialCenter": { | ||
"lat": "55.123", | ||
"lng": "56.456", | ||
}, | ||
"useConfigDefaultMapSettings": True, | ||
} | ||
self.assertEqual(configuration["components"][0], expected) | ||
|
||
def test_map_without_tile_layer_identifier(self): | ||
configuration = { | ||
"components": [ | ||
{ | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": None, | ||
} | ||
] | ||
} | ||
formio_configuration = FormioConfigurationWrapper(configuration) | ||
submission = SubmissionFactory.create() | ||
rewrite_formio_components(formio_configuration, submission) | ||
|
||
request = rf.get("/dummy") | ||
rewrite_formio_components_for_request(formio_configuration, request) | ||
|
||
expected = { | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": None, | ||
} | ||
self.assertEqual(configuration["components"][0], expected) | ||
|
||
def test_map_with_invalid_tile_layer_identifier(self): | ||
configuration = { | ||
"components": [ | ||
{ | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": "", | ||
} | ||
] | ||
} | ||
formio_configuration = FormioConfigurationWrapper(configuration) | ||
submission = SubmissionFactory.create() | ||
rewrite_formio_components(formio_configuration, submission) | ||
|
||
request = rf.get("/dummy") | ||
rewrite_formio_components_for_request(formio_configuration, request) | ||
|
||
expected = { | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": "", | ||
} | ||
self.assertEqual(configuration["components"][0], expected) | ||
|
||
def test_map_with_valid_unknown_tile_layer_identifier(self): | ||
configuration = { | ||
"components": [ | ||
{ | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": "identifier", | ||
} | ||
] | ||
} | ||
formio_configuration = FormioConfigurationWrapper(configuration) | ||
submission = SubmissionFactory.create() | ||
rewrite_formio_components(formio_configuration, submission) | ||
|
||
request = rf.get("/dummy") | ||
rewrite_formio_components_for_request(formio_configuration, request) | ||
|
||
expected = { | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": "identifier", | ||
} | ||
self.assertEqual(configuration["components"][0], expected) | ||
|
||
def test_map_with_valid_known_tile_layer_identifier(self): | ||
map = MapTileLayerFactory.create(identifier="identifier") | ||
configuration = { | ||
"components": [ | ||
{ | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": "identifier", | ||
} | ||
] | ||
} | ||
formio_configuration = FormioConfigurationWrapper(configuration) | ||
submission = SubmissionFactory.create() | ||
rewrite_formio_components(formio_configuration, submission) | ||
|
||
request = rf.get("/dummy") | ||
rewrite_formio_components_for_request(formio_configuration, request) | ||
|
||
expected = { | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": False, | ||
"tileLayerIdentifier": "identifier", | ||
"tileLayerUrl": map.url, | ||
} | ||
self.assertEqual(configuration["components"][0], expected) | ||
|
||
@patch("openforms.formio.components.vanilla.GlobalConfiguration.get_solo") | ||
def test_map_with_valid_known_tile_layer_identifier_and_use_config_default_map_settings( | ||
self, m_solo: Mock | ||
): | ||
m_solo.return_value = GlobalConfiguration( | ||
form_map_default_zoom_level="8", | ||
form_map_default_latitude="55.123", | ||
form_map_default_longitude="56.456", | ||
) | ||
map = MapTileLayerFactory.create(identifier="identifier") | ||
configuration = { | ||
"components": [ | ||
{ | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "3", | ||
"initialCenter": { | ||
"lat": "43.23", | ||
"lng": "41.23", | ||
}, | ||
"useConfigDefaultMapSettings": True, | ||
"tileLayerIdentifier": "identifier", | ||
} | ||
] | ||
} | ||
formio_configuration = FormioConfigurationWrapper(configuration) | ||
submission = SubmissionFactory.create() | ||
rewrite_formio_components(formio_configuration, submission) | ||
|
||
request = rf.get("/dummy") | ||
rewrite_formio_components_for_request(formio_configuration, request) | ||
|
||
expected = { | ||
"type": "map", | ||
"key": "map", | ||
"defaultZoom": "8", | ||
"initialCenter": { | ||
"lat": "55.123", | ||
"lng": "56.456", | ||
}, | ||
"useConfigDefaultMapSettings": True, | ||
"tileLayerIdentifier": "identifier", | ||
"tileLayerUrl": map.url, | ||
} | ||
self.assertEqual(configuration["components"][0], expected) |