#include #include #include #include #include #include #include #include #include #include #include #include using namespace mbgl; std::shared_ptr namedMarker(const std::string &name) { PremultipliedImage image = decodeImage(util::read_file("test/fixtures/sprites/" + name)); return std::make_shared(std::move(image), 1.0); } namespace { void checkRendering(Map& map, const char * name) { test::checkImage(std::string("test/fixtures/annotations/") + name, test::render(map), 0.0002, 0.1); } } // end namespace TEST(Annotations, PointAnnotation) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); map.addAnnotationIcon("default_marker", namedMarker("default_marker.png")); map.addPointAnnotation(PointAnnotation({ 0, 0 }, "default_marker")); checkRendering(map, "point_annotation"); } TEST(Annotations, LineAnnotation) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); AnnotationSegments segments = {{ {{ { 0, 0 }, { 45, 45 } }} }}; LineAnnotationProperties properties; properties.color = {{ 255, 0, 0, 1 }}; properties.width = 5; map.addShapeAnnotation(ShapeAnnotation(segments, properties)); checkRendering(map, "line_annotation"); } TEST(Annotations, FillAnnotation) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); AnnotationSegments segments = {{ {{ { 0, 0 }, { 0, 45 }, { 45, 45 }, { 45, 0 } }} }}; FillAnnotationProperties properties; properties.color = {{ 255, 0, 0, 1 }}; map.addShapeAnnotation(ShapeAnnotation(segments, properties)); checkRendering(map, "fill_annotation"); } TEST(Annotations, StyleSourcedShapeAnnotation) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/annotation.json"), ""); AnnotationSegments segments = {{ {{ { 0, 0 }, { 0, 45 }, { 45, 45 }, { 45, 0 } }} }}; map.addShapeAnnotation(ShapeAnnotation(segments, "annotation")); checkRendering(map, "style_sourced_shape_annotation"); } TEST(Annotations, AddMultiple) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); map.addAnnotationIcon("default_marker", namedMarker("default_marker.png")); map.addPointAnnotation(PointAnnotation({ 0, -10 }, "default_marker")); test::render(map); map.addPointAnnotation(PointAnnotation({ 0, 10 }, "default_marker")); checkRendering(map, "add_multiple"); } TEST(Annotations, NonImmediateAdd) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); test::render(map); AnnotationSegments segments = {{ {{ { 0, 0 }, { 0, 45 }, { 45, 45 }, { 45, 0 } }} }}; FillAnnotationProperties properties; properties.color = {{ 255, 0, 0, 1 }}; map.addShapeAnnotation(ShapeAnnotation(segments, properties)); checkRendering(map, "non_immediate_add"); } TEST(Annotations, UpdateIcon) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); map.addAnnotationIcon("flipped_marker", namedMarker("default_marker.png")); map.addPointAnnotation(PointAnnotation({ 0, 0 }, "flipped_marker")); test::render(map); map.removeAnnotationIcon("flipped_marker"); map.addAnnotationIcon("flipped_marker", namedMarker("flipped_marker.png")); map.update(Update::Annotations); checkRendering(map, "update_icon"); } TEST(Annotations, UpdatePoint) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); map.addAnnotationIcon("default_marker", namedMarker("default_marker.png")); map.addAnnotationIcon("flipped_marker", namedMarker("flipped_marker.png")); AnnotationID point = map.addPointAnnotation(PointAnnotation({ 0, 0 }, "default_marker")); test::render(map); map.updatePointAnnotation(point, PointAnnotation({ 0, -10 }, "flipped_marker")); checkRendering(map, "update_point"); } TEST(Annotations, RemovePoint) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); map.addAnnotationIcon("default_marker", namedMarker("default_marker.png")); AnnotationID point = map.addPointAnnotation(PointAnnotation({ 0, 0 }, "default_marker")); test::render(map); map.removeAnnotation(point); checkRendering(map, "remove_point"); } TEST(Annotations, RemoveShape) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; AnnotationSegments segments = {{ {{ { 0, 0 }, { 45, 45 } }} }}; LineAnnotationProperties properties; properties.color = {{ 255, 0, 0, 1 }}; properties.width = 5; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); AnnotationID shape = map.addShapeAnnotation(ShapeAnnotation(segments, properties)); test::render(map); map.removeAnnotation(shape); checkRendering(map, "remove_shape"); } TEST(Annotations, ImmediateRemoveShape) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.removeAnnotation(map.addShapeAnnotation(ShapeAnnotation({}, {}))); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); test::render(map); } TEST(Annotations, SwitchStyle) { util::RunLoop loop; auto display = std::make_shared(); HeadlessView view(display, 1); StubFileSource fileSource; Map map(view, fileSource, MapMode::Still); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); map.addAnnotationIcon("default_marker", namedMarker("default_marker.png")); map.addPointAnnotation(PointAnnotation({ 0, 0 }, "default_marker")); test::render(map); map.setStyleJSON(util::read_file("test/fixtures/api/empty.json"), ""); checkRendering(map, "switch_style"); }