corda / net.corda.testing.services / MockAttachmentStorage

MockAttachmentStorage

class MockAttachmentStorage : AttachmentStorage, SingletonSerializeAsToken

A mock implementation of AttachmentStorage for use within tests

Constructors

<init>

MockAttachmentStorage()

A mock implementation of AttachmentStorage for use within tests

Properties

files

val files: Map<SecureHash, <ERROR CLASS><Attachment, ByteArray>>

A map of the currently stored files by their SecureHash

Functions

getAttachmentIdAndBytes

fun getAttachmentIdAndBytes(jar: InputStream): <ERROR CLASS><AttachmentId, ByteArray>

getLatestContractAttachments

fun getLatestContractAttachments(contractClassName: String, minContractVersion: Int): List<AttachmentId>

Find the Attachment Id(s) of the contract attachments with the highest version for a given contract class name from trusted upload sources. Return highest version of both signed and unsigned attachment ids (signed first, unsigned second), otherwise return a single signed or unsigned version id, or an empty list if none meet the criteria.

hasAttachment

fun hasAttachment(attachmentId: AttachmentId): Boolean

Searches for an attachment already in the store

importAttachment

fun importAttachment(jar: InputStream): AttachmentId

Inserts the given attachment into the store, does not close the input stream. This can be an intensive operation due to the need to copy the bytes to disk and hash them along the way.

fun importAttachment(jar: InputStream, uploader: String, filename: String?): AttachmentId

Inserts the given attachment with additional metadata, see importAttachment for input stream handling Extra parameters:

importContractAttachment

fun importContractAttachment(contractClassNames: List<ContractClassName>, uploader: String, jar: InputStream, attachmentId: AttachmentId? = null, signers: List<PublicKey> = emptyList()): AttachmentId
fun importContractAttachment(attachmentId: AttachmentId, contractAttachment: ContractAttachment): Unit

importOrGetAttachment

fun importOrGetAttachment(jar: InputStream): AttachmentId

Inserts or returns Attachment Id of attachment. Does not throw an exception if already uploaded.

openAttachment

fun openAttachment(id: SecureHash): Attachment?

Returns a handle to a locally stored attachment, or null if it's not known. The handle can be used to open a stream for the data, which will be a zip/jar file.

queryAttachments

fun queryAttachments(criteria: AttachmentQueryCriteria, sorting: AttachmentSort?): List<AttachmentId>

Searches attachment using given criteria and optional sort rules

Inherited Functions

queryAttachments

open fun queryAttachments(criteria: AttachmentQueryCriteria): List<AttachmentId>

toToken

open fun toToken(context: SerializeAsTokenContext): <ERROR CLASS>

Extension Functions

contextLogger

fun Any.contextLogger(): <ERROR CLASS>

When called from a companion object, returns the logger for the enclosing class.