forked from TrueCloudLab/frostfs-s3-gw
[#145] Fix util tests
Fixed contentType attribute difference in expected and actual results Signed-off-by: Angira Kekteeva <kira@nspcc.ru>
This commit is contained in:
parent
e7bebcc1aa
commit
d09a4e4e6c
2 changed files with 6 additions and 1 deletions
|
@ -28,12 +28,16 @@ func newTestObject(oid *object.ID, bkt *BucketInfo, name string) *object.Object
|
|||
created.SetKey(object.AttributeTimestamp)
|
||||
created.SetValue(strconv.FormatInt(defaultTestCreated.Unix(), 10))
|
||||
|
||||
contentType := object.NewAttribute()
|
||||
contentType.SetKey(object.AttributeContentType)
|
||||
contentType.SetValue(defaultTestContentType)
|
||||
|
||||
raw := object.NewRaw()
|
||||
raw.SetID(oid)
|
||||
raw.SetOwnerID(bkt.Owner)
|
||||
raw.SetContainerID(bkt.CID)
|
||||
raw.SetPayload(defaultTestPayload)
|
||||
raw.SetAttributes(filename, created)
|
||||
raw.SetAttributes(filename, created, contentType)
|
||||
raw.SetPayloadSize(uint64(defaultTestPayloadLength))
|
||||
|
||||
return raw.Object()
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue