mirror of
https://github.com/corda/corda.git
synced 2025-04-06 10:57:18 +00:00
Update RpcExceptionHandlingTest tests introduced by CORDA-1264 (#2916)
This commit is contained in:
parent
0af42bda44
commit
c998968e58
@ -9,6 +9,8 @@ import net.corda.core.utilities.getOrThrow
|
||||
import net.corda.core.utilities.unwrap
|
||||
import net.corda.node.services.Permissions
|
||||
import net.corda.nodeapi.exceptions.InternalNodeException
|
||||
import net.corda.testing.core.ALICE_NAME
|
||||
import net.corda.testing.core.BOB_NAME
|
||||
import net.corda.testing.core.singleIdentity
|
||||
import net.corda.testing.driver.DriverParameters
|
||||
import net.corda.testing.driver.NodeParameters
|
||||
@ -63,8 +65,8 @@ class RpcExceptionHandlingTest {
|
||||
|
||||
driver(DriverParameters(startNodesInProcess = true)) {
|
||||
|
||||
val nodeA = startNode(NodeParameters(rpcUsers = users)).getOrThrow()
|
||||
val nodeB = startNode(NodeParameters(rpcUsers = users)).getOrThrow()
|
||||
val nodeA = startNode(NodeParameters(providedName = ALICE_NAME, rpcUsers = users)).getOrThrow()
|
||||
val nodeB = startNode(NodeParameters(providedName = BOB_NAME, rpcUsers = users)).getOrThrow()
|
||||
|
||||
assertThatCode { nodeA.rpc.startFlow(::InitFlow, nodeB.nodeInfo.singleIdentity()).returnValue.getOrThrow() }.isInstanceOfSatisfying(InternalNodeException::class.java) { exception ->
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user