mirror of
https://github.com/drakkan/sftpgo.git
synced 2024-11-22 07:30:25 +00:00
fix test case failure on macOS with bolt provider
Signed-off-by: Nicola Murino <nicola.murino@gmail.com>
This commit is contained in:
parent
c8e8fd5b25
commit
71b974d4f8
1 changed files with 2 additions and 3 deletions
|
@ -642,9 +642,6 @@ func TestBasicHandling(t *testing.T) {
|
|||
}
|
||||
|
||||
func TestBasicHandlingCryptFs(t *testing.T) {
|
||||
if runtime.GOOS == "darwin" && dataprovider.GetProviderStatus().Driver == "bolt" {
|
||||
t.Skip("this test must be fixed on macOS when using the bolt provider")
|
||||
}
|
||||
u := getTestUserWithCryptFs()
|
||||
u.QuotaSize = 6553600
|
||||
user, _, err := httpdtest.AddUser(u, http.StatusCreated)
|
||||
|
@ -670,6 +667,8 @@ func TestBasicHandlingCryptFs(t *testing.T) {
|
|||
localDownloadPath := filepath.Join(homeBasePath, testDLFileName)
|
||||
err = downloadFile(testFileName, localDownloadPath, testFileSize, client)
|
||||
assert.NoError(t, err)
|
||||
assert.Eventually(t, func() bool { return len(common.Connections.GetStats("")) == 0 },
|
||||
1*time.Second, 100*time.Millisecond)
|
||||
user, _, err = httpdtest.GetUserByUsername(user.Username, http.StatusOK)
|
||||
assert.NoError(t, err)
|
||||
assert.Equal(t, expectedQuotaFiles, user.UsedQuotaFiles)
|
||||
|
|
Loading…
Reference in a new issue