mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
92441577d8
* change NodeJS image to current LTS * Update default_pipeline_environment.yml * Update SonarExecuteScanTest.groovy * use node:lts-stretch image
83 lines
2.9 KiB
Groovy
83 lines
2.9 KiB
Groovy
import static org.junit.Assert.assertEquals
|
|
import hudson.AbortException
|
|
import org.junit.Before
|
|
import org.junit.Rule
|
|
import org.junit.Test
|
|
import org.junit.rules.ExpectedException
|
|
import org.junit.rules.RuleChain
|
|
import util.BasePiperTest
|
|
import util.JenkinsDockerExecuteRule
|
|
import util.JenkinsReadYamlRule
|
|
import util.JenkinsShellCallRule
|
|
import util.JenkinsStepRule
|
|
import util.Rules
|
|
|
|
class NpmExecuteTest extends BasePiperTest {
|
|
|
|
private ExpectedException thrown = new ExpectedException().none()
|
|
private JenkinsShellCallRule shellRule = new JenkinsShellCallRule(this)
|
|
private JenkinsDockerExecuteRule dockerExecuteRule = new JenkinsDockerExecuteRule(this)
|
|
private JenkinsStepRule stepRule = new JenkinsStepRule(this)
|
|
private JenkinsReadYamlRule yamlRule = new JenkinsReadYamlRule(this)
|
|
|
|
@Rule
|
|
public RuleChain ruleChain = Rules
|
|
.getCommonRules(this)
|
|
.around(thrown)
|
|
.around(yamlRule)
|
|
.around(dockerExecuteRule)
|
|
.around(shellRule)
|
|
.around(stepRule)
|
|
|
|
@Before
|
|
void init() {
|
|
helper.registerAllowedMethod 'fileExists', [String], { s -> s == 'package.json' }
|
|
}
|
|
|
|
@Test
|
|
void testNpmExecute() {
|
|
stepRule.step.npmExecute(script: nullScript, dockerImage: 'node:lts-stretch')
|
|
assertEquals 'node:lts-stretch', dockerExecuteRule.dockerParams.dockerImage
|
|
}
|
|
|
|
@Test
|
|
void testDockerFromCustomStepConfiguration() {
|
|
|
|
def expectedImage = 'image:test'
|
|
def expectedEnvVars = ['env1': 'value1', 'env2': 'value2']
|
|
def expectedOptions = '--opt1=val1 --opt2=val2 --opt3'
|
|
def expectedWorkspace = '/path/to/workspace'
|
|
|
|
nullScript.commonPipelineEnvironment.configuration = [steps:[npmExecute:[
|
|
dockerImage: expectedImage,
|
|
dockerOptions: expectedOptions,
|
|
dockerEnvVars: expectedEnvVars,
|
|
dockerWorkspace: expectedWorkspace
|
|
]]]
|
|
|
|
stepRule.step.npmExecute(
|
|
script: nullScript,
|
|
juStabUtils: utils
|
|
)
|
|
|
|
assert expectedImage == dockerExecuteRule.dockerParams.dockerImage
|
|
assert expectedOptions == dockerExecuteRule.dockerParams.dockerOptions
|
|
assert expectedEnvVars.equals(dockerExecuteRule.dockerParams.dockerEnvVars)
|
|
assert expectedWorkspace == dockerExecuteRule.dockerParams.dockerWorkspace
|
|
}
|
|
|
|
@Test
|
|
void testNpmExecuteWithClosure() {
|
|
stepRule.step.npmExecute(script: nullScript, dockerImage: 'node:lts-stretch', npmCommand: 'run build') { }
|
|
assert shellRule.shell.find { c -> c.contains('npm run build') }
|
|
}
|
|
|
|
@Test
|
|
void testNoPackageJson() {
|
|
helper.registerAllowedMethod 'fileExists', [String], { false }
|
|
thrown.expect AbortException
|
|
thrown.expectMessage '[npmExecute] package.json is not found.'
|
|
stepRule.step.npmExecute(script: nullScript, dockerImage: 'node:lts-stretch', npmCommand: 'run build')
|
|
}
|
|
}
|