summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
Diffstat (limited to 'api')
-rw-r--r--api/cli_test.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/api/cli_test.go b/api/cli_test.go
index c25394c17..de2347058 100644
--- a/api/cli_test.go
+++ b/api/cli_test.go
@@ -417,3 +417,27 @@ func TestCliCreateChannel(t *testing.T) {
t.Fatal()
}
}
+
+func TestCliMakeUserActiveAndInactive(t *testing.T) {
+ if disableCliTests {
+ return
+ }
+
+ th := Setup().InitBasic()
+
+ // first inactivate the user
+ cmd := exec.Command("bash", "-c", `go run ../mattermost.go -activate_user -inactive -email="`+th.BasicUser.Email+`"`)
+ output, err := cmd.CombinedOutput()
+ if err != nil {
+ t.Log(string(output))
+ t.Fatal()
+ }
+
+ // activate the inactive user
+ cmd2 := exec.Command("bash", "-c", `go run ../mattermost.go -activate_user -email="`+th.BasicUser.Email+`"`)
+ output2, err2 := cmd2.CombinedOutput()
+ if err2 != nil {
+ t.Log(string(output2))
+ t.Fatal()
+ }
+}