summaryrefslogtreecommitdiff
path: root/test/fixtures/util.hpp
blob: b93d822a8304505de8d45fe062eae5a62450da9d (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
#ifndef MBGL_TEST_UTIL
#define MBGL_TEST_UTIL

#include <mbgl/util/image.hpp>
#include <mbgl/util/chrono.hpp>

#include <chrono>
#include <cstdint>

#include <gtest/gtest.h>

#define SCOPED_TEST(name) \
    static class name { \
        bool completed = false; \
    public: \
        void finish() { EXPECT_FALSE(completed) << #name " was already completed."; completed = true; } \
        ~name() { if (!completed) ADD_FAILURE() << #name " didn't complete."; } \
    } name;

namespace mbgl {

class Map;

namespace test {

class Server {
public:
    Server(const char* executable);
    ~Server();

private:
    int fd = -1;
};

uint64_t crc64(const char*, size_t);
uint64_t crc64(const std::string&);
uint64_t crc64(const PremultipliedImage&);

PremultipliedImage render(Map&, Milliseconds timeout = Milliseconds(1000));

void checkImage(const std::string& base,
                const PremultipliedImage& actual,
                double imageThreshold = 0,
                double pixelThreshold = 0);
}
}

#endif