summaryrefslogtreecommitdiffstats
path: root/api4/channel_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'api4/channel_test.go')
-rw-r--r--api4/channel_test.go24
1 files changed, 24 insertions, 0 deletions
diff --git a/api4/channel_test.go b/api4/channel_test.go
index 5ca4dee6e..8593ea831 100644
--- a/api4/channel_test.go
+++ b/api4/channel_test.go
@@ -2038,6 +2038,30 @@ func TestRemoveChannelMember(t *testing.T) {
_, resp = Client.RemoveUserFromChannel(privateChannel.Id, user2.Id)
CheckNoError(t, resp)
+
+ // Test on preventing removal of user from a direct channel
+ directChannel, resp := Client.CreateDirectChannel(user1.Id, user2.Id)
+ CheckNoError(t, resp)
+
+ _, resp = Client.RemoveUserFromChannel(directChannel.Id, user1.Id)
+ CheckBadRequestStatus(t, resp)
+
+ _, resp = Client.RemoveUserFromChannel(directChannel.Id, user2.Id)
+ CheckBadRequestStatus(t, resp)
+
+ _, resp = th.SystemAdminClient.RemoveUserFromChannel(directChannel.Id, user1.Id)
+ CheckBadRequestStatus(t, resp)
+
+ // Test on preventing removal of user from a group channel
+ user3 := th.CreateUser()
+ groupChannel, resp := Client.CreateGroupChannel([]string{user1.Id, user2.Id, user3.Id})
+ CheckNoError(t, resp)
+
+ _, resp = Client.RemoveUserFromChannel(groupChannel.Id, user1.Id)
+ CheckBadRequestStatus(t, resp)
+
+ _, resp = th.SystemAdminClient.RemoveUserFromChannel(groupChannel.Id, user1.Id)
+ CheckBadRequestStatus(t, resp)
}
func TestAutocompleteChannels(t *testing.T) {