File: test-122.cpp

package info (click to toggle)
libosmium 2.22.0-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 4,544 kB
  • sloc: cpp: 52,804; sh: 148; makefile: 19
file content (41 lines) | stat: -rw-r--r-- 1,028 bytes parent folder | download | duplicates (6)
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

#include <cstring>
#include <stdexcept>

#include "common.hpp"

class TestHandler122 : public osmium::handler::Handler {

public:

    TestHandler122() :
        osmium::handler::Handler() {
    }

    void way(const osmium::Way& way) const {
        if (way.id() == 122800) {
            REQUIRE(way.version() == 1);
            REQUIRE(way.nodes().size() == 2);
            REQUIRE(way.nodes()[0] == way.nodes()[1]);
        } else {
            throw std::runtime_error{"Unknown ID"};
        }
    }

}; // class TestHandler122

TEST_CASE("122") {
    osmium::io::Reader reader{dirname + "/1/122/data.osm"};

    index_pos_type index_pos;
    index_neg_type index_neg;
    location_handler_type location_handler{index_pos, index_neg};
    location_handler.ignore_errors();

    CheckBasicsHandler check_basics_handler{122, 1, 1, 0};
    CheckWKTHandler check_wkt_handler{dirname, 122};
    TestHandler122 test_handler;

    osmium::apply(reader, location_handler, check_basics_handler, check_wkt_handler, test_handler);
}