mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
c1900f6ecd
In fact nobody reads it, but on some IDEs it is shown when tests are executed.
40 lines
1.0 KiB
Groovy
40 lines
1.0 KiB
Groovy
#!groovy
|
|
|
|
package util
|
|
|
|
import com.sap.piper.GitUtils
|
|
import com.sap.piper.Utils
|
|
import org.codehaus.groovy.runtime.InvokerHelper
|
|
import org.springframework.context.annotation.Bean
|
|
import org.springframework.context.annotation.Configuration
|
|
|
|
@Configuration
|
|
class BasePiperTestContext {
|
|
|
|
@Bean
|
|
Script nullScript() {
|
|
def nullScript = InvokerHelper.createScript(null, new Binding())
|
|
nullScript.currentBuild = [:]
|
|
LibraryLoadingTestExecutionListener.prepareObjectInterceptors(nullScript)
|
|
return nullScript
|
|
}
|
|
|
|
@Bean
|
|
GitUtils mockGitUtils() {
|
|
def mockGitUtils = new GitUtils()
|
|
LibraryLoadingTestExecutionListener.prepareObjectInterceptors(mockGitUtils)
|
|
return mockGitUtils
|
|
}
|
|
|
|
@Bean
|
|
Utils mockUtils() {
|
|
def mockUtils = new Utils()
|
|
mockUtils.steps = [
|
|
stash : { },
|
|
unstash: { }
|
|
]
|
|
LibraryLoadingTestExecutionListener.prepareObjectInterceptors(mockUtils)
|
|
return mockUtils
|
|
}
|
|
}
|