mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
d04edd5e8d
* same behaviour for shellRunner and execRunner wrt errors and stdout * replace shouldFail with shouldFailOnCommand * [formatting only] format struct * Move to regex for execptions and stdout * shrink code
48 lines
1.7 KiB
Go
48 lines
1.7 KiB
Go
package cmd
|
|
|
|
import (
|
|
"errors"
|
|
"testing"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/log"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestRunKarma(t *testing.T) {
|
|
t.Run("success case", func(t *testing.T) {
|
|
opts := karmaExecuteTestsOptions{ModulePath: "./test", InstallCommand: "npm install test", RunCommand: "npm run test"}
|
|
|
|
e := execMockRunner{}
|
|
runKarma(opts, &e)
|
|
|
|
assert.Equal(t, e.dir[0], "./test", "install command dir incorrect")
|
|
assert.Equal(t, e.calls[0], execCall{exec: "npm", params: []string{"install", "test"}}, "install command/params incorrect")
|
|
|
|
assert.Equal(t, e.dir[1], "./test", "run command dir incorrect")
|
|
assert.Equal(t, e.calls[1], execCall{exec: "npm", params: []string{"run", "test"}}, "run command/params incorrect")
|
|
|
|
})
|
|
|
|
t.Run("error case install command", func(t *testing.T) {
|
|
var hasFailed bool
|
|
log.Entry().Logger.ExitFunc = func(int) { hasFailed = true }
|
|
|
|
opts := karmaExecuteTestsOptions{ModulePath: "./test", InstallCommand: "fail install test", RunCommand: "npm run test"}
|
|
|
|
e := execMockRunner{shouldFailOnCommand: map[string]error{"fail install test": errors.New("error case")}}
|
|
runKarma(opts, &e)
|
|
assert.True(t, hasFailed, "expected command to exit with fatal")
|
|
})
|
|
|
|
t.Run("error case run command", func(t *testing.T) {
|
|
var hasFailed bool
|
|
log.Entry().Logger.ExitFunc = func(int) { hasFailed = true }
|
|
|
|
opts := karmaExecuteTestsOptions{ModulePath: "./test", InstallCommand: "npm install test", RunCommand: "npm run test"}
|
|
|
|
e := execMockRunner{shouldFailOnCommand: map[string]error{"npm install test": errors.New("error case")}}
|
|
runKarma(opts, &e)
|
|
assert.True(t, hasFailed, "expected command to exit with fatal")
|
|
})
|
|
}
|