conformance

module
v1.0.0-rc2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Dec 19, 2023 License: Apache-2.0

README

Connect Conformance

License CI

A test suite for Connect that verifies cross-platform conformance for both clients and servers.

Summary

The Connect conformance test suite is a series of tests that are run using a client and server to validate interoperability, compatibility, and conformance across the Connect, gRPC, and gRPC-Web protocols. The test suite is meant to exercise various scenarios with a client-server interaction to ensure the results are as expected across platforms.

Tests are divided into two types: client tests and server tests. Those which verify clients are run against a reference server implementation of the Conformance Service written with connect-go.

Likewise, servers under test will be verified by a reference client implementation of the Conformance Service also written with connect-go.

To verify compatibility with other protocol implementations, the conformance test also uses reference client and server implementations that use the gRPC-Go module.

Also, please note that this project is currently pre-v1.0.0. As a result, it does not currently make backward compatibility guarantees. The goal is to publish a stable release but please be aware we may make changes as we gather feedback from early adopters.

Testing your implementation

Setup

The conformance runner has the ability to test a client, a server, or both simultaneously. This means that if you are validating both a server and a client, you can use the conformance suite to run them against each other. Testing either a client or server in isolation will use the corresponding reference implementation to verify conformance.

Below are the basic steps needed for setting up the suite to run against your implementation:

  1. The first step is to download the Conformance protos, which can be found on the Buf Schema Registry here. From there, you will need to generate the code for the language you are testing.

  2. Once complete, you will need to implement either the service, the client, or both (depending on which you are testing). To do so, follow the instructions specified in the ConformanceService proto.

    For working examples, refer to the Go reference client and reference server.

  3. Next, your file should then be made executable in your target language. For example, if implementing the ConformanceService in Go, you would build a binary which executes your client or service.

  4. Finally, visit the repository's Releases page, download the conformance runner binary, and add it to your $PATH.

Running the tests

The commands for testing will depend on whether you are testing a client, a server, or both. Specifying which implementation is done via the mode command line argument.

Once you have completed setup, the following commands will get you started:

Testing a client
connectconformance --mode client -- <path/to/your/executable/client>
Testing a server
connectconformance --mode server -- <path/to/your/executable/server>
Testing both a client and server

To test your client against your server, specify a mode of both, with the client path first, followed by ----, then the path to your server:

connectconformance --mode both -- <path/to/your/executable/client> ---- <path/to/your/executable/server>

Running the reference tests

To run the suite using the reference client against the reference server and see the process in action, use the following command:

make runconformance

This will build the necessary binaries and run tests with the following setup:

  • Connect reference client against a Connect reference server
  • gRPC reference client against a Connect reference server
  • Connect reference client against a gRPC reference server

Status: Pre-v1.0.0

This project is currently pre-v1.0.0. The API should be considered unstable and likely to change.

Ecosystem

Implementations
Examples
Ancillary

For more on Connect, see the announcement blog post, the documentation on connectrpc.com (especially the Getting Started guide for Go), or the demo service.

Offered under the Apache 2 license.

Directories

Path Synopsis
cmd
app/connectconformance/testsuites
Package testsuites contains embedded test suite data used when running conformance tests.
Package testsuites contains embedded test suite data used when running conformance tests.

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL