Skip to content

v0.2.47..v0.2.48 changeset OsmApiWriterTestServer.h

Garret Voltz edited this page Sep 27, 2019 · 1 revision
diff --git a/hoot-core-test/src/test/cpp/hoot/core/io/OsmApiWriterTestServer.h b/hoot-core-test/src/test/cpp/hoot/core/io/OsmApiWriterTestServer.h
new file mode 100644
index 0000000..b97e770
--- /dev/null
+++ b/hoot-core-test/src/test/cpp/hoot/core/io/OsmApiWriterTestServer.h
@@ -0,0 +1,125 @@
+/*
+ * 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/)
+ */
+
+#ifndef OSM_API_WRITER_TEST_SERVER_H
+#define OSM_API_WRITER_TEST_SERVER_H
+
+#include <hoot/core/util/HttpTestServer.h>
+
+namespace hoot
+{
+
+class CapabilitiesTestServer : public HttpTestServer
+{
+public:
+  /** Constructor */
+  CapabilitiesTestServer(int port) : HttpTestServer(port) { }
+
+protected:
+  /** respond() function that responds once to the OSM API Capabilities request */
+  virtual bool respond(HttpConnection::HttpConnectionPtr& connection) override;
+};
+
+class PermissionsTestServer : public HttpTestServer
+{
+public:
+  /** Constructor */
+  PermissionsTestServer(int port) : HttpTestServer(port) { }
+
+protected:
+  /** respond() function that responds once to the OSM API Permissions request */
+  virtual bool respond(HttpConnection::HttpConnectionPtr &connection) override;
+};
+
+class RetryConflictsTestServer : public HttpTestServer
+{
+public:
+  /** Constructor */
+  RetryConflictsTestServer(int port) : HttpTestServer(port) { }
+
+protected:
+  /** respond() function that responds to a series of OSM API requests
+   *  to simulate a 405 Method Not Allowed error to test error resolution
+   *  Requests, in order:
+   *   - Capabilities
+   *   - Permissions
+   *   - Changeset Create
+   *   - Changeset Upload - responding with an HTTP 405 error for the test
+   *   - Changeset Close
+   */
+  virtual bool respond(HttpConnection::HttpConnectionPtr& connection) override;
+};
+
+class RetryVersionTestServer : public HttpTestServer
+{
+public:
+  /** Constructor */
+  RetryVersionTestServer(int port) : HttpTestServer(port), _has_error(false) { }
+
+protected:
+  /** respond() function that responds to a series of OSM API requests
+   *  to simulate a mismatched element version
+   *  Requests, in order:
+   *  - Capabilities
+   *  - Permissions
+   *  - Changeset Create
+   *  - Changeset 1 Upload - respond with an HTTP 404 error for the test
+   *  - Element get
+   *  - Changeset 1 Upload - respond with updated version
+   *  - Changeset Close
+   */
+  virtual bool respond(HttpConnection::HttpConnectionPtr &connection) override;
+
+private:
+  /** Flag set to false until the first changeset has failed once */
+  bool _has_error;
+};
+
+class OsmApiSampleRequestResponse
+{
+public:
+  /** Sample Capabilities response body from '/api/0.6/capabilities'
+   *  see: https://wiki.openstreetmap.org/wiki/API_v0.6#Capabilities:_GET_.2Fapi.2Fcapabilities
+   */
+  static const char* SAMPLE_CAPABILITIES_RESPONSE;
+  /** Sample Permissions response body from '/api/0.6/permissions'
+   *  see: https://wiki.openstreetmap.org/wiki/API_v0.6#Retrieving_permissions:_GET_.2Fapi.2F0.6.2Fpermissions
+   */
+  static const char* SAMPLE_PERMISSIONS_RESPONSE;
+  /** Sample Changeset upload request body from '/api/0.6/changeset/#id/upload'
+   *  see: https://wiki.openstreetmap.org/wiki/API_v0.6#Diff_upload:_POST_.2Fapi.2F0.6.2Fchangeset.2F.23id.2Fupload
+   */
+  static const char* SAMPLE_CHANGESET_REQUEST;
+  /** Sample Changeset upload response body from '/api/0.6/changeset/1/upload' */
+  static const char* SAMPLE_CHANGESET_1_RESPONSE;
+  /** Sample element GET response from '/api/0.6/way/1' */
+  static const char* SAMPLE_ELEMENT_1_GET_RESPONSE;
+};
+
+}
+
+#endif  //  OSM_API_WRITER_TEST_SERVER_H
Clone this wiki locally