forked from hyperledger/besu
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
When sending a stack in json fields strip out the newlines and tabs. Signed-off-by: Danno Ferrin <[email protected]>
- Loading branch information
Showing
3 changed files
with
48 additions
and
1 deletion.
There are no files selected for viewing
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
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
46 changes: 46 additions & 0 deletions
46
ethereum/evmtool/src/test/java/org/hyperledger/besu/evmtool/T8nServerSubCommandTest.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,46 @@ | ||
package org.hyperledger.besu.evmtool; | ||
|
||
import static org.assertj.core.api.Assertions.assertThat; | ||
import static org.mockito.Mockito.verify; | ||
import static org.mockito.Mockito.when; | ||
|
||
import com.fasterxml.jackson.databind.ObjectMapper; | ||
import io.vertx.core.http.HttpServerRequest; | ||
import io.vertx.core.http.HttpServerResponse; | ||
import org.junit.jupiter.api.Test; | ||
import org.junit.jupiter.api.extension.ExtendWith; | ||
import org.mockito.Answers; | ||
import org.mockito.ArgumentCaptor; | ||
import org.mockito.Mock; | ||
import org.mockito.junit.jupiter.MockitoExtension; | ||
|
||
@ExtendWith(MockitoExtension.class) | ||
class T8nServerSubCommandTest { | ||
|
||
@Mock HttpServerRequest httpServerRequest; | ||
|
||
@Mock(answer = Answers.RETURNS_SELF) | ||
HttpServerResponse httpServerResponse; | ||
|
||
@Test | ||
void exceptionEncodedProperlyInJSON() { | ||
T8nServerSubCommand subject = new T8nServerSubCommand(); | ||
ObjectMapper objectMapper = new ObjectMapper(); | ||
|
||
when(httpServerRequest.response()).thenReturn(httpServerResponse); | ||
|
||
// Should trigger a NPE within the try block. | ||
subject.handleT8nRequest(httpServerRequest, objectMapper, null, null); | ||
|
||
ArgumentCaptor<Integer> responseCodeCaptor = ArgumentCaptor.forClass(Integer.class); | ||
ArgumentCaptor<String> responseStringCaptor = ArgumentCaptor.forClass(String.class); | ||
|
||
verify(httpServerResponse).setStatusCode(responseCodeCaptor.capture()); | ||
verify(httpServerResponse).end(responseStringCaptor.capture()); | ||
|
||
System.out.println(responseCodeCaptor.getValue()); | ||
System.out.println(responseStringCaptor.getValue()); | ||
assertThat(responseCodeCaptor.getValue()).isEqualTo(500); | ||
assertThat(responseStringCaptor.getValue()).doesNotContain("\\t"); | ||
} | ||
} |