refactor: project structure

This commit is contained in:
2024-04-29 21:29:05 +02:00
parent 2abed91918
commit 727b083e52
7 changed files with 45 additions and 15 deletions

33
pkg/watcher_test.go Normal file
View File

@@ -0,0 +1,33 @@
package pkg
import (
"testing"
"gitea.urkob.com/urko/git-webhook-ci/kit/cfg"
"github.com/stretchr/testify/require"
)
var (
binaryPath = "/bin/bash"
scriptPath = cfg.RootDir() + "/test-script.sh"
)
func TestDeploy(t *testing.T) {
err := Deploy(binaryPath, scriptPath)
require.NoError(t, err)
}
func TestDeployError(t *testing.T) {
err := Deploy("", "")
require.Error(t, err)
}
func TestExecute(t *testing.T) {
err := execute(binaryPath, scriptPath)
require.NoError(t, err)
}
func TestExecuteError(t *testing.T) {
err := execute("", "")
require.Error(t, err)
}