salix-front/Jenkinsfile

226 lines
7.5 KiB
Plaintext
Raw Normal View History

2022-03-29 10:53:02 +00:00
#!/usr/bin/env groovy
def PROTECTED_BRANCH
def BRANCH_ENV = [
test: 'test',
master: 'production',
beta: 'production'
]
node {
stage('Setup') {
env.FRONT_REPLICAS = 1
env.NODE_ENV = BRANCH_ENV[env.BRANCH_NAME] ?: 'dev'
PROTECTED_BRANCH = [
'dev',
'test',
'master',
'beta'
].contains(env.BRANCH_NAME)
// https://www.jenkins.io/doc/book/pipeline/jenkinsfile/#using-environment-variables
echo "NODE_NAME: ${env.NODE_NAME}"
echo "WORKSPACE: ${env.WORKSPACE}"
configFileProvider([
configFile(fileId: 'salix-front.properties',
variable: 'PROPS_FILE')
]) {
def props = readProperties file: PROPS_FILE
props.each {key, value -> env."${key}" = value }
props.each {key, value -> echo "${key}: ${value}" }
}
if (PROTECTED_BRANCH) {
configFileProvider([
configFile(fileId: "salix-front.branch.${env.BRANCH_NAME}",
variable: 'BRANCH_PROPS_FILE')
]) {
def props = readProperties file: BRANCH_PROPS_FILE
props.each {key, value -> env."${key}" = value }
props.each {key, value -> echo "${key}: ${value}" }
}
}
}
}
2022-03-29 10:53:02 +00:00
pipeline {
agent any
options {
disableConcurrentBuilds()
}
tools {
nodejs 'node-v18'
}
2022-03-29 10:53:02 +00:00
environment {
2022-04-01 06:33:26 +00:00
PROJECT_NAME = 'lilium'
2022-03-29 10:53:02 +00:00
}
stages {
stage('Install') {
environment {
NODE_ENV = ""
}
steps {
2024-02-26 11:33:06 +00:00
sh 'pnpm install --prefer-offline'
2022-03-29 10:53:02 +00:00
}
}
2025-02-05 08:02:14 +00:00
// stage('Test: Unit') {
// when {
// expression { !PROTECTED_BRANCH }
// }
// environment {
// NODE_ENV = ""
// }
// steps {
// sh 'pnpm run test:unit:ci'
// }
// post {
// always {
// junit(
// testResults: 'junitresults.xml',
// allowEmptyResults: true
// )
// }
// }
// }
2025-01-31 13:58:02 +00:00
stage('Test: E2E') {
when {
expression { !PROTECTED_BRANCH }
}
environment {
2025-02-03 06:53:43 +00:00
NODE_ENV = ""
2025-01-31 13:58:02 +00:00
CREDENTIALS = credentials('docker-registry')
}
stages {
stage('Setup') {
steps {
script {
def packageJson = readJSON file: 'package.json'
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
env.NETWORK = "${PROJECT_NAME}-${env.BRANCH_NAME}-${env.BUILD_ID}"
cleanDockerE2E()
sh "pnpm exec cypress install"
2025-02-10 12:05:52 +00:00
// sh "docker network create ${env.NETWORK} || true"
}
2025-02-10 12:05:52 +00:00
2025-01-31 13:56:42 +00:00
}
}
stage('E2E: Basic') {
2025-02-03 12:42:41 +00:00
steps {
script {
runTestsInParallel([
// 'test/cypress/integration/vnComponent/',
'test/cypress/integration/outLogin/',
])
}
}
}
stage('E2E: Sections') {
steps {
script {
runTestsInParallel([
'test/cypress/integration/claim/',
'test/cypress/integration/client/',
'test/cypress/integration/entry/',
'test/cypress/integration/invoiceIn/',
])
2025-02-10 14:23:39 +00:00
2025-02-03 12:19:32 +00:00
}
}
}
2025-02-03 06:58:34 +00:00
}
post {
always {
cleanDockerE2E()
2025-01-31 13:58:02 +00:00
}
}
2024-09-12 08:25:12 +00:00
}
2022-03-30 13:29:20 +00:00
stage('Build') {
when {
expression { PROTECTED_BRANCH }
}
2022-03-30 13:29:20 +00:00
environment {
CREDENTIALS = credentials('docker-registry')
}
steps {
sh 'quasar build'
script {
def packageJson = readJSON file: 'package.json'
2024-06-12 05:40:04 +00:00
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
dockerBuild()
2022-03-30 13:29:20 +00:00
}
}
stage('Deploy') {
when {
expression { PROTECTED_BRANCH }
}
2022-03-30 13:29:20 +00:00
steps {
script {
def packageJson = readJSON file: 'package.json'
2024-06-12 05:40:04 +00:00
env.VERSION = "${packageJson.version}-build${env.BUILD_ID}"
}
2024-05-27 11:31:40 +00:00
withKubeConfig([
serverUrl: "$KUBERNETES_API",
credentialsId: 'kubernetes',
namespace: 'lilium'
]) {
sh 'kubectl set image deployment/lilium-$BRANCH_NAME lilium-$BRANCH_NAME=$REGISTRY/salix-frontend:$VERSION'
}
2022-03-30 13:29:20 +00:00
}
}
2022-03-29 10:53:02 +00:00
}
2024-01-29 07:38:55 +00:00
}
2025-01-31 13:18:16 +00:00
def cleanDockerE2E() {
script {
2025-02-10 13:55:02 +00:00
def projectBranch = "${PROJECT_NAME}-${env.BRANCH_NAME}".toLowerCase()
2025-02-10 14:02:55 +00:00
// STOP AND REMOVE
sh """docker ps -a --filter "name=^${projectBranch}" | awk 'NR>1 {print $1}' | xargs -r docker rm -v || true"""
sh """docker network ls --filter "name=^${projectBranch}" | awk 'NR>1 {print $1}' | xargs -r docker network rm || true"""
2025-02-10 13:49:34 +00:00
2025-01-31 13:18:16 +00:00
}
}
2025-02-10 12:05:52 +00:00
def runTestsInParallel(List<String> folders) {
if (!folders) { // Si es null o vacío, asigna valores por defecto
folders =sh(script: "ls -d test/cypress/integration/*/ || echo ''", returnStdout: true).trim().split('\n')
}
2025-02-10 12:05:52 +00:00
def tasks = [:]
folders.each { testFolder ->
2025-02-10 12:43:16 +00:00
if (testFolder.trim()) {
2025-02-10 12:10:12 +00:00
def folderName = testFolder.replaceAll('test/cypress/integration/', '').replaceAll('/', '')
folderName = folderName.replaceAll('[^a-zA-Z0-9_-]', '') // Seguridad en nombres de red
tasks["e2e_${folderName}"] = {
2025-02-10 12:43:16 +00:00
script {
2025-02-10 14:18:28 +00:00
env.CYPRESS_SPEC="test/cypress/integration/${folderName}/**/*.spec.js"
2025-02-10 13:55:02 +00:00
sh "docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up -d back"
2025-02-10 12:43:16 +00:00
sh "docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up -d front"
2025-02-10 14:18:28 +00:00
sh "CYPRESS_SPEC=test/cypress/integration/${folderName}/**/*.spec.js docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml up e2e"
checkErrors(folderName)
2025-02-10 12:43:16 +00:00
}
2025-02-10 12:10:12 +00:00
}
2025-02-10 12:05:52 +00:00
}
}
parallel tasks
}
2025-02-10 14:23:39 +00:00
def checkErrors(String folderName){
2025-02-10 14:23:39 +00:00
def containerId = sh(script: "docker-compose -p ${env.NETWORK}_${folderName} -f docker-compose.e2e.yml ps -q e2e", returnStdout: true).trim()
if (containerId) {
def exitCode = sh(script: "docker inspect -f '{{.State.ExitCode}}' ${containerId}", returnStdout: true).trim()
// sh "sudo docker cp ${containerId}:/app/test/cypress/reports ./test/cypress/"
2025-02-10 14:23:39 +00:00
if (exitCode != '0') {
def logs = sh(script: "docker logs ${containerId}", returnStdout: true).trim()
error("Cypress E2E tests failed with exit code: ${exitCode}\nLogs:\n${logs}")
}
} else {
error("The Docker container for E2E tests could not be created")
}
}