Runs the Connect conformance tests for gRPC-Web.
From the project directory do mvn install
then run:
connectconformance --conf config.yaml --mode server -- java -cp "target\classes;target\lib\*" com.radixiot.grpcweb.conformance.ConformanceMain
To run a single test you can use:
connectconformance --trace --conf config.yaml --mode server --run "**/unary/success" -- java -cp "target\classes;target\lib\*" com.radixiot.grpcweb.conformance.ConformanceMain
To run the tests against an external gRPC-Web server (e.g. when debugging) you can add the hostname and port as arguments. For example:
connectconformance --conf config.yaml --mode server -- java -cp "target\classes;target\lib\*" com.radixiot.grpcweb.conformance.ConformanceMain localhost 8081