summaryrefslogtreecommitdiffstats
path: root/api
diff options
context:
space:
mode:
authorGeorge Goldberg <george@gberg.me>2017-09-15 17:40:37 +0100
committerCorey Hulen <corey@hulen.com>2017-09-15 09:40:37 -0700
commitfd878bd50c1c36f90962776ebb9626d016239540 (patch)
tree0d405f1351596e4318a083797210733bfdf39a73 /api
parent8195c80aa12136838ff4491fac989e0b946382b1 (diff)
downloadchat-fd878bd50c1c36f90962776ebb9626d016239540.tar.gz
chat-fd878bd50c1c36f90962776ebb9626d016239540.tar.bz2
chat-fd878bd50c1c36f90962776ebb9626d016239540.zip
PLT-7539: Remove redundant license checks from CLI commands. (#7451)
Diffstat (limited to 'api')
-rw-r--r--api/cli_test.go163
1 files changed, 57 insertions, 106 deletions
diff --git a/api/cli_test.go b/api/cli_test.go
index 7e326728e..8c7381290 100644
--- a/api/cli_test.go
+++ b/api/cli_test.go
@@ -5,6 +5,7 @@ package api
import (
"os/exec"
+ "strings"
"testing"
"github.com/mattermost/mattermost-server/app"
@@ -149,22 +150,20 @@ func TestCliJoinChannel(t *testing.T) {
th := Setup().InitBasic()
channel := th.CreateChannel(th.BasicClient, th.BasicTeam)
- // These test cannot run since this feature requires an enteprise license
-
- // cmd := exec.Command("bash", "-c", `go run ../*.go -join_channel -team_name="`+th.BasicTeam.Name+`" -channel_name="`+channel.Name+`" -email="`+th.BasicUser2.Email+`"`)
- // output, err := cmd.CombinedOutput()
- // if err != nil {
- // t.Log(string(output))
- // t.Fatal(err)
- // }
+ cmd := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel add "+th.BasicTeam.Name+":"+channel.Name+" "+th.BasicUser2.Email)
+ output, err := cmd.CombinedOutput()
+ if err != nil {
+ t.Log(string(output))
+ t.Fatal(err)
+ }
- // // Joining twice should succeed
- // cmd1 := exec.Command("bash", "-c", `go run ../*.go -join_channel -team_name="`+th.BasicTeam.Name+`" -channel_name="`+channel.Name+`" -email="`+th.BasicUser2.Email+`"`)
- // output1, err1 := cmd1.CombinedOutput()
- // if err1 != nil {
- // t.Log(string(output1))
- // t.Fatal(err1)
- // }
+ // Joining twice should succeed
+ cmd1 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel add "+th.BasicTeam.Name+":"+channel.Name+" "+th.BasicUser2.Email)
+ output1, err1 := cmd1.CombinedOutput()
+ if err1 != nil {
+ t.Log(string(output1))
+ t.Fatal(err1)
+ }
// should fail because channel does not exist
cmd2 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel add "+th.BasicTeam.Name+":"+channel.Name+"asdf "+th.BasicUser2.Email)
@@ -173,14 +172,6 @@ func TestCliJoinChannel(t *testing.T) {
t.Log(string(output2))
t.Fatal()
}
-
- // should fail because channel does not have license
- cmd3 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel add "+th.BasicTeam.Name+":"+channel.Name+" "+th.BasicUser2.Email)
- output3, err3 := cmd3.CombinedOutput()
- if err3 == nil {
- t.Log(string(output3))
- t.Fatal()
- }
}
func TestCliRemoveChannel(t *testing.T) {
@@ -191,36 +182,11 @@ func TestCliRemoveChannel(t *testing.T) {
th := Setup().InitBasic()
channel := th.CreateChannel(th.BasicClient, th.BasicTeam)
- // These test cannot run since this feature requires an enteprise license
-
- // cmd := exec.Command("bash", "-c", `go run ../*.go -join_channel -team_name="`+th.BasicTeam.Name+`" -channel_name="`+channel.Name+`" -email="`+th.BasicUser2.Email+`"`)
- // output, err := cmd.CombinedOutput()
- // if err != nil {
- // t.Log(string(output))
- // t.Fatal(err)
- // }
-
- // cmd0 := exec.Command("bash", "-c", `go run ../*.go -leave_channel -team_name="`+th.BasicTeam.Name+`" -channel_name="`+channel.Name+`" -email="`+th.BasicUser2.Email+`"`)
- // output0, err0 := cmd0.CombinedOutput()
- // if err0 != nil {
- // t.Log(string(output0))
- // t.Fatal(err0)
- // }
-
- // // Leaving twice should succeed
- // cmd1 := exec.Command("bash", "-c", `go run ../*.go -leave_channel -team_name="`+th.BasicTeam.Name+`" -channel_name="`+channel.Name+`" -email="`+th.BasicUser2.Email+`"`)
- // output1, err1 := cmd1.CombinedOutput()
- // if err1 != nil {
- // t.Log(string(output1))
- // t.Fatal(err1)
- // }
-
- // cannot leave town-square
- cmd1a := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel remove "+th.BasicTeam.Name+":town-square "+th.BasicUser2.Email)
- output1a, err1a := cmd1a.CombinedOutput()
- if err1a == nil {
- t.Log(string(output1a))
- t.Fatal()
+ cmd := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel add "+th.BasicTeam.Name+":"+channel.Name+" "+th.BasicUser2.Email)
+ output, err := cmd.CombinedOutput()
+ if err != nil {
+ t.Log(string(output))
+ t.Fatal(err)
}
// should fail because channel does not exist
@@ -231,12 +197,19 @@ func TestCliRemoveChannel(t *testing.T) {
t.Fatal()
}
- // should fail because channel does not have license
cmd3 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel remove "+th.BasicTeam.Name+":"+channel.Name+" "+th.BasicUser2.Email)
output3, err3 := cmd3.CombinedOutput()
- if err3 == nil {
+ if err3 != nil {
t.Log(string(output3))
- t.Fatal()
+ t.Fatal(err3)
+ }
+
+ // Leaving twice should succeed
+ cmd4 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel remove "+th.BasicTeam.Name+":"+channel.Name+" "+th.BasicUser2.Email)
+ output4, err4 := cmd4.CombinedOutput()
+ if err4 != nil {
+ t.Log(string(output4))
+ t.Fatal(err4)
}
}
@@ -249,29 +222,19 @@ func TestCliListChannels(t *testing.T) {
channel := th.CreateChannel(th.BasicClient, th.BasicTeam)
th.BasicClient.Must(th.BasicClient.DeleteChannel(channel.Id))
- // These test cannot run since this feature requires an enteprise license
-
- // cmd := exec.Command("bash", "-c", `go run ../*.go -list_channels -team_name="`+th.BasicTeam.Name+`"`)
- // output, err := cmd.CombinedOutput()
- // if err != nil {
- // t.Log(string(output))
- // t.Fatal(err)
- // }
-
- // if !strings.Contains(string(output), "town-square") {
- // t.Fatal("should have channels")
- // }
+ cmd := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel list "+th.BasicTeam.Name)
+ output, err := cmd.CombinedOutput()
+ if err != nil {
+ t.Log(string(output))
+ t.Fatal(err)
+ }
- // if !strings.Contains(string(output), channel.Name+" (archived)") {
- // t.Fatal("should have archived channel")
- // }
+ if !strings.Contains(string(output), "town-square") {
+ t.Fatal("should have channels")
+ }
- // should fail because channel does not have license
- cmd3 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel list "+th.BasicTeam.Name)
- output3, err3 := cmd3.CombinedOutput()
- if err3 == nil {
- t.Log(string(output3))
- t.Fatal()
+ if !strings.Contains(string(output), channel.Name+" (archived)") {
+ t.Fatal("should have archived channel")
}
}
@@ -284,29 +247,19 @@ func TestCliRestoreChannel(t *testing.T) {
channel := th.CreateChannel(th.BasicClient, th.BasicTeam)
th.BasicClient.Must(th.BasicClient.DeleteChannel(channel.Id))
- // These test cannot run since this feature requires an enteprise license
-
- // cmd := exec.Command("bash", "-c", `go run ../*.go -restore_channel -team_name="`+th.BasicTeam.Name+`" -channel_name="`+channel.Name+`"`)
- // output, err := cmd.CombinedOutput()
- // if err != nil {
- // t.Log(string(output))
- // t.Fatal(err)
- // }
-
- // // restoring twice should succeed
- // cmd1 := exec.Command("bash", "-c", `go run ../*.go -restore_channel -team_name="`+th.BasicTeam.Name+`" -channel_name="`+channel.Name+`"`)
- // output1, err1 := cmd1.CombinedOutput()
- // if err1 != nil {
- // t.Log(string(output1))
- // t.Fatal(err1)
- // }
-
- // should fail because channel does not have license
- cmd3 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel restore "+th.BasicTeam.Name+":"+channel.Name)
- output3, err3 := cmd3.CombinedOutput()
- if err3 == nil {
- t.Log(string(output3))
- t.Fatal()
+ cmd := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel restore "+th.BasicTeam.Name+":"+channel.Name)
+ output, err := cmd.CombinedOutput()
+ if err != nil {
+ t.Log(string(output))
+ t.Fatal(err)
+ }
+
+ // restoring twice should succeed
+ cmd1 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel restore "+th.BasicTeam.Name+":"+channel.Name)
+ output1, err1 := cmd1.CombinedOutput()
+ if err1 != nil {
+ t.Log(string(output1))
+ t.Fatal(err1)
}
}
@@ -406,21 +359,19 @@ func TestCliCreateChannel(t *testing.T) {
id := model.NewId()
name := "name" + id
- // should fail because channel does not have license
cmd := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel create --display_name "+name+" --team "+th.BasicTeam.Name+" --name "+name)
output, err := cmd.CombinedOutput()
- if err == nil {
+ if err != nil {
t.Log(string(output))
- t.Fatal()
+ t.Fatal(err)
}
- // should fail because channel does not have license
name = name + "-private"
cmd2 := exec.Command("bash", "-c", "go run ../cmd/platform/*.go channel create --display_name="+name+" --team "+th.BasicTeam.Name+" --private --name "+name)
output2, err2 := cmd2.CombinedOutput()
- if err2 == nil {
+ if err2 != nil {
t.Log(string(output2))
- t.Fatal()
+ t.Fatal(err2)
}
}