Merge pull request #61 from nspcc-dev/fix-putrequest-cid-npe

Fix NPE in PutRequest.CID()
remotes/KirillovDenis/feature/refactor-sig-rpc
Evgeniy Kulikov 2020-04-03 18:30:56 +03:00 committed by GitHub
commit 4f6121986e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 5 additions and 1 deletions

View File

@ -127,7 +127,9 @@ func (m *PutRequest) NotFull() bool { return checkIsNotFull(m) }
// CID returns container id value from object put request.
func (m *PutRequest) CID() CID {
if header := m.GetHeader(); header != nil {
return header.Object.SystemHeader.CID
if obj := header.GetObject(); obj != nil {
return obj.SystemHeader.CID
}
}
return refs.CID{}
}

View File

@ -16,6 +16,7 @@ func TestRequest(t *testing.T) {
&DeleteRequest{},
&GetRangeRequest{},
&GetRangeHashRequest{},
MakePutRequestHeader(nil, nil),
}
types := []RequestType{
@ -26,6 +27,7 @@ func TestRequest(t *testing.T) {
RequestDelete,
RequestRange,
RequestRangeHash,
RequestPut,
}
for i := range cases {