mirror of
https://github.com/django/django.git
synced 2025-08-04 02:48:35 +00:00
Fixed #26972 -- Fixed is_collection definition in MapWidget initialization
This commit is contained in:
parent
5fa4370543
commit
f530b4fdfc
2 changed files with 33 additions and 1 deletions
|
@ -44,3 +44,35 @@ test('MapWidget.getControls', function(assert) {
|
|||
assert.equal(widget.controls[1].displayClass, 'olControlDrawFeaturePoint', 'Draw control');
|
||||
assert.equal(widget.controls[2].displayClass, 'olControlModifyFeature', 'Modify control');
|
||||
});
|
||||
|
||||
test('MapWidget.IsCollection', function(assert) {
|
||||
var options = {id: 'id_point', map_id: 'id_point_map', geom_name: 'Point'};
|
||||
var widget = new MapWidget(options);
|
||||
assert.notOk(widget.options.is_collection);
|
||||
// Empty the default initial Point
|
||||
document.getElementById('id_point').value = "";
|
||||
|
||||
options.geom_name = 'Polygon';
|
||||
widget = new MapWidget(options);
|
||||
assert.notOk(widget.options.is_collection);
|
||||
|
||||
options.geom_name = 'LineString';
|
||||
widget = new MapWidget(options);
|
||||
assert.notOk(widget.options.is_collection);
|
||||
|
||||
options.geom_name = 'MultiPoint';
|
||||
widget = new MapWidget(options);
|
||||
assert.ok(widget.options.is_collection);
|
||||
|
||||
options.geom_name = 'MultiPolygon';
|
||||
widget = new MapWidget(options);
|
||||
assert.ok(widget.options.is_collection);
|
||||
|
||||
options.geom_name = 'MultiLineString';
|
||||
widget = new MapWidget(options);
|
||||
assert.ok(widget.options.is_collection);
|
||||
|
||||
options.geom_name = 'GeometryCollection';
|
||||
widget = new MapWidget(options);
|
||||
assert.ok(widget.options.is_collection);
|
||||
});
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue