1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/pkg/whitesource/scanPolling_test.go
Stephan Aßmus eff38f6c9d
whitesourcExecuteScan-go: Additional fixes (#2315)
* Make sure the UA scan is known to the scan object. Fixes downloading reports later on.
* Move polling into pkg/whitesource, add test for e2e scan
* Remove conditions from stash config resource
* Don't use version stored in CPE. This will prevent the versioningModel from being applied.
2020-11-10 09:09:51 +01:00

54 lines
1.4 KiB
Go

package whitesource
import (
"github.com/stretchr/testify/assert"
"github.com/stretchr/testify/require"
"testing"
"time"
)
func TestBlockUntilProjectIsUpdated(t *testing.T) {
t.Parallel()
nowString := "2010-05-30 00:15:00 +0100"
now, err := time.Parse(DateTimeLayout, nowString)
require.NoError(t, err)
options := pollOptions{
scanTime: now,
maxAge: 2 * time.Second,
timeBetweenPolls: 1 * time.Second,
maxWaitTime: 1 * time.Second,
}
t.Run("already new enough", func(t *testing.T) {
// init
lastUpdatedDate := "2010-05-30 00:15:01 +0100"
systemMock := NewSystemMock(lastUpdatedDate)
// test
err = blockUntilProjectIsUpdated(systemMock.Projects[0].Token, systemMock, options)
// assert
assert.NoError(t, err)
})
t.Run("timeout while polling", func(t *testing.T) {
// init
lastUpdatedDate := "2010-05-30 00:07:00 +0100"
systemMock := NewSystemMock(lastUpdatedDate)
// test
err = blockUntilProjectIsUpdated(systemMock.Projects[0].Token, systemMock, options)
// assert
if assert.Error(t, err) {
assert.Contains(t, err.Error(), "timeout while waiting")
}
})
t.Run("timeout while polling, no update time", func(t *testing.T) {
// init
systemMock := NewSystemMock("")
// test
err = blockUntilProjectIsUpdated(systemMock.Projects[0].Token, systemMock, options)
// assert
if assert.Error(t, err) {
assert.Contains(t, err.Error(), "timeout while waiting")
}
})
}