Class BigtableEmulatorRule
java.lang.Object
org.junit.rules.ExternalResource
com.google.cloud.bigtable.emulator.v2.BigtableEmulatorRule
- All Implemented Interfaces:
org.junit.rules.TestRule
@BetaApi("Surface for Bigtable emulator is not yet stable")
public class BigtableEmulatorRule
extends org.junit.rules.ExternalResource
The BigtableEmulatorRule manages the lifecycle of the Bigtable
Emulator
. Before the start
of a test, the emulator will be started on a random port and will be shutdown after the test
finishes.
Example usage:
{@literal @RunWith(JUnit4.class)}
public class MyTest {
{@literal @Rule}
public final BigtableEmulatorRule bigtableEmulator = BigtableEmulatorRule.create();
{@literal @Test}
public void testUsingEmulator() {
ManagedChannel adminChannel = bigtableEmulator.getAdminChannel();
// Do something with channel
}
}
-
Method Summary
Modifier and TypeMethodDescriptionprotected void
after()
Stops the Bigtable emulator after a test finishes.protected void
before()
Initializes the Bigtable emulator before a test runs.static BigtableEmulatorRule
create()
io.grpc.ManagedChannel
Gets aManagedChannel
connected to the Emulator.io.grpc.ManagedChannel
Gets aManagedChannel
connected to the Emulator.int
getPort()
Gets the port of the emulator, allowing the caller to create their ownManagedChannel
.Methods inherited from class org.junit.rules.ExternalResource
apply
-
Method Details
-
create
-
before
Initializes the Bigtable emulator before a test runs.- Overrides:
before
in classorg.junit.rules.ExternalResource
- Throws:
Throwable
-
after
protected void after()Stops the Bigtable emulator after a test finishes.- Overrides:
after
in classorg.junit.rules.ExternalResource
-
getDataChannel
public io.grpc.ManagedChannel getDataChannel()Gets aManagedChannel
connected to the Emulator. The channel is configured for data operations. -
getAdminChannel
public io.grpc.ManagedChannel getAdminChannel()Gets aManagedChannel
connected to the Emulator. This channel should be used for admin operations. -
getPort
public int getPort()Gets the port of the emulator, allowing the caller to create their ownManagedChannel
.
-