mirror of
https://github.com/mattermost/focalboard.git
synced 2024-12-21 13:38:56 +02:00
0cd4257ebc
* add ping endpoint and tests * remove unnecessary newlines * fix: invalid Swagger YAML comment blocks * refactor and add 'suite' SKU * generate swagger docs Co-authored-by: Mattermod <mattermod@users.noreply.github.com> Co-authored-by: Paul Esch-Laurent <paul.esch-laurent@mattermost.com>
38 lines
859 B
Go
38 lines
859 B
Go
package app
|
|
|
|
import (
|
|
"reflect"
|
|
"runtime"
|
|
"testing"
|
|
|
|
"github.com/mattermost/focalboard/server/model"
|
|
)
|
|
|
|
func TestGetServerMetadata(t *testing.T) {
|
|
th, tearDown := SetupTestHelper(t)
|
|
defer tearDown()
|
|
|
|
th.Store.EXPECT().DBType().Return("TEST_DB_TYPE")
|
|
th.Store.EXPECT().DBVersion().Return("TEST_DB_VERSION")
|
|
|
|
t.Run("Get Server Metadata", func(t *testing.T) {
|
|
got := th.App.GetServerMetadata()
|
|
want := &ServerMetadata{
|
|
Version: model.CurrentVersion,
|
|
BuildNumber: model.BuildNumber,
|
|
BuildDate: model.BuildDate,
|
|
Commit: model.BuildHash,
|
|
Edition: model.Edition,
|
|
DBType: "TEST_DB_TYPE",
|
|
DBVersion: "TEST_DB_VERSION",
|
|
OSType: runtime.GOOS,
|
|
OSArch: runtime.GOARCH,
|
|
SKU: "personal_server",
|
|
}
|
|
|
|
if !reflect.DeepEqual(got, want) {
|
|
t.Errorf("got: %q, want: %q", got, want)
|
|
}
|
|
})
|
|
}
|