From 3224d2f6a3bd95293fff25d6cc417b30b4f6e334 Mon Sep 17 00:00:00 2001 From: Saturnino Abril Date: Mon, 23 Apr 2018 20:18:58 +0800 Subject: add api to convert a channel from public to private and restrict that to system_admin (#8655) --- api4/channel_test.go | 40 ++++++++++++++++++++++++++++++++++++++++ 1 file changed, 40 insertions(+) (limited to 'api4/channel_test.go') diff --git a/api4/channel_test.go b/api4/channel_test.go index 4c27e040a..767fdbdb8 100644 --- a/api4/channel_test.go +++ b/api4/channel_test.go @@ -897,6 +897,46 @@ func TestDeleteChannel(t *testing.T) { CheckForbiddenStatus(t, resp) } +func TestConvertChannelToPrivate(t *testing.T) { + th := Setup().InitBasic().InitSystemAdmin() + defer th.TearDown() + Client := th.Client + + defaultChannel, _ := th.App.GetChannelByName(model.DEFAULT_CHANNEL, th.BasicTeam.Id) + _, resp := Client.ConvertChannelToPrivate(defaultChannel.Id) + CheckForbiddenStatus(t, resp) + + privateChannel := th.CreatePrivateChannel() + _, resp = Client.ConvertChannelToPrivate(privateChannel.Id) + CheckForbiddenStatus(t, resp) + + publicChannel := th.CreatePublicChannel() + _, resp = Client.ConvertChannelToPrivate(publicChannel.Id) + CheckForbiddenStatus(t, resp) + + th.LoginTeamAdmin() + _, resp = Client.ConvertChannelToPrivate(publicChannel.Id) + CheckForbiddenStatus(t, resp) + + rchannel, resp := th.SystemAdminClient.ConvertChannelToPrivate(privateChannel.Id) + CheckBadRequestStatus(t, resp) + if rchannel != nil { + t.Fatal("should not return a channel") + } + + rchannel, resp = th.SystemAdminClient.ConvertChannelToPrivate(defaultChannel.Id) + CheckBadRequestStatus(t, resp) + if rchannel != nil { + t.Fatal("should not return a channel") + } + + rchannel, resp = th.SystemAdminClient.ConvertChannelToPrivate(publicChannel.Id) + CheckOKStatus(t, resp) + if rchannel.Type != model.CHANNEL_PRIVATE { + t.Fatal("channel should be converted from public to private") + } +} + func TestRestoreChannel(t *testing.T) { th := Setup().InitBasic().InitSystemAdmin() defer th.TearDown() -- cgit v1.2.3-1-g7c22