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

MockDatastore

class MockDatastore : ThrowingDatastore

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

TODO(colin): this doesn't support the full set of datastore operations yet. Fill this in as more functionality is implemented. For now this will throw on any unimplemented operations.

TODO(colin): we'll want to do some synchronization around updating the internal state.

Constructors

<init>

MockDatastore(entities: List<<ERROR CLASS>>)

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

Functions

get

fun get(key: <ERROR CLASS>?): <ERROR CLASS>?

put

fun put(entity: <ERROR CLASS><out <ERROR CLASS>>?): <ERROR CLASS>

Inherited 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(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(): <ERROR CLASS>

put

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