1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/http/downloader_test.go
Christopher Fenner ea45136c3d
feat(go): add download file function (#1200)
* add download file function

* add test case

* Update pkg/piperutils/FileUtils.go

* correct test case

* remove FileUtils.Download

* add Downloader

* add Downloader

* fix error

* respect header and cookies

* add test case

* rename files

* correct test case

* remove SendRequest

* correct test case
2020-02-19 19:26:47 +01:00

44 lines
1.2 KiB
Go

package http
import (
"io/ioutil"
"net/http"
"net/http/httptest"
"os"
"path/filepath"
"testing"
"github.com/SAP/jenkins-library/pkg/log"
"github.com/stretchr/testify/assert"
)
func TestDownloadRequest(t *testing.T) {
// Start a local HTTP server
server := httptest.NewServer(
http.HandlerFunc(
func(rw http.ResponseWriter, req *http.Request) { rw.Write([]byte("my fancy file content")) }))
// Close the server when test finishes
defer server.Close()
client := Client{
logger: log.Entry().WithField("package", "SAP/jenkins-library/pkg/http"),
}
workingDir, err := ioutil.TempDir("", "test detailed results")
if err != nil {
t.Fatal("Failed to create temporary directory")
}
// clean up tmp dir
defer os.RemoveAll(workingDir)
targetFile := filepath.Join(workingDir, "abc.xml")
// function under test
err = client.DownloadFile(server.URL, targetFile, nil, nil)
// asserts
assert.NoError(t, err, "Error occured but none expected")
assert.FileExists(t, targetFile, "File not found")
bytes, err := ioutil.ReadFile(targetFile)
assert.NoError(t, err, "Error occured but none expected")
assert.Equal(t, "my fancy file content", string(bytes))
}