2017-07-11 15:12:03 +02:00
|
|
|
import hudson.AbortException
|
|
|
|
import org.jenkinsci.plugins.pipeline.utility.steps.shaded.org.yaml.snakeyaml.Yaml
|
|
|
|
import org.jenkinsci.plugins.pipeline.utility.steps.shaded.org.yaml.snakeyaml.parser.ParserException
|
|
|
|
import org.junit.Before
|
|
|
|
import org.junit.Rule
|
|
|
|
import org.junit.Test
|
|
|
|
|
|
|
|
import org.junit.rules.ExpectedException
|
|
|
|
import org.junit.rules.TemporaryFolder
|
|
|
|
|
2017-11-13 16:56:19 +02:00
|
|
|
public class MTABuildTest extends PiperTestBase {
|
2017-07-11 15:12:03 +02:00
|
|
|
|
|
|
|
@Rule
|
|
|
|
public ExpectedException thrown = new ExpectedException()
|
|
|
|
|
|
|
|
@Rule
|
|
|
|
public TemporaryFolder tmp = new TemporaryFolder()
|
|
|
|
|
|
|
|
def currentDir
|
|
|
|
def otherDir
|
|
|
|
def mtaBuildShEnv
|
|
|
|
|
|
|
|
|
|
|
|
@Before
|
2017-11-21 15:27:05 +02:00
|
|
|
void setUp() {
|
|
|
|
|
|
|
|
super.setUp()
|
2017-07-11 15:12:03 +02:00
|
|
|
currentDir = tmp.newFolder().toURI().getPath()[0..-2] //omit final '/'
|
|
|
|
otherDir = tmp.newFolder().toURI().getPath()[0..-2] //omit final '/'
|
|
|
|
|
|
|
|
helper.registerAllowedMethod('readYaml', [Map], {
|
|
|
|
m ->
|
|
|
|
return new Yaml().load((m.file as File).text)
|
|
|
|
})
|
|
|
|
helper.registerAllowedMethod("dir", [String, Closure], {
|
|
|
|
s, c ->
|
|
|
|
currentDir = "${currentDir}/${s}"
|
|
|
|
c()
|
|
|
|
})
|
|
|
|
helper.registerAllowedMethod('pwd', [], { currentDir } )
|
|
|
|
helper.registerAllowedMethod("withEnv", [List.class, Closure.class],
|
|
|
|
{ l, c ->
|
|
|
|
mtaBuildShEnv = l
|
|
|
|
c()
|
|
|
|
})
|
|
|
|
helper.registerAllowedMethod('error', [String], { s -> throw new hudson.AbortException(s) })
|
|
|
|
|
|
|
|
binding.setVariable('PATH', '/usr/bin')
|
|
|
|
binding.setVariable('JAVA_HOME', '/opt/java')
|
|
|
|
binding.setVariable('env', [:])
|
|
|
|
|
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void straightForwardTest(){
|
|
|
|
|
|
|
|
binding.getVariable('env')['MTA_JAR_LOCATION'] = '/opt/mta'
|
|
|
|
|
|
|
|
new File("${currentDir}/mta.yaml") << defaultMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
def mtarFilePath = withPipeline(defaultPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
|
2017-11-13 11:11:56 +02:00
|
|
|
assert shellCalls[0] =~ /sed -ie "s\/\\\$\{timestamp\}\/`date \+%Y%m%d%H%M%S`\/g" ".*\/mta.yaml"$/
|
2017-07-11 15:12:03 +02:00
|
|
|
|
|
|
|
assert shellCalls[1].contains("PATH=./node_modules/.bin:/usr/bin")
|
|
|
|
|
|
|
|
assert shellCalls[1].contains(' -jar /opt/mta/mta.jar --mtar ')
|
|
|
|
|
|
|
|
assert mtarFilePath == "${currentDir}/com.mycompany.northwind.mtar"
|
|
|
|
|
2017-11-14 12:00:52 +02:00
|
|
|
assert messages[1] == "[mtaBuild] MTA JAR \"/opt/mta/mta.jar\" retrieved from environment."
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void mtarFilePathFromCommonPipelineEnviromentTest(){
|
|
|
|
|
|
|
|
binding.getVariable('env')['MTA_JAR_LOCATION'] = '/opt/mta'
|
|
|
|
|
|
|
|
new File("${currentDir}/mta.yaml") << defaultMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
def mtarFilePath = withPipeline(returnMtarFilePathFromCommonPipelineEnvironmentPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
|
2017-11-13 11:11:56 +02:00
|
|
|
assert shellCalls[0] =~ /sed -ie "s\/\\\$\{timestamp\}\/`date \+%Y%m%d%H%M%S`\/g" ".*\/mta.yaml"$/
|
2017-07-11 15:12:03 +02:00
|
|
|
|
|
|
|
assert shellCalls[1].contains("PATH=./node_modules/.bin:/usr/bin")
|
|
|
|
|
|
|
|
assert shellCalls[1].contains(' -jar /opt/mta/mta.jar --mtar ')
|
|
|
|
|
|
|
|
assert mtarFilePath == "${currentDir}/com.mycompany.northwind.mtar"
|
|
|
|
|
2017-11-14 12:00:52 +02:00
|
|
|
assert messages[1] == "[mtaBuild] MTA JAR \"/opt/mta/mta.jar\" retrieved from environment."
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void mtaBuildWithSurroundingDirTest(){
|
|
|
|
|
|
|
|
binding.getVariable('env')['MTA_JAR_LOCATION'] = '/opt/mta'
|
|
|
|
|
|
|
|
def newDirName = 'newDir'
|
|
|
|
new File("${currentDir}/${newDirName}").mkdirs()
|
|
|
|
new File("${currentDir}/${newDirName}/mta.yaml") << defaultMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
def mtarFilePath = withPipeline(withSurroundingDirPipeline()).execute(newDirName)
|
2017-07-11 15:12:03 +02:00
|
|
|
|
2017-11-13 11:11:56 +02:00
|
|
|
assert shellCalls[0] =~ /sed -ie "s\/\\\$\{timestamp\}\/`date \+%Y%m%d%H%M%S`\/g" ".*\/newDir\/mta.yaml"$/
|
2017-07-11 15:12:03 +02:00
|
|
|
|
|
|
|
assert shellCalls[1].contains("PATH=./node_modules/.bin:/usr/bin")
|
|
|
|
|
|
|
|
assert shellCalls[1].contains(' -jar /opt/mta/mta.jar --mtar ')
|
|
|
|
|
|
|
|
assert mtarFilePath == "${currentDir}/com.mycompany.northwind.mtar"
|
|
|
|
|
2017-11-14 12:00:52 +02:00
|
|
|
assert messages[1] == "[mtaBuild] MTA JAR \"/opt/mta/mta.jar\" retrieved from environment."
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
@Test
|
|
|
|
void mtaHomeNotSetTest() {
|
|
|
|
|
|
|
|
new File("${currentDir}/mta.yaml") << defaultMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
def mtarFilePath = withPipeline(defaultPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
|
2017-11-13 11:11:56 +02:00
|
|
|
assert shellCalls[0] =~ /sed -ie "s\/\\\$\{timestamp\}\/`date \+%Y%m%d%H%M%S`\/g" ".*\/mta.yaml"$/
|
2017-07-11 15:12:03 +02:00
|
|
|
|
|
|
|
assert shellCalls[1].contains("PATH=./node_modules/.bin:/usr/bin")
|
|
|
|
|
|
|
|
assert shellCalls[1].contains(' -jar mta.jar --mtar ')
|
|
|
|
|
|
|
|
assert mtarFilePath == "${currentDir}/com.mycompany.northwind.mtar"
|
|
|
|
|
2017-11-14 12:00:52 +02:00
|
|
|
assert messages[1] == "[mtaBuild] Using MTA JAR from current working directory."
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
void mtaHomeAsParameterTest() {
|
|
|
|
|
|
|
|
new File("${currentDir}/mta.yaml") << defaultMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
def mtarFilePath = withPipeline(mtaJarLocationAsParameterPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
|
2017-11-13 11:11:56 +02:00
|
|
|
assert shellCalls[0] =~ /sed -ie "s\/\\\$\{timestamp\}\/`date \+%Y%m%d%H%M%S`\/g" ".*\/mta.yaml"$/
|
2017-07-11 15:12:03 +02:00
|
|
|
|
|
|
|
assert shellCalls[1].contains("PATH=./node_modules/.bin:/usr/bin")
|
|
|
|
|
|
|
|
assert shellCalls[1].contains(' -jar /etc/mta/mta.jar --mtar ')
|
|
|
|
|
|
|
|
assert mtarFilePath == "${currentDir}/com.mycompany.northwind.mtar"
|
|
|
|
|
2017-11-14 12:00:52 +02:00
|
|
|
assert messages[1] == "[mtaBuild] MTA JAR \"/etc/mta/mta.jar\" retrieved from parameters."
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void noMtaPresentTest(){
|
|
|
|
thrown.expect(FileNotFoundException)
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
withPipeline(defaultPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void badMtaTest(){
|
|
|
|
thrown.expect(ParserException)
|
|
|
|
thrown.expectMessage('while parsing a block mapping')
|
|
|
|
|
|
|
|
new File("${currentDir}/mta.yaml") << badMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
withPipeline(defaultPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void noIdInMtaTest(){
|
|
|
|
thrown.expect(AbortException)
|
|
|
|
thrown.expectMessage("Property 'ID' not found in mta.yaml file at: '")
|
|
|
|
|
|
|
|
new File("${currentDir}/mta.yaml") << noIdMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
withPipeline(defaultPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
@Test
|
|
|
|
public void noBuildTargetTest(){
|
|
|
|
thrown.expect(Exception)
|
|
|
|
thrown.expectMessage("ERROR - NO VALUE AVAILABLE FOR buildTarget")
|
|
|
|
|
|
|
|
new File("${currentDir}/mta.yaml") << defaultMtaYaml()
|
|
|
|
|
2017-11-14 13:57:16 +02:00
|
|
|
withPipeline(noBuildTargetPipeline()).execute()
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private defaultPipeline(){
|
2017-11-21 15:47:17 +02:00
|
|
|
return '''
|
|
|
|
@Library('piper-library-os')
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
execute(){
|
|
|
|
mtaBuild buildTarget: 'NEO'
|
|
|
|
}
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
return this
|
|
|
|
'''
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private returnMtarFilePathFromCommonPipelineEnvironmentPipeline(){
|
2017-11-21 15:47:17 +02:00
|
|
|
return '''
|
|
|
|
@Library('piper-library-os')
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
execute(){
|
|
|
|
mtaBuild buildTarget: 'NEO'
|
|
|
|
return commonPipelineEnvironment.getMtarFilePath()
|
|
|
|
}
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
return this
|
|
|
|
'''
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private mtaJarLocationAsParameterPipeline(){
|
2017-11-21 15:47:17 +02:00
|
|
|
return '''
|
|
|
|
@Library('piper-library-os')
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
execute(){
|
|
|
|
mtaBuild mtaJarLocation: '/etc/mta', buildTarget: 'NEO'
|
|
|
|
}
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
return this
|
|
|
|
'''
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private withSurroundingDirPipeline(){
|
2017-11-21 15:47:17 +02:00
|
|
|
return '''
|
|
|
|
@Library('piper-library-os')
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
execute(dirPath){
|
|
|
|
dir("${dirPath}"){
|
|
|
|
mtaBuild buildTarget: 'NEO'
|
|
|
|
}
|
2017-11-16 15:09:48 +02:00
|
|
|
}
|
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
return this
|
|
|
|
'''
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
private noBuildTargetPipeline(){
|
2017-11-21 15:47:17 +02:00
|
|
|
return '''
|
|
|
|
@Library('piper-library-os')
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
execute(){
|
|
|
|
mtaBuild()
|
|
|
|
}
|
2017-11-16 15:09:48 +02:00
|
|
|
|
2017-11-21 15:47:17 +02:00
|
|
|
return this
|
|
|
|
'''
|
2017-07-11 15:12:03 +02:00
|
|
|
}
|
|
|
|
|
|
|
|
|
|
|
|
private defaultMtaYaml(){
|
|
|
|
return '''
|
|
|
|
_schema-version: "2.0.0"
|
|
|
|
ID: "com.mycompany.northwind"
|
|
|
|
version: 1.0.0
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
hcp-deployer-version: "1.0.0"
|
|
|
|
|
|
|
|
modules:
|
|
|
|
- name: "fiorinorthwind"
|
|
|
|
type: html5
|
|
|
|
path: .
|
|
|
|
parameters:
|
|
|
|
version: 1.0.0-${timestamp}
|
|
|
|
build-parameters:
|
|
|
|
builder: grunt
|
|
|
|
build-result: dist
|
|
|
|
'''
|
|
|
|
}
|
|
|
|
|
|
|
|
private badMtaYaml(){
|
|
|
|
return '''
|
|
|
|
_schema-version: "2.0.0
|
|
|
|
ID: "com.mycompany.northwind"
|
|
|
|
version: 1.0.0
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
hcp-deployer-version: "1.0.0"
|
|
|
|
|
|
|
|
modules:
|
|
|
|
- name: "fiorinorthwind"
|
|
|
|
type: html5
|
|
|
|
path: .
|
|
|
|
parameters:
|
|
|
|
version: 1.0.0-${timestamp}
|
|
|
|
build-parameters:
|
|
|
|
builder: grunt
|
|
|
|
build-result: dist
|
|
|
|
'''
|
|
|
|
}
|
|
|
|
|
|
|
|
private noIdMtaYaml(){
|
|
|
|
return '''
|
|
|
|
_schema-version: "2.0.0"
|
|
|
|
version: 1.0.0
|
|
|
|
|
|
|
|
parameters:
|
|
|
|
hcp-deployer-version: "1.0.0"
|
|
|
|
|
|
|
|
modules:
|
|
|
|
- name: "fiorinorthwind"
|
|
|
|
type: html5
|
|
|
|
path: .
|
|
|
|
parameters:
|
|
|
|
version: 1.0.0-${timestamp}
|
|
|
|
build-parameters:
|
|
|
|
builder: grunt
|
|
|
|
build-result: dist
|
|
|
|
'''
|
|
|
|
}
|
|
|
|
}
|