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.
21 lines
382 B
21 lines
382 B
3 years ago
|
package serializer
|
||
|
|
||
|
import (
|
||
|
model "github.com/cloudreve/Cloudreve/v3/models"
|
||
|
"github.com/stretchr/testify/assert"
|
||
|
"testing"
|
||
|
)
|
||
|
|
||
|
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"))
|
||
|
}
|