[MM-62408] Server Code Coverage with Fully Parallel Tests (#30078)

* TestPool

* Store infra

* Store tests updates

* Bump maximum concurrent postgres connections

* More infra

* channels/jobs

* channels/app

* channels/api4

* Protect i18n from concurrent access

* Replace some use of os.Setenv

* Remove debug

* Lint fixes

* Fix more linting

* Fix test

* Remove use of Setenv in drafts tests

* Fix flaky TestWebHubCloseConnOnDBFail

* Fix merge

* [MM-62408] Add CI job to generate test coverage (#30284)

* Add CI job to generate test coverage

* Remove use of Setenv in drafts tests

* Fix flaky TestWebHubCloseConnOnDBFail

* Fix more Setenv usage

* Fix more potential flakyness

* Remove parallelism from flaky test

* Remove conflicting env var

* Fix

* Disable parallelism

* Test atomic covermode

* Disable parallelism

* Enable parallelism

* Add upload coverage step

* Fix codecov.yml

* Add codecov.yml

* Remove redundant workspace field

* Add Parallel() util methods and refactor

* Fix formatting

* More formatting fixes

* Fix reporting
Этот коммит содержится в:
Claudio Costa
2025-05-30 05:58:26 -06:00
коммит произвёл GitHub
родитель 1cf2f08108
Коммит 611b2a8e79
191 изменённых файлов: 2719 добавлений и 496 удалений

Просмотреть файл

@@ -17,6 +17,7 @@ import (
)
func TestDataRetentionGetPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t)
defer th.TearDown()
@@ -26,6 +27,7 @@ func TestDataRetentionGetPolicy(t *testing.T) {
}
func TestGetPolicies(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -112,6 +114,7 @@ func TestGetPolicies(t *testing.T) {
}
func TestGetDataRetentionPoliciesCount(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -159,6 +162,7 @@ func TestGetDataRetentionPoliciesCount(t *testing.T) {
}
func TestGetPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -244,6 +248,7 @@ func TestGetPolicy(t *testing.T) {
}
func TestCreatePolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -340,6 +345,7 @@ func TestCreatePolicy(t *testing.T) {
}
func TestPatchPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -455,6 +461,7 @@ func TestPatchPolicy(t *testing.T) {
}
func TestDeletePolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -522,6 +529,7 @@ func TestDeletePolicy(t *testing.T) {
}
func TestGetTeamPoliciesForUser(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -607,6 +615,7 @@ func TestGetTeamPoliciesForUser(t *testing.T) {
}
func TestGetChannelPoliciesForUser(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -692,6 +701,7 @@ func TestGetChannelPoliciesForUser(t *testing.T) {
}
func TestGetTeamsForPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -782,6 +792,7 @@ func TestGetTeamsForPolicy(t *testing.T) {
}
func TestAddTeamsToPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -852,6 +863,7 @@ func TestAddTeamsToPolicy(t *testing.T) {
}
func TestRemoveTeamsFromPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -922,6 +934,7 @@ func TestRemoveTeamsFromPolicy(t *testing.T) {
}
func TestGetChannelsForPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -1022,6 +1035,7 @@ func TestGetChannelsForPolicy(t *testing.T) {
}
func TestAddChannelsToPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()
@@ -1141,6 +1155,7 @@ func TestAddChannelsToPolicy(t *testing.T) {
}
func TestRemoveChannelsFromPolicy(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t).InitBasic()
defer th.TearDown()