sqlx/tests
Charles Samborski 32f1273565
Fix support for Postgres array of custom types (#1483)
This commit fixes the array decoder to support custom types. The core of the issue was that the array decoder did not use the type info retrieved from the database. It means that it only supported native types.

This commit fixes the issue by using the element type info fetched from the database. A new internal helper method is added to the `PgType` struct: it returns the type info for the inner array element, if available.

Closes #1477
2021-12-29 13:05:15 -08:00
..
any fix(pool): always ping connection on release to see if it's still viable 2021-02-27 00:56:08 -08:00
certs update todo examples to 0.4 and use migrations 2020-07-18 05:43:16 -07:00
keys update todo examples to 0.4 and use migrations 2020-07-18 05:43:16 -07:00
migrate fix(macros): tell the compiler about external files/env vars to watch (#1332) 2021-07-21 16:36:22 -07:00
mssql Fix GitHub Actions and integration test (#1346) 2021-07-28 14:00:34 -07:00
mysql fix(test): fix mismatched type error in MySQL type tests (#1517) 2021-10-26 13:45:46 -07:00
postgres Fix support for Postgres array of custom types (#1483) 2021-12-29 13:05:15 -08:00
sqlite preparing 0.5.8 release (#1466) 2021-10-01 14:45:25 -07:00
ui Update some postgres trybuild tests 2021-01-12 03:39:10 -08:00
.dockerignore feat(mssql): fix a few bugs and implement Connection::describe 2020-06-07 02:00:31 -07:00
.env feat: introduce docker-compose based testing for running locally against many database combinations 2020-05-30 17:51:55 -07:00
.gitignore update todo examples to 0.4 and use migrations 2020-07-18 05:43:16 -07:00
docker-compose.yml ci: test on Postgres 14 (#1557) 2021-11-29 12:58:19 -08:00
docker.py Fix GitHub Actions and integration test (#1346) 2021-07-28 14:00:34 -07:00
README.md Fix GitHub Actions and integration test (#1346) 2021-07-28 14:00:34 -07:00
ui-tests.rs feat: introduce docker-compose based testing for running locally against many database combinations 2020-05-30 17:51:55 -07:00
x.py ci: test on Postgres 14 (#1557) 2021-11-29 12:58:19 -08:00

Running Tests

SQLx uses docker to run many compatible database systems for integration testing. You'll need to install docker to run the full suite. You can validate your docker installation with:

$ docker run hello-world

Start the databases with docker-compose before running tests:

$ docker-compose up

Run all tests against all supported databases using:

$ ./x.py

If you see test failures, or want to run a more specific set of tests against a specific database, you can specify both the features to be tests and the DATABASE_URL. e.g.

$ DATABASE_URL=mysql://root:password@127.0.0.1:49183/sqlx cargo test --no-default-features --features macros,offline,any,all-types,mysql,runtime-async-std-native-tls