summaryrefslogtreecommitdiff
path: root/test/api/repeated_render.cpp
blob: 79349c67e7bb2fa9fac8b25001a0b2041909ec2b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
#include "../fixtures/util.hpp"
#include "../fixtures/fixture_log_observer.hpp"

#include <mbgl/map/map.hpp>
#include <mbgl/platform/default/headless_view.hpp>
#include <mbgl/platform/default/headless_display.hpp>
#include <mbgl/storage/default_file_source.hpp>
#include <mbgl/util/image.hpp>
#include <mbgl/util/io.hpp>

#include <future>

TEST(API, RepeatedRender) {
    using namespace mbgl;

    const auto style = util::read_file("test/fixtures/api/water.json");

    auto display = std::make_shared<mbgl::HeadlessDisplay>();
    HeadlessView view(display, 1, 256, 512);
    DefaultFileSource fileSource(nullptr);

    Log::setObserver(std::make_unique<FixtureLogObserver>());

    Map map(view, fileSource, MapMode::Still);

    {
        map.setStyleJSON(style, "");
        std::promise<UnassociatedImage> promise;
        map.renderStill([&promise](std::exception_ptr, UnassociatedImage&& image) {
            promise.set_value(std::move(image));
        });
        auto result = std::move(promise.get_future().get());
        ASSERT_EQ(256, result.width);
        ASSERT_EQ(512, result.height);
        util::write_file("test/fixtures/api/1.png", encodePNG(result));
    }

    {
        map.setStyleJSON(style, "TEST_DATA/suite");
        std::promise<UnassociatedImage> promise;
        map.renderStill([&promise](std::exception_ptr, UnassociatedImage&& image) {
            promise.set_value(std::move(image));
        });
        auto result = std::move(promise.get_future().get());
        ASSERT_EQ(256, result.width);
        ASSERT_EQ(512, result.height);
        util::write_file("test/fixtures/api/2.png", encodePNG(result));
    }

    auto observer = Log::removeObserver();
    auto flo = dynamic_cast<FixtureLogObserver*>(observer.get());
    auto unchecked = flo->unchecked();
    EXPECT_TRUE(unchecked.empty()) << unchecked;
}