ibmdb / java_reactive_driver

IBM Db2 Java Reactive Driver based on R2DBC.
6 stars 1 forks source link

Consider testing against R2DBC TCK #6

Open mp911de opened 1 year ago

mp911de commented 1 year ago

R2DBC comes with a TCK to verify basic R2DBC operations. Consider running your driver against the test suite to verify it complies with the R2DBC spec. The test kit is available from https://github.com/r2dbc/r2dbc-spi/blob/main/r2dbc-spi-test/src/main/java/io/r2dbc/spi/test/TestKit.java and an example implementation can be found at https://github.com/pgjdbc/r2dbc-postgresql/blob/main/src/test/java/io/r2dbc/postgresql/PostgresqlTestKit.java

Individual tests are fine to be skipped in case they are unsupported.

rs-rappavu commented 1 year ago

Sure will work on TCK compliance.