Switching to enable integrations for testing
Этот коммит содержится в:
@@ -43,6 +43,11 @@ func TestListCommands(t *testing.T) {
|
|||||||
|
|
||||||
func TestCreateCommand(t *testing.T) {
|
func TestCreateCommand(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
|
||||||
|
enableCommands := *utils.Cfg.ServiceSettings.EnableCommands
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableCommands = &enableCommands
|
||||||
|
}()
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = true
|
*utils.Cfg.ServiceSettings.EnableCommands = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
@@ -92,12 +97,14 @@ func TestCreateCommand(t *testing.T) {
|
|||||||
t.Fatal("bad team id wasn't overwritten")
|
t.Fatal("bad team id wasn't overwritten")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestListTeamCommands(t *testing.T) {
|
func TestListTeamCommands(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableCommands := *utils.Cfg.ServiceSettings.EnableCommands
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableCommands = &enableCommands
|
||||||
|
}()
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = true
|
*utils.Cfg.ServiceSettings.EnableCommands = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
@@ -125,12 +132,14 @@ func TestListTeamCommands(t *testing.T) {
|
|||||||
t.Fatal("incorrect number of cmd")
|
t.Fatal("incorrect number of cmd")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestRegenToken(t *testing.T) {
|
func TestRegenToken(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableCommands := *utils.Cfg.ServiceSettings.EnableCommands
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableCommands = &enableCommands
|
||||||
|
}()
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = true
|
*utils.Cfg.ServiceSettings.EnableCommands = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
@@ -159,12 +168,14 @@ func TestRegenToken(t *testing.T) {
|
|||||||
t.Fatal("regen didn't work properly")
|
t.Fatal("regen didn't work properly")
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = false
|
|
||||||
}
|
}
|
||||||
|
|
||||||
func TestDeleteCommand(t *testing.T) {
|
func TestDeleteCommand(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableCommands := *utils.Cfg.ServiceSettings.EnableCommands
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableCommands = &enableCommands
|
||||||
|
}()
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = true
|
*utils.Cfg.ServiceSettings.EnableCommands = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
@@ -194,6 +205,4 @@ func TestDeleteCommand(t *testing.T) {
|
|||||||
if len(cmds) != 0 {
|
if len(cmds) != 0 {
|
||||||
t.Fatal("delete didn't work properly")
|
t.Fatal("delete didn't work properly")
|
||||||
}
|
}
|
||||||
|
|
||||||
*utils.Cfg.ServiceSettings.EnableCommands = false
|
|
||||||
}
|
}
|
||||||
|
|||||||
@@ -13,6 +13,14 @@ import (
|
|||||||
|
|
||||||
func TestCreateIncomingHook(t *testing.T) {
|
func TestCreateIncomingHook(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableIncomingHooks := utils.Cfg.ServiceSettings.EnableIncomingWebhooks
|
||||||
|
enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = enableIncomingHooks
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
|
||||||
|
}()
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = true
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
||||||
@@ -80,6 +88,14 @@ func TestCreateIncomingHook(t *testing.T) {
|
|||||||
|
|
||||||
func TestListIncomingHooks(t *testing.T) {
|
func TestListIncomingHooks(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableIncomingHooks := utils.Cfg.ServiceSettings.EnableIncomingWebhooks
|
||||||
|
enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = enableIncomingHooks
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
|
||||||
|
}()
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = true
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
||||||
@@ -122,6 +138,14 @@ func TestListIncomingHooks(t *testing.T) {
|
|||||||
|
|
||||||
func TestDeleteIncomingHook(t *testing.T) {
|
func TestDeleteIncomingHook(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableIncomingHooks := utils.Cfg.ServiceSettings.EnableIncomingWebhooks
|
||||||
|
enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = enableIncomingHooks
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
|
||||||
|
}()
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = true
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
||||||
@@ -166,6 +190,14 @@ func TestDeleteIncomingHook(t *testing.T) {
|
|||||||
|
|
||||||
func TestCreateOutgoingHook(t *testing.T) {
|
func TestCreateOutgoingHook(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableIncomingHooks := utils.Cfg.ServiceSettings.EnableIncomingWebhooks
|
||||||
|
enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = enableIncomingHooks
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
|
||||||
|
}()
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = true
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
||||||
@@ -233,6 +265,14 @@ func TestCreateOutgoingHook(t *testing.T) {
|
|||||||
|
|
||||||
func TestListOutgoingHooks(t *testing.T) {
|
func TestListOutgoingHooks(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableIncomingHooks := utils.Cfg.ServiceSettings.EnableIncomingWebhooks
|
||||||
|
enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = enableIncomingHooks
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
|
||||||
|
}()
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = true
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
||||||
@@ -275,6 +315,14 @@ func TestListOutgoingHooks(t *testing.T) {
|
|||||||
|
|
||||||
func TestDeleteOutgoingHook(t *testing.T) {
|
func TestDeleteOutgoingHook(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableIncomingHooks := utils.Cfg.ServiceSettings.EnableIncomingWebhooks
|
||||||
|
enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = enableIncomingHooks
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
|
||||||
|
}()
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = true
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
||||||
@@ -319,6 +367,14 @@ func TestDeleteOutgoingHook(t *testing.T) {
|
|||||||
|
|
||||||
func TestRegenOutgoingHookToken(t *testing.T) {
|
func TestRegenOutgoingHookToken(t *testing.T) {
|
||||||
Setup()
|
Setup()
|
||||||
|
enableIncomingHooks := utils.Cfg.ServiceSettings.EnableIncomingWebhooks
|
||||||
|
enableOutgoingHooks := utils.Cfg.ServiceSettings.EnableOutgoingWebhooks
|
||||||
|
defer func() {
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = enableIncomingHooks
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = enableOutgoingHooks
|
||||||
|
}()
|
||||||
|
utils.Cfg.ServiceSettings.EnableIncomingWebhooks = true
|
||||||
|
utils.Cfg.ServiceSettings.EnableOutgoingWebhooks = true
|
||||||
|
|
||||||
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
team := &model.Team{DisplayName: "Name", Name: "z-z-" + model.NewId() + "a", Email: "test@nowhere.com", Type: model.TEAM_OPEN}
|
||||||
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
team = Client.Must(Client.CreateTeam(team)).Data.(*model.Team)
|
||||||
|
|||||||
Ссылка в новой задаче
Block a user