[MM-53968] Includes mattermost-plugin-api into the mono repo (#24235)
Include https://github.com/mattermost/mattermost-plugin-api into the mono repo Co-authored-by: Jesse Hallam <jesse.hallam@gmail.com> Co-authored-by: Michael Kochell <mjkochell@gmail.com> Co-authored-by: Alejandro García Montoro <alejandro.garciamontoro@gmail.com> Co-authored-by: Ben Schumacher <ben.schumacher@mattermost.com> Co-authored-by: Alex Dovenmuehle <alex.dovenmuehle@mattermost.com> Co-authored-by: Michael Kochell <6913320+mickmister@users.noreply.github.com> Co-authored-by: Christopher Poile <cpoile@gmail.com> Co-authored-by: İlker Göktuğ Öztürk <ilkergoktugozturk@gmail.com> Co-authored-by: Shota Gvinepadze <wineson@gmail.com> Co-authored-by: Ali Farooq <ali.farooq0@pm.me> Co-authored-by: Maria A Nunez <maria.nunez@mattermost.com> Co-authored-by: Daniel Espino García <larkox@gmail.com> Co-authored-by: Christopher Speller <crspeller@gmail.com> Co-authored-by: Alex Dovenmuehle <adovenmuehle@gmail.com> Co-authored-by: Szymon Gibała <szymongib@gmail.com> Co-authored-by: Lev <1187448+levb@users.noreply.github.com> Co-authored-by: Jason Frerich <jason.frerich@mattermost.com> Co-authored-by: Agniva De Sarker <agnivade@yahoo.co.in> Co-authored-by: Artur M. Wolff <artur.m.wolff@gmail.com> Co-authored-by: Madhav Hugar <16546715+madhavhugar@users.noreply.github.com> Co-authored-by: Joe <security.joe@pm.me> Co-authored-by: Ibrahim Serdar Acikgoz <serdaracikgoz86@gmail.com> Co-authored-by: José Peso <trilopin@users.noreply.github.com>
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
bc11b29807
Коммит
3ee5432664
296
server/public/pluginapi/i18n/i18n_test.go
Обычный файл
296
server/public/pluginapi/i18n/i18n_test.go
Обычный файл
@@ -0,0 +1,296 @@
|
||||
package i18n_test
|
||||
|
||||
import (
|
||||
"os"
|
||||
"path/filepath"
|
||||
"testing"
|
||||
|
||||
"github.com/stretchr/testify/assert"
|
||||
"github.com/stretchr/testify/mock"
|
||||
"github.com/stretchr/testify/require"
|
||||
"golang.org/x/text/language"
|
||||
|
||||
"github.com/mattermost/mattermost/server/public/model"
|
||||
"github.com/mattermost/mattermost/server/public/plugin"
|
||||
"github.com/mattermost/mattermost/server/public/plugin/plugintest"
|
||||
"github.com/mattermost/mattermost/server/public/pluginapi/i18n"
|
||||
)
|
||||
|
||||
//nolint:govet
|
||||
func ExampleInitBundle() {
|
||||
type Plugin struct {
|
||||
plugin.MattermostPlugin
|
||||
|
||||
b *i18n.Bundle
|
||||
}
|
||||
|
||||
p := Plugin{}
|
||||
b, err := i18n.InitBundle(p.API, filepath.Join("assets", "i18n"))
|
||||
if err != nil {
|
||||
panic(err)
|
||||
}
|
||||
|
||||
p.b = b
|
||||
}
|
||||
|
||||
func TestInitBundle(t *testing.T) {
|
||||
t.Run("fine", func(t *testing.T) {
|
||||
dir, err := os.MkdirTemp("", "")
|
||||
require.NoError(t, err)
|
||||
|
||||
defer os.RemoveAll(dir)
|
||||
|
||||
// Create assets/i18n dir
|
||||
i18nDir := filepath.Join(dir, "assets", "i18n")
|
||||
err = os.MkdirAll(i18nDir, 0o700)
|
||||
require.NoError(t, err)
|
||||
|
||||
file := filepath.Join(i18nDir, "active.de.json")
|
||||
content := []byte("{}")
|
||||
err = os.WriteFile(file, content, 0o600)
|
||||
require.NoError(t, err)
|
||||
|
||||
// Add en translation file.
|
||||
// InitBundle should ignore it.
|
||||
file = filepath.Join(i18nDir, "active.en.json")
|
||||
content = []byte("")
|
||||
err = os.WriteFile(file, content, 0o600)
|
||||
require.NoError(t, err)
|
||||
|
||||
// Add json junk file
|
||||
file = filepath.Join(i18nDir, "foo.json")
|
||||
content = []byte("")
|
||||
err = os.WriteFile(file, content, 0o600)
|
||||
require.NoError(t, err)
|
||||
|
||||
// Add active. junk file
|
||||
file = filepath.Join(i18nDir, "active.foo")
|
||||
content = []byte("")
|
||||
err = os.WriteFile(file, content, 0o600)
|
||||
require.NoError(t, err)
|
||||
|
||||
api := &plugintest.API{}
|
||||
api.On("GetBundlePath").Return(dir, nil)
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, "assets/i18n")
|
||||
assert.NoError(t, err)
|
||||
assert.NotNil(t, b)
|
||||
|
||||
assert.ElementsMatch(t, []language.Tag{language.English, language.German}, b.LanguageTags())
|
||||
})
|
||||
|
||||
t.Run("fine", func(t *testing.T) {
|
||||
dir, err := os.MkdirTemp("", "")
|
||||
require.NoError(t, err)
|
||||
|
||||
defer os.RemoveAll(dir)
|
||||
|
||||
// Create assets/i18n dir
|
||||
i18nDir := filepath.Join(dir, "assets", "i18n")
|
||||
err = os.MkdirAll(i18nDir, 0o700)
|
||||
require.NoError(t, err)
|
||||
|
||||
file := filepath.Join(i18nDir, "active.de.json")
|
||||
content := []byte("{}")
|
||||
err = os.WriteFile(file, content, 0o600)
|
||||
require.NoError(t, err)
|
||||
|
||||
// Add translation file with invalid content
|
||||
file = filepath.Join(i18nDir, "active.es.json")
|
||||
content = []byte("foo bar")
|
||||
err = os.WriteFile(file, content, 0o600)
|
||||
require.NoError(t, err)
|
||||
|
||||
api := &plugintest.API{}
|
||||
api.On("GetBundlePath").Return(dir, nil)
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, "assets/i18n")
|
||||
assert.Error(t, err)
|
||||
assert.Nil(t, b)
|
||||
})
|
||||
}
|
||||
|
||||
func TestLocalizeDefaultMessage(t *testing.T) {
|
||||
t.Run("fine", func(t *testing.T) {
|
||||
api := &plugintest.API{}
|
||||
defaultServerLocale := "en"
|
||||
api.On("GetConfig").Return(&model.Config{
|
||||
LocalizationSettings: model.LocalizationSettings{
|
||||
DefaultServerLocale: &defaultServerLocale,
|
||||
},
|
||||
})
|
||||
api.On("GetBundlePath").Return(".", nil)
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, ".")
|
||||
require.NoError(t, err)
|
||||
|
||||
l := b.GetServerLocalizer()
|
||||
m := &i18n.Message{
|
||||
Other: "test message",
|
||||
}
|
||||
|
||||
assert.Equal(t, m.Other, b.LocalizeDefaultMessage(l, m))
|
||||
})
|
||||
|
||||
t.Run("empty message", func(t *testing.T) {
|
||||
api := &plugintest.API{}
|
||||
defaultServerLocale := "en"
|
||||
api.On("GetConfig").Return(&model.Config{
|
||||
LocalizationSettings: model.LocalizationSettings{
|
||||
DefaultServerLocale: &defaultServerLocale,
|
||||
},
|
||||
})
|
||||
api.On("GetBundlePath").Return(".", nil)
|
||||
api.On("LogWarn", mock.AnythingOfType("string"),
|
||||
mock.AnythingOfType("string"), mock.AnythingOfType("string"),
|
||||
mock.AnythingOfType("string"), mock.AnythingOfType("string")).Return()
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, ".")
|
||||
require.NoError(t, err)
|
||||
|
||||
l := b.GetServerLocalizer()
|
||||
m := &i18n.Message{}
|
||||
|
||||
assert.Equal(t, "", b.LocalizeDefaultMessage(l, m))
|
||||
})
|
||||
}
|
||||
|
||||
func TestLocalizeWithConfig(t *testing.T) {
|
||||
t.Run("fine", func(t *testing.T) {
|
||||
api := &plugintest.API{}
|
||||
defaultServerLocale := "en"
|
||||
api.On("GetConfig").Return(&model.Config{
|
||||
LocalizationSettings: model.LocalizationSettings{
|
||||
DefaultServerLocale: &defaultServerLocale,
|
||||
},
|
||||
})
|
||||
api.On("GetBundlePath").Return(".", nil)
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, ".")
|
||||
require.NoError(t, err)
|
||||
|
||||
l := b.GetServerLocalizer()
|
||||
lc := &i18n.LocalizeConfig{
|
||||
DefaultMessage: &i18n.Message{
|
||||
Other: "test messsage",
|
||||
},
|
||||
}
|
||||
|
||||
assert.Equal(t, lc.DefaultMessage.Other, b.LocalizeWithConfig(l, lc))
|
||||
})
|
||||
|
||||
t.Run("empty config", func(t *testing.T) {
|
||||
api := &plugintest.API{}
|
||||
defaultServerLocale := "en"
|
||||
api.On("GetConfig").Return(&model.Config{
|
||||
LocalizationSettings: model.LocalizationSettings{
|
||||
DefaultServerLocale: &defaultServerLocale,
|
||||
},
|
||||
})
|
||||
api.On("GetBundlePath").Return(".", nil)
|
||||
api.On("LogWarn", mock.AnythingOfType("string"),
|
||||
mock.AnythingOfType("string"), mock.AnythingOfType("string")).Return()
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, ".")
|
||||
require.NoError(t, err)
|
||||
|
||||
l := b.GetServerLocalizer()
|
||||
lc := &i18n.LocalizeConfig{}
|
||||
|
||||
assert.Equal(t, "", b.LocalizeWithConfig(l, lc))
|
||||
})
|
||||
|
||||
t.Run("empty message", func(t *testing.T) {
|
||||
api := &plugintest.API{}
|
||||
defaultServerLocale := "en"
|
||||
api.On("GetConfig").Return(&model.Config{
|
||||
LocalizationSettings: model.LocalizationSettings{
|
||||
DefaultServerLocale: &defaultServerLocale,
|
||||
},
|
||||
})
|
||||
api.On("GetBundlePath").Return(".", nil)
|
||||
api.On("LogWarn", mock.AnythingOfType("string"),
|
||||
mock.AnythingOfType("string"), mock.AnythingOfType("string")).Return()
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, ".")
|
||||
require.NoError(t, err)
|
||||
|
||||
l := b.GetServerLocalizer()
|
||||
lc := &i18n.LocalizeConfig{
|
||||
DefaultMessage: &i18n.Message{},
|
||||
}
|
||||
|
||||
assert.Equal(t, "", b.LocalizeWithConfig(l, lc))
|
||||
})
|
||||
}
|
||||
func TestGetUserLocalizer(t *testing.T) {
|
||||
t.Run("fine", func(t *testing.T) {
|
||||
api := &plugintest.API{}
|
||||
api.On("GetUser", "userID").Return(&model.User{
|
||||
Locale: "de",
|
||||
}, nil)
|
||||
api.On("GetBundlePath").Return(".", nil)
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, ".")
|
||||
require.NoError(t, err)
|
||||
|
||||
l := b.GetUserLocalizer("userID")
|
||||
assert.NotNil(t, l)
|
||||
|
||||
enMessage := &i18n.Message{
|
||||
Other: "a",
|
||||
}
|
||||
|
||||
deMessage := &i18n.Message{
|
||||
Other: "b",
|
||||
}
|
||||
|
||||
err = b.Bundle.AddMessages(language.German, deMessage)
|
||||
require.NoError(t, err)
|
||||
|
||||
assert.Equal(t, deMessage.Other, b.LocalizeDefaultMessage(l, enMessage))
|
||||
})
|
||||
|
||||
t.Run("error", func(t *testing.T) {
|
||||
api := &plugintest.API{}
|
||||
defaultServerLocale := "es"
|
||||
api.On("GetConfig").Return(&model.Config{
|
||||
LocalizationSettings: model.LocalizationSettings{
|
||||
DefaultServerLocale: &defaultServerLocale,
|
||||
},
|
||||
})
|
||||
api.On("GetBundlePath").Return(".", nil)
|
||||
api.On("GetUser", "userID").Return(nil, &model.AppError{})
|
||||
api.On("LogWarn", mock.AnythingOfType("string"),
|
||||
mock.AnythingOfType("string"), mock.AnythingOfType("string"),
|
||||
mock.AnythingOfType("string"), mock.AnythingOfType("string")).Return()
|
||||
defer api.AssertExpectations(t)
|
||||
|
||||
b, err := i18n.InitBundle(api, ".")
|
||||
require.NoError(t, err)
|
||||
|
||||
l := b.GetUserLocalizer("userID")
|
||||
assert.NotNil(t, l)
|
||||
|
||||
enMessage := &i18n.Message{
|
||||
Other: "a",
|
||||
}
|
||||
|
||||
esMessage := &i18n.Message{
|
||||
Other: "b",
|
||||
}
|
||||
|
||||
err = b.Bundle.AddMessages(language.Spanish, esMessage)
|
||||
require.NoError(t, err)
|
||||
|
||||
assert.Equal(t, esMessage.Other, b.LocalizeDefaultMessage(l, enMessage))
|
||||
})
|
||||
}
|
||||
Ссылка в новой задаче
Block a user