Skip to content

Files

This branch is 67 commits behind mlswg/mls-implementations:main.

interop

Folders and files

NameName
Last commit message
Last commit date

parent directory

..
Mar 15, 2023
Mar 3, 2023
Mar 3, 2023
Mar 15, 2023
Mar 3, 2023
Mar 15, 2023
Dec 16, 2020
Jan 4, 2021
Jan 1, 2021
Mar 9, 2023
Mar 7, 2023

MLS Interop Testing Framework

This directory provides a gRPC-based framework for interop testing among MLS clients. In this framework, each MLS client is a gRPC server, and the test runner acts as a gRPC client to coordinate tests. In addition to the test runner logic, we include stub / mock client implementations (again, gRPC servers) in C++, Go, and Rust.

Quickstart

# Start the clients in different windows
make run-go   # ... in Go
make run-cpp  # ... in C++
make run-rs   # ... in Rust

# Invoke the test runner against that client
make run-test

# You should get an output of the following form
2021/01/01 17:26:09 Connected to: name=[Mock-Go] suites=[[41120 41377]]
2021/01/01 17:26:09 Connected to: name=[Mock-C++] suites=[[41120 41377]]
2021/01/01 17:26:09 Connected to: name=[Mock-Rust] suites=[[41120 41377]]