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 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
|
// Copyright (c) 2012-2013, IGN France.
// Copyright (c) 2012-2024, Oslandia.
// Copyright (c) 2024-2025, SFCGAL team.
// SPDX-License-Identifier: LGPL-2.0-or-later
#include <fstream>
#include "SFCGAL/GeometryCollection.h"
#include "SFCGAL/LineString.h"
#include "SFCGAL/MultiLineString.h"
#include "SFCGAL/MultiPoint.h"
#include "SFCGAL/MultiPolygon.h"
#include "SFCGAL/MultiSolid.h"
#include "SFCGAL/Point.h"
#include "SFCGAL/Polygon.h"
#include "SFCGAL/PolyhedralSurface.h"
#include "SFCGAL/Solid.h"
#include "SFCGAL/Triangle.h"
#include "SFCGAL/TriangulatedSurface.h"
#include "SFCGAL/io/wkt.h"
#include "../test_config.h"
#include "Bench.h"
#include <boost/format.hpp>
#include <boost/test/unit_test.hpp>
using namespace boost::unit_test;
using namespace SFCGAL;
BOOST_AUTO_TEST_SUITE(SFCGAL_BenchWKT)
//
// Test limit case
BOOST_AUTO_TEST_CASE(testReadPoints)
{
const int N = 100000;
bench().start(boost::format("READ WKT POINTS"));
for (int i = 0; i < N; i++) {
io::readWkt("POINT (50000 50000)");
}
bench().stop();
}
//
// Test limit case
BOOST_AUTO_TEST_CASE(testReadLineString)
{
const int N = 100000;
bench().start(boost::format("READ WKT LINESTRING"));
for (int i = 0; i < N; i++) {
io::readWkt("LINESTRING (0 0,0 1000,1000 1000)");
}
bench().stop();
}
//
// Test limit case
BOOST_AUTO_TEST_CASE(testReadPolygon)
{
const int N = 100000;
bench().start(boost::format("READ WKT POLYGON"));
for (int i = 0; i < N; i++) {
io::readWkt("POLYGON ((0 0,0 1000,1000 1000,1000 0,0 0))");
}
bench().stop();
}
//
// Test limit case
BOOST_AUTO_TEST_CASE(testReadTriangle)
{
const int N = 100000;
bench().start(boost::format("READ WKT TRIANGLE"));
for (int i = 0; i < N; i++) {
io::readWkt("TRIANGLE ((0 0,0 1000,1000 1000,0 0))");
}
bench().stop();
}
//
// Test limit case
BOOST_AUTO_TEST_CASE(testReadSolid)
{
const int N = 10000;
bench().start(boost::format("READ WKT SOLID"));
for (int i = 0; i < N; i++) {
io::readWkt(
"SOLID ((((0.0 0.0 0.0,0.0 1.0 0.0,1.0 1.0 0.0,1.0 0.0 0.0,0.0 0.0 "
"0.0),(0.2 0.2 0.0,0.8 0.2 0.0,0.8 0.8 0.0,0.2 0.8 0.0,0.2 0.2 "
"0.0)),((0.0 0.0 1.0,1.0 0.0 1.0,1.0 1.0 1.0,0.0 1.0 1.0,0.0 0.0 "
"1.0),(0.2 0.2 1.0,0.2 0.8 1.0,0.8 0.8 1.0,0.8 0.2 1.0,0.2 0.2 "
"1.0)),((0.0 0.0 0.0,0.0 0.0 1.0,0.0 1.0 1.0,0.0 1.0 0.0,0.0 0.0 "
"0.0)),((0.0 1.0 0.0,0.0 1.0 1.0,1.0 1.0 1.0,1.0 1.0 0.0,0.0 1.0 "
"0.0)),((1.0 1.0 0.0,1.0 1.0 1.0,1.0 0.0 1.0,1.0 0.0 0.0,1.0 1.0 "
"0.0)),((1.0 0.0 0.0,1.0 0.0 1.0,0.0 0.0 1.0,0.0 0.0 0.0,1.0 0.0 "
"0.0)),((0.2 0.2 0.0,0.2 0.2 1.0,0.8 0.2 1.0,0.8 0.2 0.0,0.2 0.2 "
"0.0)),((0.8 0.2 0.0,0.8 0.2 1.0,0.8 0.8 1.0,0.8 0.8 0.0,0.8 0.2 "
"0.0)),((0.8 0.8 0.0,0.8 0.8 1.0,0.2 0.8 1.0,0.2 0.8 0.0,0.8 0.8 "
"0.0)),((0.2 0.8 0.0,0.2 0.8 1.0,0.2 0.2 1.0,0.2 0.2 0.0,0.2 0.8 "
"0.0))))");
}
bench().stop();
}
BOOST_AUTO_TEST_SUITE_END()
|