Mm 16623 fix all initialism errors in channels/app and channels/api4 dir (#25743)
* updated go mod and sum files * fixed var-naming errors in channels/app and channels/api4 dir * Revert "updated go mod and sum files" This reverts commit 088dd00a848c2c31952c29f0a2a28a9fb47fc3f7. * renamed a cost .
Этот коммит содержится в:
коммит произвёл
GitHub
родитель
293caec0c7
Коммит
ebdc964161
@@ -732,7 +732,7 @@ func TestCreateGroupChannel(t *testing.T) {
|
||||
CheckBadRequestStatus(t, resp)
|
||||
require.Nil(t, rgc)
|
||||
|
||||
_, resp, err = client.CreateGroupChannel(context.Background(), []string{user.Id, user2.Id, user3.Id, GenerateTestId()})
|
||||
_, resp, err = client.CreateGroupChannel(context.Background(), []string{user.Id, user2.Id, user3.Id, GenerateTestID()})
|
||||
require.Error(t, err)
|
||||
CheckBadRequestStatus(t, resp)
|
||||
|
||||
@@ -1087,7 +1087,7 @@ func TestGetPublicChannelsByIdsForTeam(t *testing.T) {
|
||||
require.Len(t, channels, 1, "should return 1 channel")
|
||||
require.Equal(t, output[0], channels[0].DisplayName, "missing channel")
|
||||
|
||||
input = append(input, GenerateTestId())
|
||||
input = append(input, GenerateTestID())
|
||||
input = append(input, th.BasicChannel2.Id)
|
||||
input = append(input, th.BasicPrivateChannel.Id)
|
||||
output = append(output, th.BasicChannel2.DisplayName)
|
||||
@@ -1101,7 +1101,7 @@ func TestGetPublicChannelsByIdsForTeam(t *testing.T) {
|
||||
require.Equal(t, output[i], c.DisplayName, "missing channel")
|
||||
}
|
||||
|
||||
_, resp, err := client.GetPublicChannelsByIdsForTeam(context.Background(), GenerateTestId(), input)
|
||||
_, resp, err := client.GetPublicChannelsByIdsForTeam(context.Background(), GenerateTestID(), input)
|
||||
require.Error(t, err)
|
||||
CheckForbiddenStatus(t, resp)
|
||||
|
||||
@@ -1113,7 +1113,7 @@ func TestGetPublicChannelsByIdsForTeam(t *testing.T) {
|
||||
require.Error(t, err)
|
||||
CheckBadRequestStatus(t, resp)
|
||||
|
||||
_, resp, err = client.GetPublicChannelsByIdsForTeam(context.Background(), teamId, []string{GenerateTestId()})
|
||||
_, resp, err = client.GetPublicChannelsByIdsForTeam(context.Background(), teamId, []string{GenerateTestID()})
|
||||
require.Error(t, err)
|
||||
CheckNotFoundStatus(t, resp)
|
||||
|
||||
@@ -1978,7 +1978,7 @@ func TestDeleteChannel(t *testing.T) {
|
||||
require.Nilf(t, appErr, "Expected nil, Got %v", appErr)
|
||||
require.True(t, ch.DeleteAt != 0, "should have returned one with a populated DeleteAt.")
|
||||
|
||||
post1 := &model.Post{ChannelId: publicChannel1.Id, Message: "a" + GenerateTestId() + "a"}
|
||||
post1 := &model.Post{ChannelId: publicChannel1.Id, Message: "a" + GenerateTestID() + "a"}
|
||||
_, resp, _ := client.CreatePost(context.Background(), post1)
|
||||
require.NotNil(t, resp, "expected response to not be nil")
|
||||
|
||||
@@ -2039,7 +2039,7 @@ func TestDeleteChannel(t *testing.T) {
|
||||
CheckUnauthorizedStatus(t, resp)
|
||||
|
||||
c.Logout(context.Background())
|
||||
resp, err = c.DeleteChannel(context.Background(), GenerateTestId())
|
||||
resp, err = c.DeleteChannel(context.Background(), GenerateTestID())
|
||||
require.Error(t, err)
|
||||
CheckUnauthorizedStatus(t, resp)
|
||||
|
||||
@@ -2795,7 +2795,7 @@ func TestGetPinnedPosts(t *testing.T) {
|
||||
posts, resp, _ = client.GetPinnedPosts(context.Background(), channel.Id, resp.Etag)
|
||||
CheckEtag(t, posts, resp)
|
||||
|
||||
_, resp, err = client.GetPinnedPosts(context.Background(), GenerateTestId(), "")
|
||||
_, resp, err = client.GetPinnedPosts(context.Background(), GenerateTestID(), "")
|
||||
require.Error(t, err)
|
||||
CheckForbiddenStatus(t, resp)
|
||||
|
||||
@@ -3092,7 +3092,7 @@ func TestAddChannelMember(t *testing.T) {
|
||||
require.Equal(t, privateChannel.Id, cm.ChannelId, "should have returned exact channel")
|
||||
require.Equal(t, user2.Id, cm.UserId, "should have returned exact user added to private channel")
|
||||
|
||||
post := &model.Post{ChannelId: publicChannel.Id, Message: "a" + GenerateTestId() + "a"}
|
||||
post := &model.Post{ChannelId: publicChannel.Id, Message: "a" + GenerateTestID() + "a"}
|
||||
rpost, _, err := client.CreatePost(context.Background(), post)
|
||||
require.NoError(t, err)
|
||||
|
||||
@@ -3106,7 +3106,7 @@ func TestAddChannelMember(t *testing.T) {
|
||||
require.Error(t, err)
|
||||
CheckBadRequestStatus(t, resp)
|
||||
|
||||
_, resp, err = client.AddChannelMemberWithRootId(context.Background(), publicChannel.Id, user.Id, GenerateTestId())
|
||||
_, resp, err = client.AddChannelMemberWithRootId(context.Background(), publicChannel.Id, user.Id, GenerateTestID())
|
||||
require.Error(t, err)
|
||||
CheckNotFoundStatus(t, resp)
|
||||
|
||||
@@ -3119,7 +3119,7 @@ func TestAddChannelMember(t *testing.T) {
|
||||
CheckBadRequestStatus(t, resp)
|
||||
require.Nil(t, cm, "should return nothing")
|
||||
|
||||
_, resp, err = client.AddChannelMember(context.Background(), publicChannel.Id, GenerateTestId())
|
||||
_, resp, err = client.AddChannelMember(context.Background(), publicChannel.Id, GenerateTestID())
|
||||
require.Error(t, err)
|
||||
CheckNotFoundStatus(t, resp)
|
||||
|
||||
@@ -3127,7 +3127,7 @@ func TestAddChannelMember(t *testing.T) {
|
||||
require.Error(t, err)
|
||||
CheckBadRequestStatus(t, resp)
|
||||
|
||||
_, resp, err = client.AddChannelMember(context.Background(), GenerateTestId(), user2.Id)
|
||||
_, resp, err = client.AddChannelMember(context.Background(), GenerateTestID(), user2.Id)
|
||||
require.Error(t, err)
|
||||
CheckNotFoundStatus(t, resp)
|
||||
|
||||
|
||||
Ссылка в новой задаче
Block a user