mirror of
https://github.com/crowdsecurity/crowdsec.git
synced 2025-05-17 06:52:26 +02:00
* Extract methods createInstallLink(), removeInstallLink(), simplify - the result of filepath.Join is already Cleaned - no need to log the creation of parentDir - filepath.Abs() only returns error if the current working directory has been removed * Extract method Item.fetch() * Replace Create() + Write() -> WriteFile()
73 lines
1.5 KiB
Go
73 lines
1.5 KiB
Go
package cwhub
|
|
|
|
import (
|
|
"fmt"
|
|
"os"
|
|
"testing"
|
|
|
|
"github.com/stretchr/testify/require"
|
|
|
|
"github.com/crowdsecurity/go-cs-lib/cstest"
|
|
)
|
|
|
|
func TestInitHubUpdate(t *testing.T) {
|
|
hub := envSetup(t)
|
|
|
|
remote := &RemoteHubCfg{
|
|
URLTemplate: mockURLTemplate,
|
|
Branch: "master",
|
|
IndexPath: ".index.json",
|
|
}
|
|
|
|
_, err := NewHub(hub.local, remote, true)
|
|
require.NoError(t, err)
|
|
}
|
|
|
|
func TestDownloadIndex(t *testing.T) {
|
|
// bad url template
|
|
fmt.Println("Test 'bad URL'")
|
|
|
|
tmpIndex, err := os.CreateTemp("", "index.json")
|
|
require.NoError(t, err)
|
|
|
|
t.Cleanup(func() {
|
|
os.Remove(tmpIndex.Name())
|
|
})
|
|
|
|
hub := envSetup(t)
|
|
|
|
hub.remote = &RemoteHubCfg{
|
|
URLTemplate: "x",
|
|
Branch: "",
|
|
IndexPath: "",
|
|
}
|
|
|
|
err = hub.remote.downloadIndex(tmpIndex.Name())
|
|
cstest.RequireErrorContains(t, err, "failed to build hub index request: invalid URL template 'x'")
|
|
|
|
// bad domain
|
|
fmt.Println("Test 'bad domain'")
|
|
|
|
hub.remote = &RemoteHubCfg{
|
|
URLTemplate: "https://baddomain/%s/%s",
|
|
Branch: "master",
|
|
IndexPath: ".index.json",
|
|
}
|
|
|
|
err = hub.remote.downloadIndex(tmpIndex.Name())
|
|
require.NoError(t, err)
|
|
// XXX: this is not failing
|
|
// cstest.RequireErrorContains(t, err, "failed http request for hub index: Get")
|
|
|
|
// bad target path
|
|
fmt.Println("Test 'bad target path'")
|
|
|
|
hub.remote = &RemoteHubCfg{
|
|
URLTemplate: mockURLTemplate,
|
|
Branch: "master",
|
|
IndexPath: ".index.json",
|
|
}
|
|
|
|
err = hub.remote.downloadIndex("/does/not/exist/index.json")
|
|
cstest.RequireErrorContains(t, err, "failed to write hub index: open /does/not/exist/index.json:")
|
|
}
|