Search in sources :

Example 11 with BoltIOException

use of org.neo4j.bolt.messaging.BoltIOException in project neo4j by neo4j.

the class PullMessageTest method shouldThrowExceptionIfFailedToParseTransactionMetadataCorrectly.

@Test
void shouldThrowExceptionIfFailedToParseTransactionMetadataCorrectly() throws Throwable {
    // Given
    Map<String, Object> msgMetadata = map("n", "invalid value type");
    MapValue meta = asMapValue(msgMetadata);
    // When & Then
    BoltIOException exception = assertThrows(BoltIOException.class, () -> new PullMessage(meta));
    assertThat(exception.getMessage()).startsWith("Expecting PULL size n to be a Long value, but got: String(\"invalid value type\")");
}
Also used : BoltIOException(org.neo4j.bolt.messaging.BoltIOException) ValueUtils.asMapValue(org.neo4j.kernel.impl.util.ValueUtils.asMapValue) MapValue(org.neo4j.values.virtual.MapValue) Test(org.junit.jupiter.api.Test) ParameterizedTest(org.junit.jupiter.params.ParameterizedTest)

Example 12 with BoltIOException

use of org.neo4j.bolt.messaging.BoltIOException in project neo4j by neo4j.

the class PullMessageTest method shouldThrowExceptionIfMissingMeta.

@Test
void shouldThrowExceptionIfMissingMeta() throws Throwable {
    // When & Then
    BoltIOException exception = assertThrows(BoltIOException.class, () -> new PullMessage(MapValue.EMPTY));
    assertThat(exception.getMessage()).startsWith("Expecting PULL size n to be a Long value, but got: NO_VALUE");
}
Also used : BoltIOException(org.neo4j.bolt.messaging.BoltIOException) Test(org.junit.jupiter.api.Test) ParameterizedTest(org.junit.jupiter.params.ParameterizedTest)

Example 13 with BoltIOException

use of org.neo4j.bolt.messaging.BoltIOException in project neo4j by neo4j.

the class PullMessageTest method shouldThrowExceptionIfZero.

@ParameterizedTest
@ValueSource(longs = { -100L, 0L })
void shouldThrowExceptionIfZero(long value) throws Throwable {
    // When & Then
    BoltIOException exception = assertThrows(BoltIOException.class, () -> new PullMessage(asMapValue(singletonMap("n", value))));
    assertThat(exception.getMessage()).startsWith("Expecting PULL size to be at least 1");
}
Also used : BoltIOException(org.neo4j.bolt.messaging.BoltIOException) ValueSource(org.junit.jupiter.params.provider.ValueSource) ParameterizedTest(org.junit.jupiter.params.ParameterizedTest)

Example 14 with BoltIOException

use of org.neo4j.bolt.messaging.BoltIOException in project neo4j by neo4j.

the class HelloMessageDecoderTest method testShouldErrorForMissingUserAgent.

@Test
protected void testShouldErrorForMissingUserAgent() throws Exception {
    Neo4jPack neo4jPack = newNeo4jPack();
    Map<String, Object> authToken = new HashMap<>();
    HelloMessage originalMessage = new HelloMessage(authToken);
    PackedInputArray input = new PackedInputArray(encode(neo4jPack, originalMessage));
    Neo4jPack.Unpacker unpacker = neo4jPack.newUnpacker(input);
    // these two steps are executed before decoding in order to select a correct decoder
    unpacker.unpackStructHeader();
    unpacker.unpackStructSignature();
    BoltIOException exception = assertThrows(BoltIOException.class, () -> decoder.decode(unpacker));
    assertEquals("Expected \"user_agent\" in metadata", exception.getMessage());
}
Also used : BoltIOException(org.neo4j.bolt.messaging.BoltIOException) HelloMessage(org.neo4j.bolt.v3.messaging.request.HelloMessage) HashMap(java.util.HashMap) PackedInputArray(org.neo4j.bolt.packstream.PackedInputArray) Neo4jPack(org.neo4j.bolt.packstream.Neo4jPack) BoltProtocolV3ComponentFactory.newNeo4jPack(org.neo4j.bolt.v3.BoltProtocolV3ComponentFactory.newNeo4jPack) AuthTokenDecoderTest(org.neo4j.bolt.security.auth.AuthTokenDecoderTest) Test(org.junit.jupiter.api.Test)

Example 15 with BoltIOException

use of org.neo4j.bolt.messaging.BoltIOException in project neo4j by neo4j.

the class MessageMetadataParserTest method shouldThrowForIncorrectTransactionMetadata.

@Test
void shouldThrowForIncorrectTransactionMetadata() {
    BoltIOException e = assertThrows(BoltIOException.class, () -> parseTransactionMetadata(asMapValue(map("tx_metadata", "{key1: 'value1', key2: 'value2'}"))));
    assertTrue(e.causesFailureMessage());
}
Also used : BoltIOException(org.neo4j.bolt.messaging.BoltIOException) Test(org.junit.jupiter.api.Test)

Aggregations

BoltIOException (org.neo4j.bolt.messaging.BoltIOException)16 Test (org.junit.jupiter.api.Test)13 ParameterizedTest (org.junit.jupiter.params.ParameterizedTest)6 MapValue (org.neo4j.values.virtual.MapValue)5 HashMap (java.util.HashMap)2 ValueSource (org.junit.jupiter.params.provider.ValueSource)2 Neo4jPack (org.neo4j.bolt.packstream.Neo4jPack)2 PackedInputArray (org.neo4j.bolt.packstream.PackedInputArray)2 AuthTokenDecoderTest (org.neo4j.bolt.security.auth.AuthTokenDecoderTest)2 BoltProtocolV3ComponentFactory.newNeo4jPack (org.neo4j.bolt.v3.BoltProtocolV3ComponentFactory.newNeo4jPack)2 ValueUtils.asMapValue (org.neo4j.kernel.impl.util.ValueUtils.asMapValue)2 ByteBuf (io.netty.buffer.ByteBuf)1 TransactionStateMachineSPIProvider (org.neo4j.bolt.runtime.statemachine.TransactionStateMachineSPIProvider)1 TransportThrottleException (org.neo4j.bolt.transport.TransportThrottleException)1 HelloMessage (org.neo4j.bolt.v3.messaging.request.HelloMessage)1 HelloMessage (org.neo4j.bolt.v41.messaging.request.HelloMessage)1 DatabaseManagementService (org.neo4j.dbms.api.DatabaseManagementService)1 DatabaseNotFoundException (org.neo4j.dbms.api.DatabaseNotFoundException)1