kotlin-datastore / org.khanacademy.datastore.testutil / ThrowingDatastore

ThrowingDatastore

open class ThrowingDatastore

An implementation of Google's Datastore that throws on all methods.

We use this as the default to make sure that tests always have to choose their behavior explicitly.

TODO(colin): I autogenerated these stubs from a java interface, and it's not clear that the nullability is right in all cases. Audit this as we fill in the mocked datastore implementation.

Constructors

<init>

ThrowingDatastore()

An implementation of Google's Datastore that throws on all methods.

Functions

add

open fun add(entity: <ERROR CLASS><out <ERROR CLASS>>?): <ERROR CLASS>
open fun add(vararg entities: <ERROR CLASS><out <ERROR CLASS>>?): MutableList<<ERROR CLASS>>

allocateId

open fun allocateId(key: <ERROR CLASS>?): <ERROR CLASS>
open fun allocateId(vararg keys: <ERROR CLASS>?): MutableList<<ERROR CLASS>>

delete

open fun delete(vararg keys: <ERROR CLASS>?): Unit

fetch

open fun fetch(keys: MutableIterable<<ERROR CLASS>>?, vararg options: <ERROR CLASS>?): MutableList<<ERROR CLASS>>
open fun fetch(vararg keys: <ERROR CLASS>?): MutableList<<ERROR CLASS>>

get

open fun get(key: <ERROR CLASS>?, vararg options: <ERROR CLASS>?): <ERROR CLASS>
open fun get(keys: MutableIterable<<ERROR CLASS>>?, vararg options: <ERROR CLASS>?): MutableIterator<<ERROR CLASS>>
open fun get(key: <ERROR CLASS>?): <ERROR CLASS>?
open fun get(vararg keys: <ERROR CLASS>?): MutableIterator<<ERROR CLASS>>

getOptions

open fun getOptions(): <ERROR CLASS>

newBatch

open fun newBatch(): <ERROR CLASS>

newKeyFactory

open fun newKeyFactory(): <ERROR CLASS>

newTransaction

open fun newTransaction(options: <ERROR CLASS>?): <ERROR CLASS>
open fun newTransaction(): <ERROR CLASS>

put

open fun put(entity: <ERROR CLASS><out <ERROR CLASS>>?): <ERROR CLASS>
open fun put(vararg entities: <ERROR CLASS><out <ERROR CLASS>>?): MutableList<<ERROR CLASS>>

run

open fun <T> run(query: <ERROR CLASS><T>?, vararg options: <ERROR CLASS>?): <ERROR CLASS><T>
open fun <T> run(query: <ERROR CLASS><T>?): <ERROR CLASS><T>

runInTransaction

open fun <T> runInTransaction(callable: <ERROR CLASS><T>?): T
open fun <T> runInTransaction(callable: <ERROR CLASS><T>?, options: <ERROR CLASS>?): T

update

open fun update(vararg entities: <ERROR CLASS>?): Unit

Inheritors

MockDatastore

class MockDatastore : ThrowingDatastore

Datastore implementation that uses a list of entities as its fake contents.