a7122ff4e1
Signed-off-by: Michael Mayer <michael@liquidbytes.net>
20 lines
468 B
Go
20 lines
468 B
Go
package api
|
|
|
|
import (
|
|
"net/http"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/assert"
|
|
"github.com/tidwall/gjson"
|
|
)
|
|
|
|
func TestCancelImport(t *testing.T) {
|
|
t.Run("successful request", func(t *testing.T) {
|
|
app, router, conf := NewApiTest()
|
|
CancelImport(router, conf)
|
|
r := PerformRequest(app, "DELETE", "/api/v1/import")
|
|
val := gjson.Get(r.Body.String(), "message")
|
|
assert.Equal(t, "import canceled", val.String())
|
|
assert.Equal(t, http.StatusOK, r.Code)
|
|
})
|
|
}
|