summaryrefslogtreecommitdiffstats
path: root/api/command_loadtest_test.go
blob: fb5fcb20a911f1902ee4c6b694e5fbf52941bd43 (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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
// Copyright (c) 2016-present Mattermost, Inc. All Rights Reserved.
// See License.txt for license information.

package api

import (
	"strings"
	"testing"
	"time"

	"github.com/mattermost/platform/model"
	"github.com/mattermost/platform/utils"
)

func TestLoadTestHelpCommands(t *testing.T) {
	th := Setup().InitBasic()
	Client := th.BasicClient
	channel := th.BasicChannel

	// enable testing to use /test but don't save it since we don't want to overwrite config.json
	enableTesting := utils.Cfg.ServiceSettings.EnableTesting
	defer func() {
		utils.Cfg.ServiceSettings.EnableTesting = enableTesting
	}()

	utils.Cfg.ServiceSettings.EnableTesting = true

	rs := Client.Must(Client.Command(channel.Id, "/test help")).Data.(*model.CommandResponse)
	if !strings.Contains(rs.Text, "Mattermost testing commands to help") {
		t.Fatal(rs.Text)
	}

	time.Sleep(2 * time.Second)
}

func TestLoadTestSetupCommands(t *testing.T) {
	th := Setup().InitBasic()
	Client := th.BasicClient
	channel := th.BasicChannel

	// enable testing to use /test but don't save it since we don't want to overwrite config.json
	enableTesting := utils.Cfg.ServiceSettings.EnableTesting
	defer func() {
		utils.Cfg.ServiceSettings.EnableTesting = enableTesting
	}()

	utils.Cfg.ServiceSettings.EnableTesting = true

	rs := Client.Must(Client.Command(channel.Id, "/test setup fuzz 1 1 1")).Data.(*model.CommandResponse)
	if rs.Text != "Created enviroment" {
		t.Fatal(rs.Text)
	}

	time.Sleep(2 * time.Second)
}

func TestLoadTestUsersCommands(t *testing.T) {
	th := Setup().InitBasic()
	Client := th.BasicClient
	channel := th.BasicChannel

	// enable testing to use /test but don't save it since we don't want to overwrite config.json
	enableTesting := utils.Cfg.ServiceSettings.EnableTesting
	defer func() {
		utils.Cfg.ServiceSettings.EnableTesting = enableTesting
	}()

	utils.Cfg.ServiceSettings.EnableTesting = true

	rs := Client.Must(Client.Command(channel.Id, "/test users fuzz 1 2")).Data.(*model.CommandResponse)
	if rs.Text != "Added users" {
		t.Fatal(rs.Text)
	}

	time.Sleep(2 * time.Second)
}

func TestLoadTestChannelsCommands(t *testing.T) {
	th := Setup().InitBasic()
	Client := th.BasicClient
	channel := th.BasicChannel

	// enable testing to use /test but don't save it since we don't want to overwrite config.json
	enableTesting := utils.Cfg.ServiceSettings.EnableTesting
	defer func() {
		utils.Cfg.ServiceSettings.EnableTesting = enableTesting
	}()

	utils.Cfg.ServiceSettings.EnableTesting = true

	rs := Client.Must(Client.Command(channel.Id, "/test channels fuzz 1 2")).Data.(*model.CommandResponse)
	if rs.Text != "Added channels" {
		t.Fatal(rs.Text)
	}

	time.Sleep(2 * time.Second)
}

func TestLoadTestPostsCommands(t *testing.T) {
	th := Setup().InitBasic()
	Client := th.BasicClient
	channel := th.BasicChannel

	// enable testing to use /test but don't save it since we don't want to overwrite config.json
	enableTesting := utils.Cfg.ServiceSettings.EnableTesting
	defer func() {
		utils.Cfg.ServiceSettings.EnableTesting = enableTesting
	}()

	utils.Cfg.ServiceSettings.EnableTesting = true

	rs := Client.Must(Client.Command(channel.Id, "/test posts fuzz 2 3 2")).Data.(*model.CommandResponse)
	if rs.Text != "Added posts" {
		t.Fatal(rs.Text)
	}

	time.Sleep(2 * time.Second)
}

func TestLoadTestUrlCommands(t *testing.T) {
	//th := Setup().InitBasic()
	//Client := th.BasicClient
	//channel := th.BasicChannel

	// enable testing to use /loadtest but don't save it since we don't want to overwrite config.json
	//enableTesting := utils.Cfg.ServiceSettings.EnableTesting
	//defer func() {
	//	utils.Cfg.ServiceSettings.EnableTesting = enableTesting
	//}()

	//utils.Cfg.ServiceSettings.EnableTesting = true

	//command := "/loadtest url "
	//if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Command must contain a url" {
	//	t.Fatal("/loadtest url with no url should've failed")
	//}
	//
	//command = "/loadtest url http://missingfiletonwhere/path/asdf/qwerty"
	//if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Unable to get file" {
	//	t.Log(r.Text)
	//	t.Fatal("/loadtest url with invalid url should've failed")
	//}
	//
	//command = "/loadtest url https://raw.githubusercontent.com/mattermost/platform/master/README.md"
	//if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Loaded data" {
	//	t.Fatal("/loadtest url for README.md should've executed")
	//}

	// Removing these tests since they break compatibilty with previous release branches because the url pulls from github master

	// command = "/loadtest url test-emoticons1.md"
	// if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Loading data..." {
	// 	t.Fatal("/loadtest url for test-emoticons.md should've executed")
	// }

	// command = "/loadtest url test-emoticons1"
	// if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Loading data..." {
	// 	t.Fatal("/loadtest url for test-emoticons should've executed")
	// }

	// posts := Client.Must(Client.GetPosts(channel.Id, 0, 5, "")).Data.(*model.PostList)
	// // note that this may make more than 3 posts if files are too long to fit in an individual post
	// if len(posts.Order) < 3 {
	// 	t.Fatal("/loadtest url made too few posts, perhaps there needs to be a delay before GetPosts in the test?")
	// }

	//time.Sleep(2 * time.Second)
}

func TestLoadTestJsonCommands(t *testing.T) {
	//th := Setup().InitBasic()
	//Client := th.BasicClient
	//channel := th.BasicChannel

	// enable testing to use /loadtest but don't save it since we don't want to overwrite config.json
	//enableTesting := utils.Cfg.ServiceSettings.EnableTesting
	//defer func() {
	//	utils.Cfg.ServiceSettings.EnableTesting = enableTesting
	//}()

	//utils.Cfg.ServiceSettings.EnableTesting = true

	//command := "/loadtest json "
	//if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Command must contain a url" {
	//	t.Fatal("/loadtest url with no url should've failed")
	//}
	//
	//command = "/loadtest json http://missingfiletonwhere/path/asdf/qwerty"
	//if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Unable to get file" {
	//	t.Log(r.Text)
	//	t.Fatal("/loadtest url with invalid url should've failed")
	//}
	//
	//command = "/loadtest json test-slack-attachments"
	//if r := Client.Must(Client.Command(channel.Id, command, false)).Data.(*model.CommandResponse); r.Text != "Loaded data" {
	//	t.Fatal("/loadtest json should've executed")
	//}

	//time.Sleep(2 * time.Second)
}