-
Notifications
You must be signed in to change notification settings - Fork 304
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Handle invalid Json bad request body in PostStateValidators (#7739)
- Loading branch information
1 parent
5ec5d34
commit 982c442
Showing
2 changed files
with
56 additions
and
1 deletion.
There are no files selected for viewing
39 changes: 39 additions & 0 deletions
39
...st/java/tech/pegasys/teku/beaconrestapi/v1/beacon/PostStateValidatorsIntegrationTest.java
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,39 @@ | ||
/* | ||
* Copyright Consensys Software Inc., 2023 | ||
* | ||
* Licensed 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 tech.pegasys.teku.beaconrestapi.v1.beacon; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static tech.pegasys.teku.infrastructure.http.HttpStatusCodes.SC_BAD_REQUEST; | ||
|
||
import okhttp3.Response; | ||
import org.junit.jupiter.api.BeforeEach; | ||
import org.junit.jupiter.api.Test; | ||
import tech.pegasys.teku.beaconrestapi.AbstractDataBackedRestAPIIntegrationTest; | ||
import tech.pegasys.teku.beaconrestapi.handlers.v1.beacon.GetStateValidators; | ||
|
||
public class PostStateValidatorsIntegrationTest extends AbstractDataBackedRestAPIIntegrationTest { | ||
|
||
@BeforeEach | ||
public void setup() { | ||
startRestAPIAtGenesis(); | ||
} | ||
|
||
@Test | ||
public void shouldReturnBadRequestWhenRequestBodyIsInvalidJson() throws Exception { | ||
Response response = post(GetStateValidators.ROUTE, "{\"ids\": [\"1, \"2\"]}"); | ||
|
||
assertThat(response.code()).isEqualTo(SC_BAD_REQUEST); | ||
assertThat(response.body().string()).contains("Unexpected character"); | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters