|
|
@ -135,7 +135,7 @@ func TestAPILFSBatch(t *testing.T) { |
|
|
|
assert.Equal(t, "Oid or size are invalid", br.Objects[1].Error.Message) |
|
|
|
assert.Equal(t, "Oid or size are invalid", br.Objects[1].Error.Message) |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
t.Run("PointerSizeMissmatch", func(t *testing.T) { |
|
|
|
t.Run("PointerSizeMismatch", func(t *testing.T) { |
|
|
|
defer PrintCurrentTest(t)() |
|
|
|
defer PrintCurrentTest(t)() |
|
|
|
|
|
|
|
|
|
|
|
req := newRequest(t, &lfs.BatchRequest{ |
|
|
|
req := newRequest(t, &lfs.BatchRequest{ |
|
|
@ -376,7 +376,7 @@ func TestAPILFSUpload(t *testing.T) { |
|
|
|
session.MakeRequest(t, req, http.StatusOK) |
|
|
|
session.MakeRequest(t, req, http.StatusOK) |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
t.Run("HashMissmatch", func(t *testing.T) { |
|
|
|
t.Run("HashMismatch", func(t *testing.T) { |
|
|
|
defer PrintCurrentTest(t)() |
|
|
|
defer PrintCurrentTest(t)() |
|
|
|
|
|
|
|
|
|
|
|
req := newRequest(t, lfs.Pointer{Oid: "2581dd7bbc1fe44726de4b7dd806a087a978b9c5aec0a60481259e34be09b06a", Size: 1}, "a") |
|
|
|
req := newRequest(t, lfs.Pointer{Oid: "2581dd7bbc1fe44726de4b7dd806a087a978b9c5aec0a60481259e34be09b06a", Size: 1}, "a") |
|
|
@ -384,7 +384,7 @@ func TestAPILFSUpload(t *testing.T) { |
|
|
|
session.MakeRequest(t, req, http.StatusUnprocessableEntity) |
|
|
|
session.MakeRequest(t, req, http.StatusUnprocessableEntity) |
|
|
|
}) |
|
|
|
}) |
|
|
|
|
|
|
|
|
|
|
|
t.Run("SizeMissmatch", func(t *testing.T) { |
|
|
|
t.Run("SizeMismatch", func(t *testing.T) { |
|
|
|
defer PrintCurrentTest(t)() |
|
|
|
defer PrintCurrentTest(t)() |
|
|
|
|
|
|
|
|
|
|
|
req := newRequest(t, lfs.Pointer{Oid: "ca978112ca1bbdcafac231b39a23dc4da786eff8147c4e72b9807785afee48bb", Size: 2}, "a") |
|
|
|
req := newRequest(t, lfs.Pointer{Oid: "ca978112ca1bbdcafac231b39a23dc4da786eff8147c4e72b9807785afee48bb", Size: 2}, "a") |
|
|
|