gorm/tests
Haibo 16a272209a
fix(migrator): Tag default:'null' always causes field migration #5953 (#5954)
* fix(migrator): Tag default:'null' always causes field migration #5953

* Update migrate_test.go

* Update migrate_test.go

* Update migrate_test.go

Co-authored-by: Jinzhu <wosmvp@gmail.com>
2023-01-01 22:14:28 +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 fix: skip append relation field to default db value (#5885) 2022-12-01 20:26:59 +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: association without pks (#5779) 2022-10-18 11:58:42 +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 tests mariadb with returning support 2022-10-08 20:48:22 +08:00
count_test.go Fix group by with count logic 2022-11-21 11:10:56 +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 Add test case for embedded value selects (#5901) 2022-12-19 11:49:05 +08:00
go.mod Add ParameterizedQueries option support for logger, close #5288 2022-12-25 11:37:23 +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 feat: support inner join (#5583) 2022-12-24 12:27:38 +08:00
main_test.go style: fix coding typo (#5184) 2022-03-24 09:31:58 +08:00
migrate_test.go fix(migrator): Tag default:'null' always causes field migration #5953 (#5954) 2023-01-01 22:14:28 +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 Test postgres autoincrement check 2022-10-08 17:16:32 +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 feat(PreparedStmtDB): support reset (#5782) 2022-10-19 14:46:59 +08:00
query_test.go fix(FindInBatches): throw err if pk not exists (#5868) 2022-11-21 10:49:27 +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 Save as empty string for not nullable nil field serialized into json 2022-10-18 16:25:39 +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 use clause.Interface as query params 2022-10-18 18:01:55 +08:00
table_test.go Add TableName with NamingStrategy support, close #5726 2022-10-07 21:18:37 +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
tracer_test.go add test: TestAutoMigrateInt8PG: shouldn't execute ALTER COLUMN TYPE smallint, close #5762 2022-10-18 17:28:06 +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