From 9d6a9ff4be15f673e8364a984ccc2b2c3a465b73 Mon Sep 17 00:00:00 2001 From: Evgeniy Date: Fri, 19 Jan 2018 00:05:00 +0300 Subject: Post a system message to the affected channel by CLI command (#7877) (#7968) --- app/channel_test.go | 15 +++++++++++++++ 1 file changed, 15 insertions(+) (limited to 'app/channel_test.go') diff --git a/app/channel_test.go b/app/channel_test.go index d44af467d..a414fbb35 100644 --- a/app/channel_test.go +++ b/app/channel_test.go @@ -190,6 +190,21 @@ func TestCreateChannelPrivate(t *testing.T) { assert.Equal(t, privateChannel.Id, histories[0].ChannelId) } +func TestUpdateChannelPrivacy(t *testing.T) { + th := Setup().InitBasic() + defer th.TearDown() + + privateChannel := th.createChannel(th.BasicTeam, model.CHANNEL_PRIVATE) + privateChannel.Type = model.CHANNEL_OPEN + + if publicChannel, err := th.App.UpdateChannelPrivacy(privateChannel, th.BasicUser); err != nil { + t.Fatal("Failed to update channel privacy. Error: " + err.Error()) + } else { + assert.Equal(t, publicChannel.Id, privateChannel.Id) + assert.Equal(t, publicChannel.Type, model.CHANNEL_OPEN) + } +} + func TestCreateGroupChannel(t *testing.T) { th := Setup().InitBasic() defer th.TearDown() -- cgit v1.2.3-1-g7c22