👋🏻 I'm looking to create a test suite that valid...
# spicedb
v
👋🏻 I'm looking to create a test suite that validates our schema as we develop our own fork with support for Vitess. In order to develop that test suite, I used
dockertest
(just like your integration tests) to pull the spicedb image and run
serve-testing
. I focused in
serve-testing
. as a means to get quick feedback while developing the schema tests in Go. One of the things of the plumbing that has to be considered is waiting for the container to be ready. I initially created a health-check with
dockertest
. doing
SchemaRead
. RPC. Then I learned about grpc Health checks, so I introduced that. Unfortunately, I learned that
serve-testing
. does not wire up the grpc Health Check. Would that be a sensible contribution?