mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* PLT-5860 Updated copyright date in about modal * PLT-5860 Updated copyright notice in JSX files * PLT-5860 Updated copyright notice in go files * Fixed misc copyright dates * Fixed component snapshots
70 lines
1.6 KiB
Go
70 lines
1.6 KiB
Go
// Copyright (c) 2017-present Mattermost, Inc. All Rights Reserved.
|
|
// See License.txt for license information.
|
|
|
|
package api4
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
)
|
|
|
|
func TestGetBrandImage(t *testing.T) {
|
|
th := Setup().InitBasic().InitSystemAdmin()
|
|
defer TearDown()
|
|
Client := th.Client
|
|
|
|
data, resp := Client.GetBrandImage()
|
|
CheckNoError(t, resp)
|
|
|
|
if len(data) != 0 {
|
|
t.Fatal("no image uploaded - should be empty")
|
|
}
|
|
|
|
Client.Logout()
|
|
data, resp = Client.GetBrandImage()
|
|
CheckNoError(t, resp)
|
|
|
|
if len(data) != 0 {
|
|
t.Fatal("no image uploaded - should be empty")
|
|
}
|
|
|
|
data, resp = th.SystemAdminClient.GetBrandImage()
|
|
CheckNoError(t, resp)
|
|
|
|
if len(data) != 0 {
|
|
t.Fatal("no image uploaded - should be empty")
|
|
}
|
|
}
|
|
|
|
func TestUploadBrandImage(t *testing.T) {
|
|
th := Setup().InitBasic().InitSystemAdmin()
|
|
defer TearDown()
|
|
Client := th.Client
|
|
|
|
data, err := readTestFile("test.png")
|
|
if err != nil {
|
|
t.Fatal(err)
|
|
}
|
|
|
|
ok, resp := Client.UploadBrandImage(data)
|
|
CheckForbiddenStatus(t, resp)
|
|
if ok {
|
|
t.Fatal("Should return false, set brand image not allowed")
|
|
}
|
|
|
|
// status code returns either forbidden or unauthorized
|
|
// note: forbidden is set as default at Client4.SetProfileImage when request is terminated early by server
|
|
Client.Logout()
|
|
_, resp = Client.UploadBrandImage(data)
|
|
if resp.StatusCode == http.StatusForbidden {
|
|
CheckForbiddenStatus(t, resp)
|
|
} else if resp.StatusCode == http.StatusUnauthorized {
|
|
CheckUnauthorizedStatus(t, resp)
|
|
} else {
|
|
t.Fatal("Should have failed either forbidden or unauthorized")
|
|
}
|
|
|
|
_, resp = th.SystemAdminClient.UploadBrandImage(data)
|
|
CheckNotImplementedStatus(t, resp)
|
|
}
|