summaryrefslogtreecommitdiffstats
path: root/api4/brand_test.go
blob: 98a53957454ddfb89b620fedff31b7fb150b549f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
// 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)
}