]> source.dussan.org Git - gitea.git/commit
Improve testing and try to fix MySQL hanging (#32515)
authorwxiaoguang <wxiaoguang@gmail.com>
Fri, 15 Nov 2024 15:45:07 +0000 (23:45 +0800)
committerGitHub <noreply@github.com>
Fri, 15 Nov 2024 15:45:07 +0000 (23:45 +0800)
commitecbb03dc6d0e0565663dff977a4fc3d40a1e0c1e
tree662c4fe1755d323811c3fd3abcb81e256a86326e
parenta0c0cb3a2c426e39b91e7301c94ddc3a988c8607
Improve testing and try to fix MySQL hanging (#32515)

By some CI fine tunes (`run tests`), SQLite & MSSQL could complete
in about 12~13 minutes (before > 14), MySQL could complete in 18 minutes
(before: about 23 or even > 30)

Major changes:

1. use tmpfs for MySQL storage
1. run `make test-mysql` instead of `make integration-test-coverage`
because the code coverage is not really used at the moment.
1. refactor testlogger to make it more reliable and be able to report
stuck stacktrace
1. do not requeue failed items when a queue is being flushed (failed
items would keep failing and make flush uncompleted)
1. reduce the file sizes for testing
1. use math ChaCha20 random data instead of crypot/rand (for testing
purpose only)
1. no need to `DeleteRepository` in `TestLinguist`
1. other related refactoring to make code easier to maintain
15 files changed:
.github/workflows/pull-db-tests.yml
models/migrations/base/tests.go
modules/log/color.go
modules/queue/workergroup.go
modules/queue/workerqueue.go
modules/testlogger/testlogger.go
tests/integration/README.md
tests/integration/api_repo_file_get_test.go
tests/integration/git_general_test.go
tests/integration/git_misc_test.go
tests/integration/integration_test.go
tests/integration/linguist_test.go
tests/integration/migration-test/migration_test.go
tests/integration/repo_branch_test.go
tests/test_utils.go