You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
22 lines
383 B
22 lines
383 B
package serializer
|
|
|
|
import (
|
|
"testing"
|
|
|
|
model "github.com/cloudreve/Cloudreve/v3/models"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestSlaveTransferReq_Hash(t *testing.T) {
|
|
a := assert.New(t)
|
|
s1 := &SlaveTransferReq{
|
|
Src: "1",
|
|
Policy: &model.Policy{},
|
|
}
|
|
s2 := &SlaveTransferReq{
|
|
Src: "2",
|
|
Policy: &model.Policy{},
|
|
}
|
|
a.NotEqual(s1.Hash("1"), s2.Hash("1"))
|
|
}
|