command_help_test, cors_test: use testify (#12941)

* command_help_test, cors_test: use testify

* cors_test: remove extraneous lines

* command_help_test: remove extraneous lines

* command_help_test: set checks to nonterminal
Этот коммит содержится в:
Luke Kingland
2019-10-29 00:52:51 +09:00
коммит произвёл Scott Bishel
родитель ef5a5d574f
Коммит aaf0bf1cdd
2 изменённых файлов: 6 добавлений и 13 удалений

Просмотреть файл

@@ -7,6 +7,7 @@ import (
"github.com/mattermost/mattermost-server/model"
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
)
const (
@@ -127,16 +128,12 @@ func TestCORSRequestHandling(t *testing.T) {
url := fmt.Sprintf("%v/api/v4/system/ping", host)
req, err := http.NewRequest("GET", url, nil)
if err != nil {
t.Fatal(err)
}
require.NoError(t, err)
testcase.ModifyRequest(req)
client := &http.Client{}
resp, err := client.Do(req)
if err != nil {
t.Fatal(err)
}
require.NoError(t, err)
assert.Equal(t, http.StatusOK, resp.StatusCode)
assert.Equal(t, testcase.ExpectedAllowOrigin, resp.Header.Get(acAllowOrigin))
assert.Equal(t, testcase.ExpectedExposeHeaders, resp.Header.Get(acExposeHeaders))
@@ -146,5 +143,4 @@ func TestCORSRequestHandling(t *testing.T) {
assert.Equal(t, "", resp.Header.Get(acAllowHeaders))
})
}
}