Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Generify HttpResponseMessage #3

Draft
wants to merge 2 commits into
base: dev
Choose a base branch
from
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -64,8 +64,9 @@ public interface HttpRequestMessage<T> {
* @param status The HTTP status code to return to the caller of the function.
* @return An {@link HttpResponseMessage.Builder} instance containing the provided status and
* empty body.
* @param <R> The type of the body object that will be sent as a part of the HTTP Response
*/
HttpResponseMessage.Builder createResponseBuilder(HttpStatus status);
<R> HttpResponseMessage.Builder<R> createResponseBuilder(HttpStatus status);

/**
* Returns a {@link HttpResponseMessage.Builder} instance to build a HttpResponseMessage with
Expand All @@ -74,7 +75,8 @@ public interface HttpRequestMessage<T> {
* @param status The HTTP status code to return to the caller of the function.
* @return An {@link HttpResponseMessage.Builder} instance containing the provided status and
* empty body.
* @param <R> The type of the body object that will be sent as a part of the HTTP Response
*/
HttpResponseMessage.Builder createResponseBuilder(HttpStatusType status);
<R> HttpResponseMessage.Builder<R> createResponseBuilder(HttpStatusType status);

}
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,9 @@
* {https://github.com/Azure/azure-functions-java-library/blob/dev/src/main/java/com/microsoft/azure/functions/annotation/HttpTrigger.java}
* @see HttpRequestMessage
* @since 1.0.0
* @param <T> The type of the body object that will be sent as a part of the HTTP Response
*/
public interface HttpResponseMessage {
public interface HttpResponseMessage<T> {

/**
* Returns the HTTP status code set on the HttpResponseMessage instance.
Expand Down Expand Up @@ -45,12 +46,13 @@ default int getStatusCode() {
*
* @return the body of the HTTP response.
*/
Object getBody();
T getBody();

/**
* A builder to create an instance of HttpResponseMessage
* A builder to create an instance of HttpResponseMessage
* @param <T> the type of the body object that will be sent as a part of the HTTP Response
*/
public interface Builder {
interface Builder<T> {

/**
* Sets the status code to be used in the HttpResponseMessage object.
Expand All @@ -61,7 +63,7 @@ public interface Builder {
* @param status An HTTP status code representing the outcome of the HTTP request.
* @return this builder
*/
Builder status(HttpStatusType status);
Builder<T> status(HttpStatusType status);

/**
* Adds a (key, value) header to the response.
Expand All @@ -70,21 +72,21 @@ public interface Builder {
* @param value The value of the header value.
* @return this builder
*/
Builder header(String key, String value);
Builder<T> header(String key, String value);

/**
* Sets the body of the HTTP response.
*
* @param body The body of the HTTP response
* @return this builder
*/
Builder body(Object body);
Builder<T> body(T body);

/**
* Creates an instance of HttpMessageResponse with the values configured in this builder.
*
* @return an HttpMessageResponse object
*/
HttpResponseMessage build();
HttpResponseMessage<T> build();
}
}
Original file line number Diff line number Diff line change
Expand Up @@ -9,19 +9,19 @@
*/
public class HttpStatusTest {
@Test
public void set_custom_httpstatuscode() {
public void test_settingCustomStatusCode() {
HttpStatusType customHttpStatus = HttpStatusType.custom(209);
assertTrue(customHttpStatus.value() == 209);
assertEquals(209, customHttpStatus.value());
}

@Test
public void set_standard_httpstatuscode() {
public void test_standardStatusCode() {
HttpStatusType customHttpStatus = HttpStatus.OK;
assertTrue(customHttpStatus.value() == 200);
assertEquals(200, customHttpStatus.value());
}

@Test(expected = IllegalArgumentException.class)
public void set_invalid_httpstatuscode() {
public void test_invalidStatusCode_throwsException() {
HttpStatusType.custom(-100);
}
}