mirror of
https://github.com/SAP/jenkins-library.git
synced 2024-12-14 11:03:09 +02:00
34b675a030
* handle test repositories
* use GitUtils
* add test case
* fix test cases
* return stash name
* handle seleniumExecuteTests step
* Revert "handle seleniumExecuteTests step"
This reverts commit 2b33d274fe
.
* handle seleniumExecuteTests step
* add import of GitUtils
130 lines
4.2 KiB
Groovy
130 lines
4.2 KiB
Groovy
package com.sap.piper
|
|
|
|
import static org.hamcrest.Matchers.equalTo
|
|
import static org.hamcrest.Matchers.hasEntry
|
|
import static org.hamcrest.Matchers.hasItem
|
|
import static org.hamcrest.Matchers.is
|
|
import static org.hamcrest.Matchers.notNullValue
|
|
import static org.hamcrest.Matchers.startsWith
|
|
|
|
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.JenkinsLoggingRule
|
|
import util.JenkinsShellCallRule
|
|
import util.Rules
|
|
|
|
import static org.junit.Assert.assertEquals
|
|
import static org.junit.Assert.assertTrue
|
|
import static org.junit.Assert.assertFalse
|
|
import static org.junit.Assert.assertNotNull
|
|
import static org.junit.Assert.assertNull
|
|
import static org.junit.Assert.assertThat
|
|
|
|
import org.springframework.beans.factory.annotation.Autowired
|
|
|
|
class GitUtilsTest extends BasePiperTest {
|
|
|
|
@Autowired
|
|
GitUtils gitUtils
|
|
|
|
private JenkinsLoggingRule jlr = new JenkinsLoggingRule(this)
|
|
private JenkinsShellCallRule jscr = new JenkinsShellCallRule(this)
|
|
private ExpectedException thrown = ExpectedException.none()
|
|
|
|
@Rule
|
|
public RuleChain ruleChain = Rules.getCommonRules(this)
|
|
.around(jlr)
|
|
.around(jscr)
|
|
.around(thrown)
|
|
|
|
@Before
|
|
void init() throws Exception {
|
|
jscr.setReturnValue('git rev-parse HEAD', 'testCommitId')
|
|
}
|
|
|
|
@Test
|
|
void TestIsInsideWorkTree() {
|
|
jscr.setReturnValue('git rev-parse --is-inside-work-tree 1>/dev/null 2>&1', 0)
|
|
assertTrue(gitUtils.insideWorkTree())
|
|
}
|
|
|
|
@Test
|
|
void TestIsNotInsideWorkTree() {
|
|
jscr.setReturnValue('git rev-parse --is-inside-work-tree 1>/dev/null 2>&1', 1)
|
|
assertFalse(gitUtils.insideWorkTree())
|
|
}
|
|
|
|
|
|
@Test
|
|
void testGetGitCommitId() {
|
|
jscr.setReturnValue('git rev-parse --is-inside-work-tree 1>/dev/null 2>&1', 0)
|
|
assertEquals('testCommitId', gitUtils.getGitCommitIdOrNull())
|
|
}
|
|
|
|
@Test
|
|
void testGetGitCommitIdNotAGitRepo() {
|
|
jscr.setReturnValue('git rev-parse --is-inside-work-tree 1>/dev/null 2>&1', 128)
|
|
assertNull(gitUtils.getGitCommitIdOrNull())
|
|
}
|
|
|
|
@Test
|
|
void testExtractLogLinesWithDefaults() {
|
|
gitUtils.extractLogLines()
|
|
assertTrue(jscr.shell
|
|
.stream()
|
|
.anyMatch( { it ->
|
|
it.contains('git log --pretty=format:%b origin/master..HEAD')}))
|
|
}
|
|
|
|
@Test
|
|
void testExtractLogLinesWithCustomValues() {
|
|
gitUtils.extractLogLines('myFilter', 'HEAD~5', 'HEAD~1', '%B')
|
|
assertTrue( jscr.shell
|
|
.stream()
|
|
.anyMatch( { it ->
|
|
it.contains('git log --pretty=format:%B HEAD~5..HEAD~1')}))
|
|
}
|
|
|
|
@Test
|
|
void testExtractLogLinesFilter() {
|
|
jscr.setReturnValue('#!/bin/bash git log --pretty=format:%b origin/master..HEAD', 'abc\n123')
|
|
String[] log = gitUtils.extractLogLines('12.*')
|
|
assertThat(log, is(notNullValue()))
|
|
assertThat(log.size(),is(equalTo(1)))
|
|
assertThat(log[0], is(equalTo('123')))
|
|
}
|
|
|
|
@Test
|
|
void testExtractLogLinesFilterNoMatch() {
|
|
jscr.setReturnValue('#!/bin/bash git log --pretty=format:%b origin/master..HEAD', 'abc\n123')
|
|
String[] log = gitUtils.extractLogLines('xyz')
|
|
assertNotNull(log)
|
|
assertThat(log.size(),is(equalTo(0)))
|
|
}
|
|
|
|
@Test
|
|
void testHandleTestRepository() {
|
|
def result, gitMap, stashName, config = [
|
|
testRepository: 'repoUrl',
|
|
gitSshKeyCredentialsId: 'abc',
|
|
gitBranch: 'master'
|
|
]
|
|
|
|
helper.registerAllowedMethod('git', [Map.class], {m -> gitMap = m })
|
|
helper.registerAllowedMethod("stash", [String.class], { s -> stashName = s})
|
|
|
|
result = GitUtils.handleTestRepository(nullScript, config)
|
|
// asserts
|
|
assertThat(gitMap, hasEntry('url', config.testRepository))
|
|
assertThat(gitMap, hasEntry('credentialsId', config.gitSshKeyCredentialsId))
|
|
assertThat(gitMap, hasEntry('branch', config.gitBranch))
|
|
assertThat(stashName, startsWith('testContent-'))
|
|
assertThat(result, startsWith('testContent-'))
|
|
}
|
|
}
|