77 lines
2.4 KiB
Go
77 lines
2.4 KiB
Go
/*
|
|
* Copyright (C) 2026 Fluxer Contributors
|
|
*
|
|
* This file is part of Fluxer.
|
|
*
|
|
* Fluxer is free software: you can redistribute it and/or modify
|
|
* it under the terms of the GNU Affero General Public License as published by
|
|
* the Free Software Foundation, either version 3 of the License, or
|
|
* (at your option) any later version.
|
|
*
|
|
* Fluxer is distributed in the hope that it will be useful,
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
* GNU Affero General Public License for more details.
|
|
*
|
|
* You should have received a copy of the GNU Affero General Public License
|
|
* along with Fluxer. If not, see <https://www.gnu.org/licenses/>.
|
|
*/
|
|
|
|
package integration
|
|
|
|
import (
|
|
"fmt"
|
|
"net/http"
|
|
"testing"
|
|
"time"
|
|
)
|
|
|
|
func TestHarvestDownloadNotExpired(t *testing.T) {
|
|
client := newTestClient(t)
|
|
user := createTestAccount(t, client)
|
|
|
|
harvestResp, err := client.postJSONWithAuth("/users/@me/harvest", nil, user.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to request data harvest: %v", err)
|
|
}
|
|
assertStatus(t, harvestResp, http.StatusOK)
|
|
var harvestRequest struct {
|
|
HarvestID string `json:"harvestId"`
|
|
}
|
|
decodeJSONResponse(t, harvestResp, &harvestRequest)
|
|
|
|
waitForCondition(t, 90*time.Second, func() (bool, error) {
|
|
status := fetchHarvestStatus(t, client, user.Token, harvestRequest.HarvestID)
|
|
if status.CompletedAt != nil && status.DownloadURLExpiresAt != nil {
|
|
return true, nil
|
|
}
|
|
if status.FailedAt != nil {
|
|
return false, fmt.Errorf("harvest failed: %v", *status.ErrorMessage)
|
|
}
|
|
return false, nil
|
|
})
|
|
|
|
status := fetchHarvestStatus(t, client, user.Token, harvestRequest.HarvestID)
|
|
if status.CompletedAt == nil {
|
|
t.Fatalf("expected harvest to complete")
|
|
}
|
|
|
|
validTime := time.Now().Add(6 * 24 * time.Hour)
|
|
setHarvestExpiration(t, client, user.UserID, harvestRequest.HarvestID, validTime.Format(time.RFC3339))
|
|
|
|
resp, err := client.getWithAuth(fmt.Sprintf("/users/@me/harvest/%s/download", harvestRequest.HarvestID), user.Token)
|
|
if err != nil {
|
|
t.Fatalf("failed to fetch harvest download: %v", err)
|
|
}
|
|
assertStatus(t, resp, http.StatusOK)
|
|
|
|
var download harvestDownloadResponse
|
|
decodeJSONResponse(t, resp, &download)
|
|
if download.DownloadURL == "" {
|
|
t.Fatalf("expected download url in harvest response")
|
|
}
|
|
if download.ExpiresAt == "" {
|
|
t.Fatalf("expected expires_at in harvest response")
|
|
}
|
|
}
|