Add implementation for POST /email/test apiV4 - Send Test Email (#5716)

Этот коммит содержится в:
Carlos Tadeu Panato Junior
2017-03-13 16:09:00 +01:00
коммит произвёл George Goldberg
родитель 19c67d7fe3
Коммит 38958d9ac4
4 изменённых файлов: 75 добавлений и 0 удалений

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

@@ -495,6 +495,21 @@ func CheckErrorMessage(t *testing.T, resp *model.Response, errorId string) {
}
}
func CheckInternalErrorStatus(t *testing.T, resp *model.Response) {
if resp.Error == nil {
debug.PrintStack()
t.Fatal("should have errored with status:" + strconv.Itoa(http.StatusNotImplemented))
return
}
if resp.StatusCode != http.StatusInternalServerError {
debug.PrintStack()
t.Log("actual: " + strconv.Itoa(resp.StatusCode))
t.Log("expected: " + strconv.Itoa(http.StatusNotImplemented))
t.Fatal("wrong status code")
}
}
func readTestFile(name string) ([]byte, error) {
path := utils.FindDir("tests")
file, err := os.Open(path + "/" + name)