From 58de4108508bdb2a56499c5367f83be815128a70 Mon Sep 17 00:00:00 2001 From: Nicola Murino Date: Wed, 3 Jul 2024 20:42:51 +0200 Subject: [PATCH] nt: fix unused write warnings Signed-off-by: Nicola Murino --- internal/common/defender_test.go | 2 -- internal/ftpd/internal_test.go | 1 - internal/httpd/httpd_test.go | 7 +++---- internal/httpd/internal_test.go | 1 - 4 files changed, 3 insertions(+), 8 deletions(-) diff --git a/internal/common/defender_test.go b/internal/common/defender_test.go index 1a1bb7c5d..f7cb9ad48 100644 --- a/internal/common/defender_test.go +++ b/internal/common/defender_test.go @@ -448,8 +448,6 @@ func TestDefenderDelay(t *testing.T) { }, }, }, - banned: make(map[string]time.Time), - hosts: make(map[string]hostScore), } startTime := time.Now() d.DelayLogin(nil) diff --git a/internal/ftpd/internal_test.go b/internal/ftpd/internal_test.go index 646968cc3..6d9dd8f0f 100644 --- a/internal/ftpd/internal_test.go +++ b/internal/ftpd/internal_test.go @@ -885,7 +885,6 @@ func TestTransferErrors(t *testing.T) { fs := newMockOsFs(nil, nil, false, connID, user.GetHomeDir()) connection := &Connection{ BaseConnection: common.NewBaseConnection(connID, common.ProtocolFTP, "", "", user), - clientContext: mockCC, } baseTransfer := common.NewBaseTransfer(file, connection.BaseConnection, nil, file.Name(), file.Name(), testfile, common.TransferDownload, 0, 0, 0, 0, false, fs, dataprovider.TransferQuota{}) diff --git a/internal/httpd/httpd_test.go b/internal/httpd/httpd_test.go index 6b377c01c..3b4bb249d 100644 --- a/internal/httpd/httpd_test.go +++ b/internal/httpd/httpd_test.go @@ -12536,8 +12536,7 @@ func TestStartQuotaScanNonExistentFolderMock(t *testing.T) { token, err := getJWTAPITokenFromTestServer(defaultTokenAuthUser, defaultTokenAuthPass) assert.NoError(t, err) folder := vfs.BaseVirtualFolder{ - MappedPath: os.TempDir(), - Name: "afolder", + Name: "afolder", } req, _ := http.NewRequest(http.MethodPost, path.Join(quotasBasePath, "folders", folder.Name, "scan"), nil) setBearerForReq(req, token) @@ -23356,7 +23355,6 @@ func TestWebEventAction(t *testing.T) { csrfToken, err := getCSRFTokenFromInternalPageMock(webAdminEventActionPath, webToken) assert.NoError(t, err) action := dataprovider.BaseEventAction{ - ID: 81, Name: "web_action_http", Description: "http web action", Type: dataprovider.ActionTypeHTTP, @@ -24289,7 +24287,8 @@ func TestWebIPListEntries(t *testing.T) { form.Set("protocols", "a") form.Add("protocols", "1") form.Add("protocols", "4") - req, err = http.NewRequest(http.MethodPost, webIPListPath+"/2", bytes.NewBuffer([]byte(form.Encode()))) + req, err = http.NewRequest(http.MethodPost, webIPListPath+"/"+strconv.Itoa(int(entry.Type)), + bytes.NewBuffer([]byte(form.Encode()))) assert.NoError(t, err) req.Header.Set("Content-Type", "application/x-www-form-urlencoded") setJWTCookieForReq(req, webToken) diff --git a/internal/httpd/internal_test.go b/internal/httpd/internal_test.go index a9510b8ce..c0cfa7ccf 100644 --- a/internal/httpd/internal_test.go +++ b/internal/httpd/internal_test.go @@ -2769,7 +2769,6 @@ func TestHTTPDFile(t *testing.T) { user.Permissions["/"] = []string{dataprovider.PermAny} connection := &Connection{ BaseConnection: common.NewBaseConnection(xid.New().String(), common.ProtocolHTTP, "", "", user), - request: nil, } fs, err := user.GetFilesystem("")