gorm/tests
jesse.tang be440e7512
fix possible nil panic in tests (#5720)
* fix maybe nil panic

* reset code
2022-09-30 11:14:34 +08:00
..
.gitignore Refactor Prepared Statement 2020-07-28 14:46:48 +08:00
README.md Setup tests script 2020-02-23 09:38:51 +08:00
associations_belongs_to_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
associations_has_many_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
associations_has_one_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
associations_many2many_test.go fix: association many2many duplicate elem (#5473) 2022-07-01 15:12:15 +08:00
associations_test.go fix empty QueryClauses in association (#5502) (#5503) 2022-07-15 11:15:18 +08:00
benchmark_test.go enhancement: Avoid calling reflect.New() when passing in slice of values to `Scan()` (#5388) 2022-06-01 11:50:57 +08:00
callbacks_test.go fix possible nil panic in tests (#5720) 2022-09-30 11:14:34 +08:00
connection_test.go fix: omit not work when use join (#5034) 2022-01-28 22:16:42 +08:00
connpool_test.go Refactor Tx interface 2022-03-01 16:59:50 +08:00
count_test.go Refactor preload error check 2022-03-17 11:22:25 +08:00
create_test.go fixed FirstOrCreate not handled error when table is not exists (#5367) 2022-05-28 22:18:43 +08:00
customize_field_test.go Fix use uint to for autoCreateTime, autoUpdateTime 2020-09-11 17:33:31 +08:00
default_value_test.go Support default tag for time.Time 2022-03-17 11:34:27 +08:00
delete_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
distinct_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
docker-compose.yml Fix docker-compose test env for Mac M1 2022-01-30 22:05:38 +08:00
embedded_struct_test.go fix: embedded default value (#5540) 2022-07-25 14:10:30 +08:00
go.mod Allow shared foreign key for many2many jointable 2022-09-22 15:03:41 +08:00
gorm_test.go Improve returning support 2021-10-26 22:40:14 +08:00
group_by_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
helper_test.go Update select tests 2022-07-14 14:55:54 +08:00
hooks_test.go fix: preload with skip hooks (#5310) 2022-05-04 18:57:53 +08:00
joins_table_test.go Support delete associations with Select when deleting 2020-09-10 21:46:18 +08:00
joins_test.go Fix scanIntoStruct (#5241) 2022-04-13 15:47:04 +08:00
main_test.go style: fix coding typo (#5184) 2022-03-24 09:31:58 +08:00
migrate_test.go fix: same embedded filed name (#5705) 2022-09-22 11:25:03 +08:00
multi_primary_keys_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
named_argument_test.go Fix: Where clauses with named arguments may cause generation of unintended queries (#4937) 2021-12-21 19:50:00 +08:00
named_polymorphic_test.go Add index priority supports 2020-07-08 17:59:40 +08:00
non_std_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
postgres_test.go add some test case which related the logic (#5477) 2022-09-22 18:35:21 +08:00
preload_suits_test.go fix: preload panic when model and dest different close #5130 2022-03-18 13:38:46 +08:00
preload_test.go fix: preload panic when model and dest different close #5130 2022-03-18 13:38:46 +08:00
prepared_stmt_test.go fix: use preparestmt in trasaction will use new conn, close #5508 2022-09-22 16:47:43 +08:00
query_test.go fix: scan array (#5624) 2022-09-22 15:51:47 +08:00
scan_test.go fix: duplicate column scan (#5369) 2022-05-28 22:18:07 +08:00
scanner_valuer_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
scopes_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
serializer_test.go fix: empty serilizer err #5524 (#5525) 2022-07-27 13:59:47 +08:00
soft_delete_test.go fix: generate sql incorrect when use soft_delete and only one OR (#4969) 2021-12-30 11:47:14 +08:00
sql_builder_test.go Support Scopes in group conditions 2022-04-20 17:21:38 +08:00
table_test.go fix: table couln't be reentrant (#4556) 2021-08-09 13:20:22 +08:00
tests_all.sh Fix github action 2022-01-30 22:46:41 +08:00
tests_test.go test: test for skip prepared when auto migrate (#5350) 2022-05-22 16:12:28 +08:00
transaction_test.go fix possible nil panic in tests (#5720) 2022-09-30 11:14:34 +08:00
update_belongs_to_test.go Update select tests 2022-07-14 14:55:54 +08:00
update_has_many_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
update_has_one_test.go Update select tests 2022-07-14 14:55:54 +08:00
update_many2many_test.go ci: add gofumpt check in reviewdog (#4973) 2022-01-06 15:02:53 +08:00
update_test.go Update select tests 2022-07-14 14:55:54 +08:00
upsert_test.go simplified regexp (#5677) 2022-09-05 15:39:19 +08:00

README.md

Test Guide

cd tests
# prepare test databases
docker-compose up

# run all tests
./tests_all.sh