forked from TrueCloudLab/frostfs-api-go
added test case for exists object in put request
This commit is contained in:
parent
d499971218
commit
acfb16d363
2 changed files with 10 additions and 7 deletions
|
@ -17,6 +17,7 @@ func TestRequest(t *testing.T) {
|
|||
&GetRangeRequest{},
|
||||
&GetRangeHashRequest{},
|
||||
MakePutRequestHeader(nil, nil),
|
||||
MakePutRequestHeader(&Object{}, nil),
|
||||
}
|
||||
|
||||
types := []RequestType{
|
||||
|
@ -28,12 +29,13 @@ func TestRequest(t *testing.T) {
|
|||
RequestRange,
|
||||
RequestRangeHash,
|
||||
RequestPut,
|
||||
RequestPut,
|
||||
}
|
||||
|
||||
for i := range cases {
|
||||
v := cases[i]
|
||||
|
||||
t.Run(fmt.Sprintf("%T", v), func(t *testing.T) {
|
||||
t.Run(fmt.Sprintf("%T_%d", v, i), func(t *testing.T) {
|
||||
require.NotPanics(t, func() { v.CID() })
|
||||
require.Equal(t, types[i], v.Type())
|
||||
})
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue