package eio

  1. Overview
  2. Docs
Effect-based direct-style IO API for OCaml

Install

Dune Dependency

Authors

Maintainers

Sources

eio-0.8.1.tbz
sha256=c4222f9b081465486a1c1a8dde6aa00178936d7c7b3a8565e0883a421e0e3547
sha512=d63d8b9500b492be93df4f29159aa6955588ca1e35e6a5817856e32ee4fec3395604dc7b64fc5a973ee8bd436bd65831e7b08fca9bf909f41afec4a65c4443b8

doc/eio.mock/Eio_mock/index.html

Module Eio_mockSource

Mocks for testing.

When testing an Eio program it is often convenient to use mock resources rather than real OS-provided ones. This allows precise control over the test, such as adding delays or simulated faults. You can always just implement the various Eio types directly, but this module provides some convenient pre-built mocks, and some helpers for creating your own mocks.

Mocks typically use Eio.traceln to record how they were used. This output can be recorded and compared against a known-good copy using e.g. ocaml-mdx.

Mocks may require configuration. For example, a source flow needs to know what data to return when the application reads from it. This can be done using the various on_* functions. For example:

  let stdin = Eio_mock.Flow.make "stdin" in
  let stdout = Eio_mock.Flow.make "stdout" in
  Eio_mock.Flow.on_read stdin [
    `Return "chunk1";
    `Return "chunk2";
    `Raise End_of_file
  ];
  Eio.Flow.copy stdin stdout

This will produce:

  +stdin: read "chunk1"
  +stdout: wrote "chunk1"
  +stdin: read "chunk2"
  +stdout: wrote "chunk2"

Configuration

Sourcemodule Action : sig ... end

Actions that can be performed by mock handlers.

Sourcemodule Handler : sig ... end

Control how a mock responds.

Pre-defined mocks

Sourcemodule Flow : sig ... end

Mock Eio.Flow sources and sinks.

Sourcemodule Net : sig ... end

Mock Eio.Net networks and sockets.

Sourcemodule Clock : sig ... end

A mock Eio.Time clock for testing timeouts.

Backend for mocks

The mocks can be used with any backend, but if you don't need any IO then you can use this one to avoid a dependency on eio_main.

Sourcemodule Backend : sig ... end

A dummy Eio backend with no actual IO.

Mock errors

Sourcetype Eio.Exn.Backend.t +=
  1. | Simulated_failure
    (*

    A fake error code you can use for simulated faults.

    *)
OCaml

Innovation. Community. Security.