nastra commented on code in PR #11769:
URL: https://github.com/apache/iceberg/pull/11769#discussion_r1883856330


##########
core/src/test/java/org/apache/iceberg/rest/TestHTTPRequest.java:
##########
@@ -0,0 +1,138 @@
+/*
+ * Licensed to the Apache Software Foundation (ASF) under one
+ * or more contributor license agreements.  See the NOTICE file
+ * distributed with this work for additional information
+ * regarding copyright ownership.  The ASF licenses this file
+ * to you under the Apache License, Version 2.0 (the
+ * "License"); you may not use this file except in compliance
+ * with the License.  You may obtain a copy of the License at
+ *
+ *   http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing,
+ * software distributed under the License is distributed on an
+ * "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY
+ * KIND, either express or implied.  See the License for the
+ * specific language governing permissions and limitations
+ * under the License.
+ */
+package org.apache.iceberg.rest;
+
+import static org.assertj.core.api.Assertions.assertThat;
+import static org.assertj.core.api.Assertions.assertThatThrownBy;
+
+import java.net.URI;
+import java.util.stream.Stream;
+import org.apache.iceberg.catalog.Namespace;
+import org.apache.iceberg.exceptions.RESTException;
+import org.apache.iceberg.relocated.com.google.common.collect.ImmutableMap;
+import org.apache.iceberg.rest.requests.CreateNamespaceRequest;
+import org.junit.jupiter.api.Test;
+import org.junit.jupiter.params.ParameterizedTest;
+import org.junit.jupiter.params.provider.Arguments;
+import org.junit.jupiter.params.provider.MethodSource;
+
+class TestHTTPRequest {
+
+  @ParameterizedTest
+  @MethodSource("validRequestUris")
+  public void requestUriSuccess(HTTPRequest request, URI expected) {
+    assertThat(request.requestUri()).isEqualTo(expected);
+  }
+
+  public static Stream<Arguments> validRequestUris() {
+    return Stream.of(
+        Arguments.of(
+            ImmutableHTTPRequest.builder()
+                .baseUri(URI.create("http://localhost:8080/foo";))
+                .method(HTTPRequest.HTTPMethod.GET)
+                .path("v1/namespaces/ns/tables/") // trailing slash should be 
removed
+                .putQueryParameter("pageToken", "1234")
+                .putQueryParameter("pageSize", "10")
+                .build(),
+            URI.create(
+                
"http://localhost:8080/foo/v1/namespaces/ns/tables?pageToken=1234&pageSize=10";)),
+        Arguments.of(
+            ImmutableHTTPRequest.builder()
+                .baseUri(URI.create("http://localhost:8080/foo";))
+                .method(HTTPRequest.HTTPMethod.GET)
+                .path("https://authserver.com/token";) // absolute path HTTPS
+                .build(),
+            URI.create("https://authserver.com/token";)),
+        Arguments.of(
+            ImmutableHTTPRequest.builder()
+                .baseUri(URI.create("http://localhost:8080/foo";))
+                .method(HTTPRequest.HTTPMethod.GET)
+                .path("http://authserver.com/token";) // absolute path HTTP
+                .build(),
+            URI.create("http://authserver.com/token";)));
+  }
+
+  @Test
+  public void malformedPath() {
+    assertThatThrownBy(
+            () ->
+                ImmutableHTTPRequest.builder()
+                    .baseUri(URI.create("http://localhost";))
+                    .method(HTTPRequest.HTTPMethod.GET)
+                    .path("/v1/namespaces") // wrong leading slash
+                    .build())
+        .isInstanceOf(RESTException.class)
+        .hasMessage(
+            "Received a malformed path for a REST request: /v1/namespaces. 
Paths should not start with /");
+  }
+
+  @Test
+  public void invalidPath() {
+    HTTPRequest request =
+        ImmutableHTTPRequest.builder()
+            .baseUri(URI.create("http://localhost";))
+            .method(HTTPRequest.HTTPMethod.GET)
+            .path(" not a valid path") // wrong path
+            .build();
+    assertThatThrownBy(request::requestUri)
+        .isInstanceOf(RESTException.class)
+        .hasMessage(
+            "Failed to create request URI from base http://localhost/ not a 
valid path, params {}");
+  }
+
+  @ParameterizedTest
+  @MethodSource("validRequestBodies")
+  public void encodedBody(HTTPRequest request, String expected) {
+    assertThat(request.encodedBody()).isEqualTo(expected);

Review Comment:
   personally I think the test code would be much more readable without having 
a parameterized test and rather have just two separate test methods that verify 
the body is properly encoded as form data/JSON, but I'm ok with what's 
currently here and I'll leave that up to you.
   
   Also we probably might want to have some tests where the body can't be 
encoded due to:
   * body is null
   * body is a Map with null values
   * body is an invalid JSON



-- 
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org
For additional commands, e-mail: issues-h...@iceberg.apache.org

Reply via email to