Skip to content

v0.2.48..v0.2.49 changeset OsmApiReaderTest.cpp

Garret Voltz edited this page Oct 2, 2019 · 1 revision
diff --git a/hoot-core-test/src/test/cpp/hoot/core/io/OsmApiReaderTest.cpp b/hoot-core-test/src/test/cpp/hoot/core/io/OsmApiReaderTest.cpp
new file mode 100644
index 0000000..9870063
--- /dev/null
+++ b/hoot-core-test/src/test/cpp/hoot/core/io/OsmApiReaderTest.cpp
@@ -0,0 +1,167 @@
+/*
+ * This file is part of Hootenanny.
+ *
+ * Hootenanny is free software: you can redistribute it and/or modify
+ * it under the terms of the GNU General Public License as published by
+ * the Free Software Foundation, either version 3 of the License, or
+ * (at your option) any later version.
+ *
+ * This program is distributed in the hope that it will be useful,
+ * but WITHOUT ANY WARRANTY; without even the implied warranty of
+ * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+ * GNU General Public License for more details.
+ *
+ * You should have received a copy of the GNU General Public License
+ * along with this program.  If not, see <http://www.gnu.org/licenses/>.
+ *
+ * --------------------------------------------------------------------
+ *
+ * The following copyright notices are generated automatically. If you
+ * have a new notice to add, please use the format:
+ * " * @copyright Copyright ..."
+ * This will properly maintain the copyright information. DigitalGlobe
+ * copyrights will be updated automatically.
+ *
+ * @copyright Copyright (C) 2019 DigitalGlobe (http://www.digitalglobe.com/)
+ */
+
+//  hoot
+#include <hoot/core/TestUtils.h>
+#include <hoot/core/io/OsmApiReader.h>
+#include <hoot/core/io/OsmXmlWriter.h>
+#include <hoot/core/util/ConfigOptions.h>
+#include <hoot/core/util/Log.h>
+#include <hoot/core/util/FileUtils.h>
+
+#include "OsmApiReaderTestServer.h"
+
+//  Run tests against a local test server
+#define RUN_LOCAL_TEST_SERVER
+
+namespace hoot
+{
+
+class OsmApiReaderTest : public HootTestFixture
+{
+  CPPUNIT_TEST_SUITE(OsmApiReaderTest);
+  CPPUNIT_TEST(runSimpleTest);
+  CPPUNIT_TEST(runSplitGeographicTest);
+  CPPUNIT_TEST(runSplitElementsTest);
+  CPPUNIT_TEST(runFailureTest);
+  CPPUNIT_TEST_SUITE_END();
+
+public:
+
+  const QString OSM_API_URL = "https://www.openstreetmap.org";
+  const QString LOCAL_TEST_API_URL = "http://localhost:%1";
+#ifdef RUN_LOCAL_OSM_API_SERVER
+  const QString LOCAL_OSM_API_URL = "http://<Enter local OSM API URL here>";
+#endif
+
+  const int PORT_SIMPLE =         9900;
+  const int PORT_SPLIT_GEO =      9901;
+  const int PORT_SPLIT_ELEMENTS = 9902;
+
+  OsmApiReaderTest()
+    : HootTestFixture("test-files/io/OsmApiReaderTest/",
+                      "test-output/io/OsmApiReaderTest/")
+  {
+    setResetType(ResetBasic);
+  }
+
+  void runSimpleTest()
+  {
+    SimpleReaderTestServer server(PORT_SIMPLE);
+    server.start();
+
+    OsmMapPtr map(new OsmMap());
+
+    OsmApiReader reader;
+    //  Set the bounds to be smaller than 0.25 degrees by 0.25 degrees so that there is no splitting
+    reader.setBounds(geos::geom::Envelope(-111.3914, -111.1942, 40.5557, 40.7577));
+    reader.open(LOCAL_TEST_API_URL.arg(PORT_SIMPLE) + "/api/0.6/map");
+    reader.read(map);
+
+    server.wait();
+
+    QString output = _outputPath + "SimpleTestOutput.osm";
+
+    OsmXmlWriter writer;
+    writer.write(map, output);
+    writer.close();
+
+    HOOT_FILE_EQUALS(_inputPath + "SimpleTestExpected.osm", output);
+  }
+
+  void runSplitGeographicTest()
+  {
+    GeographicSplitReaderTestServer server(PORT_SPLIT_GEO);
+    server.start();
+
+    OsmMapPtr map(new OsmMap());
+
+    OsmApiReader reader;
+    //  Set the bounds to be larger than 0.25 degrees by 0.25 degrees to cause a geographic split
+    reader.setBounds(geos::geom::Envelope(-111.3914, -111.1142, 40.4557, 40.7577));
+    reader.open(LOCAL_TEST_API_URL.arg(PORT_SPLIT_GEO) + "/api/0.6/map");
+    reader.read(map);
+
+    server.wait();
+
+    QString output = _outputPath + "SplitGeographicTestOutput.osm";
+
+    OsmXmlWriter writer;
+    writer.write(map, output);
+    writer.close();
+
+    HOOT_FILE_EQUALS(_inputPath + "SplitTestExpected.osm", output);
+  }
+
+  void runSplitElementsTest()
+  {
+    ElementSplitReaderTestServer server(PORT_SPLIT_ELEMENTS);
+    server.start();
+
+    OsmMapPtr map(new OsmMap());
+
+    OsmApiReader reader;
+    //  Set the bounds to be smaller than 0.25 degrees by 0.25 degrees so that it is split by elements on the server
+    reader.setBounds(geos::geom::Envelope(-111.3914, -111.1942, 40.5557, 40.7577));
+    reader.open(LOCAL_TEST_API_URL.arg(PORT_SPLIT_ELEMENTS) + "/api/0.6/map");
+    reader.read(map);
+
+    server.wait();
+
+    QString output = _outputPath + "SplitElementsTestOutput.osm";
+
+    OsmXmlWriter writer;
+    writer.write(map, output);
+    writer.close();
+
+    HOOT_FILE_EQUALS(_inputPath + "SplitTestExpected.osm", output);
+  }
+
+  void runFailureTest()
+  {
+    QString exceptionMsg("");
+    try
+    {
+      OsmMapPtr map(new OsmMap());
+      OsmApiReader reader;
+      //  Set the bounds to be larger than 1 degree by 1 degree so that it will fail
+      reader.setBounds(geos::geom::Envelope(-111.3914, -110.2914, 40.5557, 41.7557));
+      reader.open(LOCAL_TEST_API_URL.arg(PORT_SIMPLE) + "/api/0.6/map");
+      reader.read(map);
+    }
+    catch (const UnsupportedException& e)
+    {
+      exceptionMsg = e.what();
+    }
+    CPPUNIT_ASSERT(exceptionMsg == "Cannot request areas larger than 1.0000 square degrees.");
+  }
+};
+
+CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(OsmApiReaderTest, "quick");
+CPPUNIT_TEST_SUITE_NAMED_REGISTRATION(OsmApiReaderTest, "serial");
+
+}
Clone this wiki locally