mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
It was a good decision in hindsight to keep the public module as 0.x because this would have been a breaking change again. https://mattermost.atlassian.net/browse/MM-53032 ```release-note Changed the Go module path from github.com/mattermost/mattermost-server/server/v8 to github.com/mattermost/mattermost/server/v8. For the public facing module, it's path is also changed from github.com/mattermost/mattermost-server/server/public to github.com/mattermost/mattermost/server/public ```
91 lines
2.6 KiB
Go
91 lines
2.6 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package app
|
|
|
|
import (
|
|
"encoding/json"
|
|
"net/http"
|
|
"net/http/httptest"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/mattermost/mattermost/server/public/model"
|
|
)
|
|
|
|
func TestGetLatestVersion(t *testing.T) {
|
|
th := Setup(t).InitBasic()
|
|
defer th.TearDown()
|
|
|
|
version := &model.GithubReleaseInfo{
|
|
Id: 57117096,
|
|
TagName: "v6.3.0",
|
|
Name: "v6.3.0",
|
|
CreatedAt: "2022-01-13T14:19:44Z",
|
|
PublishedAt: "2022-01-14T13:45:09Z",
|
|
Body: "Mattermost Platform Release v6.3.0",
|
|
Url: "https://github.com/mattermost/mattermost-server/releases/tag/v6.3.0",
|
|
}
|
|
|
|
validJSON, jsonErr := json.Marshal(version)
|
|
require.NoError(t, jsonErr)
|
|
|
|
ts := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write(validJSON)
|
|
}))
|
|
defer ts.Close()
|
|
|
|
t.Run("get latest mm version happy path", func(t *testing.T) {
|
|
_, err := th.App.GetLatestVersion(ts.URL)
|
|
require.Nil(t, err)
|
|
})
|
|
|
|
t.Run("get latest mm version from cache", func(t *testing.T) {
|
|
th.App.ClearLatestVersionCache()
|
|
originalResult, err := th.App.GetLatestVersion(ts.URL)
|
|
require.Nil(t, err)
|
|
|
|
// Call same function but mock the GET request to return a different result.
|
|
// We are hoping the function will use the cache instead of making the GET request
|
|
v := &model.GithubReleaseInfo{
|
|
Id: 57117096,
|
|
TagName: "v6.3.1",
|
|
Name: "v6.3.1",
|
|
CreatedAt: "2022-01-13T14:19:44Z",
|
|
PublishedAt: "2022-01-14T13:45:09Z",
|
|
Body: "Mattermost Platform Release v6.3.0",
|
|
Url: "https://github.com/mattermost/mattermost-server/releases/tag/v6.3.0",
|
|
}
|
|
|
|
updatedJSON, jsonErr := json.Marshal(v)
|
|
require.NoError(t, jsonErr)
|
|
|
|
updatedServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.Write(updatedJSON)
|
|
}))
|
|
defer ts.Close()
|
|
|
|
cachedResult, err := th.App.GetLatestVersion(updatedServer.URL)
|
|
require.Nil(t, err)
|
|
|
|
require.Equal(t, originalResult.TagName, cachedResult.TagName, "did not get cached result")
|
|
})
|
|
|
|
t.Run("get latest mm version error from external", func(t *testing.T) {
|
|
th.App.ClearLatestVersionCache()
|
|
errorServer := httptest.NewServer(http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
|
w.WriteHeader(http.StatusInternalServerError)
|
|
w.Write([]byte(`
|
|
{
|
|
"message": "internal server error"
|
|
}
|
|
`))
|
|
}))
|
|
defer ts.Close()
|
|
|
|
_, appErr := th.App.GetLatestVersion(errorServer.URL)
|
|
require.NotNil(t, appErr)
|
|
})
|
|
}
|