mirror of
https://github.com/mattermost/mattermost.git
synced 2025-02-25 18:55:24 -06:00
* Return an error seperately from Response * Remove BuildErrorResponse * Drop Response.Error from model/client4.go * Migrate require.Nil checks * Migrate require.NotNil checks * More manual fixes * Move error check out of CheckOKStatus and CheckCreatedStatus * Move error check out of CheckForbiddenStatus * Move error check out of CheckUnauthorizedStatus * Move error check out of CheckNotFoundStatus * Move error check out of CheckBadRequestStatus * Move error check out of CheckNotImplementedStatus and CheckRequestEntityTooLargeStatus * Move error check out of CheckInternalErrorStatus * Move error check out of CheckServiceUnavailableStatus * Remove error check from checkHTTPStatus * Remove remaining references to Response.Error * Check previously unchecked errors * Manually fix compile and linter errors * Return error in CreateWebSocket methods * Return error instead of *AppError in DoApi methods * Manually fix bad replacments * Conistently return Response and error * Use err instead of seperate bool return value to indicate success * Reduce ussage of model.AppError in web/oauth_test.go * Remove client4.Must * Check error in buf.ReadFrom * Fix failing tests
59 lines
1.7 KiB
Go
59 lines
1.7 KiB
Go
// Copyright (c) 2015-present Mattermost, Inc. All Rights Reserved.
|
|
// See LICENSE.txt for license information.
|
|
|
|
package api4
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/mattermost/mattermost-server/v6/model"
|
|
)
|
|
|
|
func TestGetTermsOfService(t *testing.T) {
|
|
th := Setup(t).InitBasic()
|
|
defer th.TearDown()
|
|
client := th.Client
|
|
|
|
_, appErr := th.App.CreateTermsOfService("abc", th.BasicUser.Id)
|
|
require.Nil(t, appErr)
|
|
|
|
termsOfService, _, err := client.GetTermsOfService("")
|
|
require.NoError(t, err)
|
|
|
|
assert.NotNil(t, termsOfService)
|
|
assert.Equal(t, "abc", termsOfService.Text)
|
|
assert.NotEmpty(t, termsOfService.Id)
|
|
assert.NotEmpty(t, termsOfService.CreateAt)
|
|
}
|
|
|
|
func TestCreateTermsOfService(t *testing.T) {
|
|
th := Setup(t).InitBasic()
|
|
defer th.TearDown()
|
|
client := th.Client
|
|
|
|
_, _, err := client.CreateTermsOfService("terms of service new", th.BasicUser.Id)
|
|
CheckErrorID(t, err, "api.context.permissions.app_error")
|
|
}
|
|
|
|
func TestCreateTermsOfServiceAdminUser(t *testing.T) {
|
|
th := Setup(t).InitBasic()
|
|
defer th.TearDown()
|
|
client := th.SystemAdminClient
|
|
|
|
termsOfService, _, err := client.CreateTermsOfService("terms of service new", th.SystemAdminUser.Id)
|
|
CheckErrorID(t, err, "api.create_terms_of_service.custom_terms_of_service_disabled.app_error")
|
|
assert.Nil(t, termsOfService)
|
|
|
|
th.App.Srv().SetLicense(model.NewTestLicense("EnableCustomTermsOfService"))
|
|
|
|
termsOfService, _, err = client.CreateTermsOfService("terms of service new_2", th.SystemAdminUser.Id)
|
|
require.NoError(t, err)
|
|
assert.NotEmpty(t, termsOfService.Id)
|
|
assert.NotEmpty(t, termsOfService.CreateAt)
|
|
assert.Equal(t, "terms of service new_2", termsOfService.Text)
|
|
assert.Equal(t, th.SystemAdminUser.Id, termsOfService.UserId)
|
|
}
|