mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
ffc931aad1
* Added unit tag as argument. Added description to runTests command. Changed code generator to have unit build tag in generated unit test files. * Added unit build tag to all unit test files. * added to new unit test unit build tag * Update verify-go.yml * small fix --------- Co-authored-by: Muhammadali Nazarov <Muhammadali.Nazarov@acronis.com> Co-authored-by: Christopher Fenner <26137398+CCFenner@users.noreply.github.com>
35 lines
684 B
Go
35 lines
684 B
Go
//go:build unit
|
|
// +build unit
|
|
|
|
package docker
|
|
|
|
import (
|
|
"testing"
|
|
|
|
"github.com/SAP/jenkins-library/pkg/mock"
|
|
"github.com/stretchr/testify/assert"
|
|
)
|
|
|
|
func TestIsBinfmtMiscSupportedByHost(t *testing.T) {
|
|
t.Run("returns true - binfmt_misc supported by host", func(t *testing.T) {
|
|
utils := mock.FilesMock{}
|
|
utils.AddDir("/proc/sys/fs/binfmt_misc")
|
|
|
|
b, err := IsBinfmtMiscSupportedByHost(&utils)
|
|
|
|
if assert.NoError(t, err) {
|
|
assert.True(t, b)
|
|
}
|
|
})
|
|
|
|
t.Run("returns false - binfmt_misc not supported by host", func(t *testing.T) {
|
|
utils := mock.FilesMock{}
|
|
|
|
b, err := IsBinfmtMiscSupportedByHost(&utils)
|
|
|
|
if assert.NoError(t, err) {
|
|
assert.False(t, b)
|
|
}
|
|
})
|
|
}
|