Files
mostlymatter/server/channels/app/plugin_health_check_test.go
Claudio Costa 611b2a8e79 [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
2025-05-30 13:58:26 +02:00

89 строки
2.4 KiB
Go

// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
// See LICENSE.txt for license information.
package app
import (
"testing"
"github.com/stretchr/testify/require"
"github.com/mattermost/mattermost/server/public/model"
"github.com/mattermost/mattermost/server/public/plugin"
)
func TestHealthCheckJob(t *testing.T) {
mainHelper.Parallel(t)
th := Setup(t)
defer th.TearDown()
tearDown, _, _ := SetAppEnvironmentWithPlugins(t, []string{
`
package main
import (
"github.com/mattermost/mattermost/server/public/model"
"github.com/mattermost/mattermost/server/public/plugin"
)
type MyPlugin struct {
plugin.MattermostPlugin
}
func (p *MyPlugin) MessageWillBePosted(c *plugin.Context, post *model.Post) (*model.Post, string) {
panic("Uncaught error")
}
func main() {
plugin.ClientMain(&MyPlugin{})
}
`,
}, th.App, th.NewPluginAPI)
defer tearDown()
env := th.App.GetPluginsEnvironment()
job := env.GetPluginHealthCheckJob()
require.NotNil(t, job)
bundles := env.Active()
require.Equal(t, 1, len(bundles))
id := bundles[0].Manifest.Id
// First health check
hooks, err := env.HooksForPlugin(id)
require.NoError(t, err)
hooks.MessageWillBePosted(&plugin.Context{}, &model.Post{})
job.CheckPlugin(id)
bundles = env.Active()
require.Equal(t, 1, len(bundles))
require.Equal(t, id, bundles[0].Manifest.Id)
require.Equal(t, model.PluginStateRunning, env.GetPluginState(id))
// Second health check
hooks, err = env.HooksForPlugin(id)
require.NoError(t, err)
hooks.MessageWillBePosted(&plugin.Context{}, &model.Post{})
job.CheckPlugin(id)
bundles = env.Active()
require.Equal(t, 1, len(bundles))
require.Equal(t, id, bundles[0].Manifest.Id)
require.Equal(t, model.PluginStateRunning, env.GetPluginState(id))
// Third health check, plugin should be deactivated by the job
hooks, err = env.HooksForPlugin(id)
require.NoError(t, err)
hooks.MessageWillBePosted(&plugin.Context{}, &model.Post{})
job.CheckPlugin(id)
bundles = env.Active()
require.Equal(t, 0, len(bundles))
require.Equal(t, model.PluginStateFailedToStayRunning, env.GetPluginState(id))
// Activated manually, plugin should stay active
_, _, err = env.Activate(id)
require.NoError(t, err)
job.CheckPlugin(id)
bundles = env.Active()
require.Equal(t, 1, len(bundles))
require.Equal(t, model.PluginStateRunning, env.GetPluginState(id))
}