mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Implement experimental REST API endpoints for plugins * Updates per feedback and rebase * Update tests * Further updates * Update extraction of plugins * Use OS temp dir for plugins instead of search path * Fail extraction on paths that attempt to traverse upward * Update pluginenv ActivePlugins()
33 lines
717 B
Go
33 lines
717 B
Go
package pluginenv
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/mattermost/platform/model"
|
|
"github.com/mattermost/platform/plugin/rpcplugin"
|
|
)
|
|
|
|
func TestDefaultSupervisorProvider(t *testing.T) {
|
|
_, err := DefaultSupervisorProvider(&model.BundleInfo{})
|
|
assert.Error(t, err)
|
|
|
|
_, err = DefaultSupervisorProvider(&model.BundleInfo{
|
|
Manifest: &model.Manifest{},
|
|
})
|
|
assert.Error(t, err)
|
|
|
|
supervisor, err := DefaultSupervisorProvider(&model.BundleInfo{
|
|
Manifest: &model.Manifest{
|
|
Backend: &model.ManifestBackend{
|
|
Executable: "foo",
|
|
},
|
|
},
|
|
})
|
|
require.NoError(t, err)
|
|
_, ok := supervisor.(*rpcplugin.Supervisor)
|
|
assert.True(t, ok)
|
|
}
|