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/FioriOnCloudPlatformPipelineTest.groovy
2020-03-17 09:19:09 +01:00

155 lines
5.4 KiB
Groovy

import util.CommandLineMatcher
import util.JenkinsLockRule
import util.JenkinsWithEnvRule
import util.JenkinsWriteFileRule
import static org.hamcrest.Matchers.allOf
import static org.hamcrest.Matchers.containsString
import static org.hamcrest.Matchers.equalTo
import static org.hamcrest.Matchers.hasItem
import static org.hamcrest.Matchers.is
import static org.hamcrest.Matchers.subString
import static org.junit.Assert.assertThat
import org.hamcrest.Matchers
import org.junit.Assert
import org.junit.Before
import org.junit.Rule
import org.junit.Test
import org.junit.rules.RuleChain
import com.sap.piper.JenkinsUtils
import util.BasePiperTest
import util.JenkinsCredentialsRule
import util.JenkinsReadYamlRule
import util.JenkinsShellCallRule
import util.JenkinsStepRule
import util.Rules
class FioriOnCloudPlatformPipelineTest extends BasePiperTest {
/* This scenario builds a fiori app and deploys it into an neo account.
The build is performed using mta, which delegates to grunt. grunt in
turn makes use of the 'sap/grunt-sapui5-bestpractice-build' plugin.
The dependencies are resolved via npm.
In order to run the scenario the project needs to fullfill these
prerequisites:
Build tools:
* mta.jar available
* npm installed
Project configuration:
* sap registry `@sap:registry=https://npm.sap.com` configured in
.npmrc (either in the project or on any other suitable level)
* dependency to `@sap/grunt-sapui5-bestpractice-build` declared in
package.json
* npmTask `@sap/grunt-sapui5-bestpractice-build` loaded inside
Gruntfile.js and configure default tasks (e.g. lint, clean, build)
* mta.yaml
*/
JenkinsStepRule stepRule = new JenkinsStepRule(this)
JenkinsReadYamlRule readYamlRule = new JenkinsReadYamlRule(this)
JenkinsShellCallRule shellRule = new JenkinsShellCallRule(this)
JenkinsWriteFileRule writeFileRule = new JenkinsWriteFileRule(this)
private JenkinsLockRule jlr = new JenkinsLockRule(this)
@Rule
public RuleChain ruleChain = Rules
.getCommonRules(this)
.around(readYamlRule)
.around(stepRule)
.around(shellRule)
.around(jlr)
.around(writeFileRule)
.around(new JenkinsWithEnvRule(this))
.around(new JenkinsCredentialsRule(this)
.withCredentials('CI_CREDENTIALS_ID', 'foo', 'terceSpot'))
@Before
void setup() {
//
// needed since we have dockerExecute inside mtaBuild
JenkinsUtils.metaClass.static.isPluginActive = {def s -> false}
//
// there is a check for the mta.yaml file and for the deployable test.mtar file
helper.registerAllowedMethod('fileExists', [String],{
it ->
// called inside mtaBuild, this file contains build config
it == 'mta.yaml' ||
// called inside neo deploy, this file gets deployed
it == 'test.mtar'
})
helper.registerAllowedMethod("deleteDir",[], null)
//
// the properties below we read out of the yaml file
readYamlRule.registerYaml('mta.yaml', ('''
|ID : "test"
|PATH : "."
|''' as CharSequence).stripMargin())
//
// we need the path variable since we extend the path in the mtaBuild step. In order
// to be able to extend the path we have to have some initial value.
binding.setVariable('PATH', '/usr/bin')
binding.setVariable('scm', null)
helper.registerAllowedMethod('pwd', [], { return "./" })
}
@Test
void straightForwardTest() {
nullScript
.commonPipelineEnvironment
.configuration = [steps:
[neoDeploy:
[neo:
[ host: 'hana.example.com',
account: 'myTestAccount',
]
]
]
]
stepRule.step.fioriOnCloudPlatformPipeline(script: nullScript,
platform: 'NEO',
)
//
// the mta build call:
assertThat(shellRule.shell, hasItem(
allOf( containsString('mbt build'),
containsString('--mtar test.mtar'),
containsString('--platform NEO'),
containsString('--target ./'))))
//
// the deployable is exchanged between the involved steps via this property:
assertThat(nullScript.commonPipelineEnvironment.getMtarFilePath(), is(equalTo('test.mtar')))
//
// the neo deploy call:
Assert.assertThat(shellRule.shell,
new CommandLineMatcher()
.hasProlog("neo.sh deploy-mta")
.hasSingleQuotedOption('host', 'hana\\.example\\.com')
.hasSingleQuotedOption('account', 'myTestAccount')
.hasSingleQuotedOption('password', 'terceSpot')
.hasSingleQuotedOption('user', 'foo')
.hasSingleQuotedOption('source', 'test.mtar')
.hasArgument('synchronous'))
}
}