mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-23 03:44:38 -05:00
48 lines
1.3 KiB
Python
48 lines
1.3 KiB
Python
from app.models.broadcast_message import BroadcastMessage
|
|
from tests import broadcast_message_json
|
|
|
|
|
|
def test_simple_polygons(fake_uuid):
|
|
broadcast_message = BroadcastMessage(broadcast_message_json(
|
|
id_=fake_uuid,
|
|
service_id=fake_uuid,
|
|
template_id=fake_uuid,
|
|
status='draft',
|
|
created_by_id=fake_uuid,
|
|
areas=[
|
|
# Hackney Central
|
|
'wd20-E05009372',
|
|
# Hackney Wick
|
|
'wd20-E05009374',
|
|
],
|
|
))
|
|
|
|
assert [
|
|
[
|
|
len(polygon)
|
|
for polygon in broadcast_message.polygons.as_coordinate_pairs_lat_long
|
|
],
|
|
[
|
|
len(polygon)
|
|
for polygon in broadcast_message.simple_polygons.as_coordinate_pairs_lat_long
|
|
],
|
|
] == [
|
|
# One polygon for each area
|
|
[27, 31],
|
|
# Because the areas are close to each other, the simplification
|
|
# and unioning process results in a single polygon with fewer
|
|
# total coordinates
|
|
[51],
|
|
]
|
|
|
|
|
|
def test_content_comes_from_attribute_not_template(fake_uuid):
|
|
broadcast_message = BroadcastMessage(broadcast_message_json(
|
|
id_=fake_uuid,
|
|
service_id=fake_uuid,
|
|
template_id=fake_uuid,
|
|
status='draft',
|
|
created_by_id=fake_uuid,
|
|
))
|
|
assert broadcast_message.content == 'This is a test'
|