51 lines
1.1 KiB
Go
51 lines
1.1 KiB
Go
|
package middleware
|
|||
|
|
|||
|
import (
|
|||
|
"github.com/HFO4/cloudreve/pkg/hashid"
|
|||
|
"github.com/gin-gonic/gin"
|
|||
|
"github.com/stretchr/testify/assert"
|
|||
|
"net/http"
|
|||
|
"net/http/httptest"
|
|||
|
"testing"
|
|||
|
)
|
|||
|
|
|||
|
func TestHashID(t *testing.T) {
|
|||
|
asserts := assert.New(t)
|
|||
|
rec := httptest.NewRecorder()
|
|||
|
TestFunc := HashID(hashid.FolderID)
|
|||
|
|
|||
|
// 未给定ID对象,跳过
|
|||
|
{
|
|||
|
c, _ := gin.CreateTestContext(rec)
|
|||
|
c.Params = []gin.Param{}
|
|||
|
c.Request, _ = http.NewRequest("POST", "/api/v3/file/dellete/1", nil)
|
|||
|
TestFunc(c)
|
|||
|
asserts.NoError(mock.ExpectationsWereMet())
|
|||
|
asserts.False(c.IsAborted())
|
|||
|
}
|
|||
|
|
|||
|
// 给定ID,解析失败
|
|||
|
{
|
|||
|
c, _ := gin.CreateTestContext(rec)
|
|||
|
c.Params = []gin.Param{
|
|||
|
{"id", "2333"},
|
|||
|
}
|
|||
|
c.Request, _ = http.NewRequest("POST", "/api/v3/file/dellete/1", nil)
|
|||
|
TestFunc(c)
|
|||
|
asserts.NoError(mock.ExpectationsWereMet())
|
|||
|
asserts.True(c.IsAborted())
|
|||
|
}
|
|||
|
|
|||
|
// 给定ID,解析成功
|
|||
|
{
|
|||
|
c, _ := gin.CreateTestContext(rec)
|
|||
|
c.Params = []gin.Param{
|
|||
|
{"id", hashid.HashID(1, hashid.FolderID)},
|
|||
|
}
|
|||
|
c.Request, _ = http.NewRequest("POST", "/api/v3/file/dellete/1", nil)
|
|||
|
TestFunc(c)
|
|||
|
asserts.NoError(mock.ExpectationsWereMet())
|
|||
|
asserts.False(c.IsAborted())
|
|||
|
}
|
|||
|
}
|