forked from go-gitea/gitea
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge remote-tracking branch 'giteaofficial/main'
* giteaofficial/main: [skip ci] Updated translations via Crowdin Use `strings.Cut` for GIT_PROTOCOL value (go-gitea#20638) Fix the admin mailer config display (go-gitea#20633) Use correct page size for link header pagination (go-gitea#20546) Fix package upload for files >32mb (go-gitea#20622) Add info about Wire 2 when Git over SSH (go-gitea#20619) Enable Wire 2 for Internal SSH Server (go-gitea#20616)
- Loading branch information
Showing
11 changed files
with
296 additions
and
17 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,47 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package packages | ||
|
||
import ( | ||
"fmt" | ||
"io" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestHashedBuffer(t *testing.T) { | ||
cases := []struct { | ||
MaxMemorySize int | ||
Data string | ||
HashMD5 string | ||
HashSHA1 string | ||
HashSHA256 string | ||
HashSHA512 string | ||
}{ | ||
{5, "test", "098f6bcd4621d373cade4e832627b4f6", "a94a8fe5ccb19ba61c4c0873d391e987982fbbd3", "9f86d081884c7d659a2feaa0c55ad015a3bf4f1b2b0b822cd15d6c15b0f00a08", "ee26b0dd4af7e749aa1a8ee3c10ae9923f618980772e473f8819a5d4940e0db27ac185f8a0e1d5f84f88bc887fd67b143732c304cc5fa9ad8e6f57f50028a8ff"}, | ||
{5, "testtest", "05a671c66aefea124cc08b76ea6d30bb", "51abb9636078defbf888d8457a7c76f85c8f114c", "37268335dd6931045bdcdf92623ff819a64244b53d0e746d438797349d4da578", "125d6d03b32c84d492747f79cf0bf6e179d287f341384eb5d6d3197525ad6be8e6df0116032935698f99a09e265073d1d6c32c274591bf1d0a20ad67cba921bc"}, | ||
} | ||
|
||
for _, c := range cases { | ||
buf, err := CreateHashedBufferFromReader(strings.NewReader(c.Data), c.MaxMemorySize) | ||
assert.NoError(t, err) | ||
|
||
assert.EqualValues(t, len(c.Data), buf.Size()) | ||
|
||
data, err := io.ReadAll(buf) | ||
assert.NoError(t, err) | ||
assert.Equal(t, c.Data, string(data)) | ||
|
||
hashMD5, hashSHA1, hashSHA256, hashSHA512 := buf.Sums() | ||
assert.Equal(t, c.HashMD5, fmt.Sprintf("%x", hashMD5)) | ||
assert.Equal(t, c.HashSHA1, fmt.Sprintf("%x", hashSHA1)) | ||
assert.Equal(t, c.HashSHA256, fmt.Sprintf("%x", hashSHA256)) | ||
assert.Equal(t, c.HashSHA512, fmt.Sprintf("%x", hashSHA512)) | ||
|
||
assert.NoError(t, buf.Close()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,36 @@ | ||
// Copyright 2022 The Gitea Authors. All rights reserved. | ||
// Use of this source code is governed by a MIT-style | ||
// license that can be found in the LICENSE file. | ||
|
||
package filebuffer | ||
|
||
import ( | ||
"io" | ||
"strings" | ||
"testing" | ||
|
||
"github.com/stretchr/testify/assert" | ||
) | ||
|
||
func TestFileBackedBuffer(t *testing.T) { | ||
cases := []struct { | ||
MaxMemorySize int | ||
Data string | ||
}{ | ||
{5, "test"}, | ||
{5, "testtest"}, | ||
} | ||
|
||
for _, c := range cases { | ||
buf, err := CreateFromReader(strings.NewReader(c.Data), c.MaxMemorySize) | ||
assert.NoError(t, err) | ||
|
||
assert.EqualValues(t, len(c.Data), buf.Size()) | ||
|
||
data, err := io.ReadAll(buf) | ||
assert.NoError(t, err) | ||
assert.Equal(t, c.Data, string(data)) | ||
|
||
assert.NoError(t, buf.Close()) | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.