1
0
mirror of https://github.com/SAP/jenkins-library.git synced 2024-12-14 11:03:09 +02:00
sap-jenkins-library/test/groovy/MTABuildTest.groovy

340 lines
9.6 KiB
Groovy
Raw Normal View History

import org.junit.Before
2018-02-13 11:11:08 +02:00
import org.junit.BeforeClass
import org.junit.ClassRule
import org.junit.Ignore
2017-07-11 15:12:03 +02:00
import org.junit.Rule
import org.junit.Test
import org.junit.rules.ExpectedException
import org.junit.rules.RuleChain
2017-07-11 15:12:03 +02:00
import org.junit.rules.TemporaryFolder
import org.yaml.snakeyaml.parser.ParserException
import com.lesfurets.jenkins.unit.BasePipelineTest
import hudson.AbortException
import util.JenkinsEnvironmentRule
import util.JenkinsLoggingRule
2018-01-16 16:03:00 +02:00
import util.JenkinsShellCallRule
2018-02-28 14:12:03 +02:00
import util.JenkinsStepRule
import util.Rules
2018-02-28 14:12:03 +02:00
public class MtaBuildTest extends BasePipelineTest {
2018-02-21 13:48:14 +02:00
def toolMtaValidateCalled = false
2018-02-20 14:09:16 +02:00
def toolJavaValidateCalled = false
2018-02-21 13:48:14 +02:00
2018-02-13 11:11:08 +02:00
@ClassRule
public static TemporaryFolder tmp = new TemporaryFolder()
private ExpectedException thrown = new ExpectedException()
private JenkinsLoggingRule jlr = new JenkinsLoggingRule(this)
2018-01-16 16:03:00 +02:00
private JenkinsShellCallRule jscr = new JenkinsShellCallRule(this)
2018-02-28 14:12:03 +02:00
private JenkinsStepRule jsr = new JenkinsStepRule(this)
private JenkinsEnvironmentRule jer = new JenkinsEnvironmentRule(this)
2017-07-11 15:12:03 +02:00
@Rule
2018-02-28 14:12:03 +02:00
public RuleChain ruleChain = Rules
.getCommonRules(this)
.around(thrown)
.around(jlr)
.around(jscr)
.around(jsr)
.around(jer)
2018-02-13 11:11:08 +02:00
private static currentDir
private static newDir
private static mtaYaml
2017-07-11 15:12:03 +02:00
2018-02-13 11:11:08 +02:00
@BeforeClass
static void createTestFiles() {
currentDir = "${tmp.getRoot()}"
mtaYaml = tmp.newFile('mta.yaml')
newDir = "$currentDir/newDir"
tmp.newFolder('newDir')
tmp.newFile('newDir/mta.yaml') << defaultMtaYaml()
}
2017-07-11 15:12:03 +02:00
@Before
void init() {
2018-02-13 11:11:08 +02:00
mtaYaml.text = defaultMtaYaml()
2017-07-11 15:12:03 +02:00
helper.registerAllowedMethod('pwd', [], { currentDir } )
helper.registerAllowedMethod('fileExists', [GString.class], { false })
helper.registerAllowedMethod('sh', [Map], { Map m -> getVersionWithoutEnvVars(m) })
2017-07-11 15:12:03 +02:00
binding.setVariable('PATH', '/usr/bin')
}
@Test
void environmentPathTest() {
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2018-02-21 13:46:55 +02:00
assert jscr.shell.find { c -> c.contains('PATH=./node_modules/.bin:/usr/bin')}
}
2017-07-11 15:12:03 +02:00
@Test
void sedTest() {
2017-07-11 15:12:03 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
2018-02-21 13:46:55 +02:00
assert jscr.shell.find { c -> c =~ /sed -ie "s\/\\\$\{timestamp\}\/`date \+%Y%m%d%H%M%S`\/g" ".*\/mta.yaml"$/}
2017-07-11 15:12:03 +02:00
}
@Test
void mtarFilePathFromCommonPipelineEnviromentTest() {
2017-07-11 15:12:03 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(script: [commonPipelineEnvironment: jer.env],
buildTarget: 'NEO')
2018-02-28 14:12:03 +02:00
def mtarFilePath = jer.env.getMtarFilePath()
2017-07-11 15:12:03 +02:00
assert mtarFilePath == "$currentDir/com.mycompany.northwind.mtar"
2017-07-11 15:12:03 +02:00
}
@Test
void mtaBuildWithSurroundingDirTest() {
2017-07-11 15:12:03 +02:00
2018-02-13 11:11:08 +02:00
helper.registerAllowedMethod('pwd', [], { newDir } )
2018-02-28 14:12:03 +02:00
def mtarFilePath = jsr.step.call(buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
2018-02-21 13:46:55 +02:00
assert jscr.shell.find { c -> c =~ /sed -ie "s\/\\\$\{timestamp\}\/`date \+%Y%m%d%H%M%S`\/g" ".*\/newDir\/mta.yaml"$/}
2017-07-11 15:12:03 +02:00
2018-02-13 11:11:08 +02:00
assert mtarFilePath == "$newDir/com.mycompany.northwind.mtar"
2017-07-11 15:12:03 +02:00
}
2018-02-05 18:15:46 +02:00
2017-07-11 15:12:03 +02:00
@Test
2018-02-05 16:30:21 +02:00
void mtaJarLocationNotSetTest() {
2017-07-11 15:12:03 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
2018-02-21 13:46:55 +02:00
assert jscr.shell.find { c -> c.contains(' -jar mta.jar --mtar ')}
2017-07-11 15:12:03 +02:00
2018-03-19 19:29:41 +02:00
assert jlr.log.contains("SAP Multitarget Application Archive Builder expected on current working directory.")
assert jlr.log.contains("Using SAP Multitarget Application Archive Builder executable 'java -jar mta.jar'.")
2017-07-11 15:12:03 +02:00
}
@Test
2018-02-05 16:30:21 +02:00
void mtaJarLocationAsParameterTest() {
2017-07-11 15:12:03 +02:00
jsr.step.call(mtaJarLocation: "/mylocation/mta", buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
assert jscr.shell.find { c -> c.contains("-jar /mylocation/mta/mta.jar --mtar")}
2017-07-11 15:12:03 +02:00
assert jlr.log.contains("SAP Multitarget Application Archive Builder home '/mylocation/mta' retrieved from configuration.")
2018-03-19 19:29:41 +02:00
assert jlr.log.contains("Using SAP Multitarget Application Archive Builder executable 'java -jar /mylocation/mta/mta.jar'.")
2017-07-11 15:12:03 +02:00
}
@Test
void noMtaPresentTest() {
mtaYaml.delete()
2017-07-11 15:12:03 +02:00
thrown.expect(FileNotFoundException)
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
}
@Test
void badMtaTest() {
2018-02-05 18:15:46 +02:00
2017-07-11 15:12:03 +02:00
thrown.expect(ParserException)
thrown.expectMessage('while parsing a block mapping')
mtaYaml.text = badMtaYaml()
2017-07-11 15:12:03 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
}
@Test
void noIdInMtaTest() {
2018-02-05 18:15:46 +02:00
2017-07-11 15:12:03 +02:00
thrown.expect(AbortException)
thrown.expectMessage("Property 'ID' not found in mta.yaml file at: '")
mtaYaml.text = noIdMtaYaml()
2017-07-11 15:12:03 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
}
@Test
2018-02-08 14:18:04 +02:00
void mtaJarLocationFromEnvironmentTest() {
2018-02-05 18:15:46 +02:00
helper.registerAllowedMethod('sh', [Map], { Map m -> getVersionWithEnvVars(m) })
2018-02-08 14:18:04 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2017-07-11 15:12:03 +02:00
assert jscr.shell.find { c -> c.contains("-jar /env/mta/mta.jar --mtar")}
assert jlr.log.contains("SAP Multitarget Application Archive Builder home '/env/mta' retrieved from environment.")
2018-03-19 19:29:41 +02:00
assert jlr.log.contains("Using SAP Multitarget Application Archive Builder executable 'java -jar /env/mta/mta.jar'.")
2017-07-11 15:12:03 +02:00
}
@Test
2018-02-08 14:18:04 +02:00
void mtaJarLocationFromCustomStepConfigurationTest() {
jer.env.configuration = [steps:[mtaBuild:[mtaJarLocation: "/config/mta"]]]
2018-02-08 14:18:04 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(script: [commonPipelineEnvironment: jer.env],
2018-02-08 14:18:04 +02:00
buildTarget: 'NEO')
assert jscr.shell.find(){ c -> c.contains("-jar /config/mta/mta.jar --mtar")}
assert jlr.log.contains("SAP Multitarget Application Archive Builder home '/config/mta' retrieved from configuration.")
2018-03-19 19:29:41 +02:00
assert jlr.log.contains("Using SAP Multitarget Application Archive Builder executable 'java -jar /config/mta/mta.jar'.")
2018-02-08 14:18:04 +02:00
}
@Test
void buildTargetFromParametersTest() {
2018-02-28 14:12:03 +02:00
jsr.step.call(buildTarget: 'NEO')
2018-02-21 13:46:55 +02:00
assert jscr.shell.find { c -> c.contains('java -jar mta.jar --mtar com.mycompany.northwind.mtar --build-target=NEO build')}
2018-02-08 14:18:04 +02:00
}
@Test
void buildTargetFromCustomStepConfigurationTest() {
2018-02-28 14:12:03 +02:00
jer.env.configuration = [steps:[mtaBuild:[buildTarget: 'NEO']]]
2018-02-08 14:18:04 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(script: [commonPipelineEnvironment: jer.env])
2018-02-08 14:18:04 +02:00
2018-02-21 13:46:55 +02:00
assert jscr.shell.find(){ c -> c.contains('java -jar mta.jar --mtar com.mycompany.northwind.mtar --build-target=NEO build')}
2018-02-08 14:18:04 +02:00
}
@Test
void buildTargetFromDefaultStepConfigurationTest() {
2018-02-28 14:12:03 +02:00
jer.env.defaultConfiguration = [steps:[mtaBuild:[buildTarget: 'NEO']]]
2018-02-08 14:18:04 +02:00
2018-02-28 14:12:03 +02:00
jsr.step.call(script: [commonPipelineEnvironment: jer.env])
2018-02-08 14:18:04 +02:00
2018-02-21 13:46:55 +02:00
assert jscr.shell.find { c -> c.contains('java -jar mta.jar --mtar com.mycompany.northwind.mtar --build-target=NEO build')}
}
2018-02-13 11:11:08 +02:00
private static defaultMtaYaml() {
2017-07-11 15:12:03 +02:00
return '''
_schema-version: "2.0.0"
ID: "com.mycompany.northwind"
version: 1.0.0
2018-02-05 17:45:24 +02:00
2017-07-11 15:12:03 +02:00
parameters:
hcp-deployer-version: "1.0.0"
2018-02-05 17:45:24 +02:00
2017-07-11 15:12:03 +02:00
modules:
- name: "fiorinorthwind"
type: html5
path: .
parameters:
version: 1.0.0-${timestamp}
build-parameters:
builder: grunt
build-result: dist
'''
}
2018-02-05 18:16:53 +02:00
private badMtaYaml() {
2017-07-11 15:12:03 +02:00
return '''
_schema-version: "2.0.0
ID: "com.mycompany.northwind"
version: 1.0.0
2018-02-05 17:45:24 +02:00
2017-07-11 15:12:03 +02:00
parameters:
hcp-deployer-version: "1.0.0"
2018-02-05 17:45:24 +02:00
2017-07-11 15:12:03 +02:00
modules:
- name: "fiorinorthwind"
type: html5
path: .
parameters:
version: 1.0.0-${timestamp}
build-parameters:
builder: grunt
build-result: dist
'''
}
2018-02-05 18:16:53 +02:00
private noIdMtaYaml() {
2017-07-11 15:12:03 +02:00
return '''
_schema-version: "2.0.0"
version: 1.0.0
2018-02-05 17:45:24 +02:00
2017-07-11 15:12:03 +02:00
parameters:
hcp-deployer-version: "1.0.0"
2018-02-05 17:45:24 +02:00
2017-07-11 15:12:03 +02:00
modules:
- name: "fiorinorthwind"
type: html5
path: .
parameters:
version: 1.0.0-${timestamp}
build-parameters:
builder: grunt
build-result: dist
'''
}
private getVersionWithEnvVars(Map m) {
if(m.script.contains('java -version')) {
return '''openjdk version \"1.8.0_121\"
OpenJDK Runtime Environment (build 1.8.0_121-8u121-b13-1~bpo8+1-b13)
OpenJDK 64-Bit Server VM (build 25.121-b13, mixed mode)'''
} else if(m.script.contains('mta.jar -v')) {
return '1.0.6'
} else {
return getEnvVars(m)
}
}
private getVersionWithoutEnvVars(Map m) {
if(m.script.contains('java -version')) {
return '''openjdk version \"1.8.0_121\"
OpenJDK Runtime Environment (build 1.8.0_121-8u121-b13-1~bpo8+1-b13)
OpenJDK 64-Bit Server VM (build 25.121-b13, mixed mode)'''
} else if(m.script.contains('mta.jar -v')) {
return '1.0.6'
} else {
return getNoEnvVars(m)
}
}
private getEnvVars(Map m) {
if(m.script.contains('JAVA_HOME')) {
2018-03-19 19:29:41 +02:00
return ''
} else if(m.script.contains('MTA_JAR_LOCATION')) {
return '/env/mta'
} else {
return 0
}
}
private getNoEnvVars(Map m) {
if(m.script.contains('JAVA_HOME')) {
return ''
} else if(m.script.contains('MTA_JAR_LOCATION')) {
return ''
} else {
return 0
}
}
2017-07-11 15:12:03 +02:00
}