kea_testing.groovy 7.75 KB
   1
   2
   3
   4
   5
   6
   7
   8
   9
  10
  11
  12
  13
  14
  15
  16
  17
  18
  19
  20
  21
  22
  23
  24
  25
  26
  27
  28
  29
  30
  31
  32
  33
  34
  35
  36
  37
  38
  39
  40
  41
  42
  43
  44
  45
  46
  47
  48
  49
  50
  51
  52
  53
  54
  55
  56
  57
  58
  59
  60
  61
  62
  63
  64
  65
  66
  67
  68
  69
  70
  71
  72
  73
  74
  75
  76
  77
  78
  79
  80
  81
  82
  83
  84
  85
  86
  87
  88
  89
  90
  91
  92
  93
  94
  95
  96
  97
  98
  99
 100
 101
 102
 103
 104
 105
 106
 107
 108
 109
 110
 111
 112
 113
 114
 115
 116
 117
 118
 119
 120
 121
 122
 123
 124
 125
 126
 127
 128
 129
 130
 131
 132
 133
 134
 135
 136
 137
 138
 139
 140
 141
 142
 143
 144
 145
 146
 147
 148
 149
 150
/**
* Jenkinsfile to deploy multiple Docker containers based on docker-compose into a DEV server and run any test.
* This pipeline will run the Docker containers, execute the tests and then stop and remove the containers from the DEV
* server automatically.
**/


pipeline {

agent any

environment {
APP_URL = "https://kea.curex-project.eu"
KEYCLOAK_URL = "https://keycloak-curex.gnubila.fr/auth/realms/Integration/protocol/openid-connect/token"
USER = credentials('keycloak-test-user')
PASSWORD = credentials('keycloak-test-password')
CLIENT_ID = "KEA"

}

stages {
stage('Run tests') {
steps {
script {
echo '*************'
echo '*** TESTS ***'
echo '*************'
/* Here do your tests */
try {
// Get Keycloak auth token
String token = sh(label: "get_keycloak_token", script: "curl -s -X POST $KEYCLOAK_URL -H 'Content-Type: application/x-www-form-urlencoded' -d 'username=$USER' -d 'password=$PASSWORD' -d 'grant_type=password' -d 'client_id=$CLIENT_ID' | sed 's/.*access_token\":\"//g' | sed 's/\".*//g'", returnStdout: true)

String testName = "KEA_F001"
String url = "$APP_URL"
String responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F002"
url = "$APP_URL/components/od"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F003"
url = "$APP_URL/components/mltd"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F004"
url = "$APP_URL/api/config"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F005"
url = "$APP_URL/api/capec"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F006"
url = "https://kea-grafana.vlahavas.com/api/dashboards/home"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Αuthorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F007"
url = "https://kea-kibana.vlahavas.com/app/kibana"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F008"
url = "$APP_URL/components/ceptd"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

testName = "KEA_F009"
url = "$APP_URL/api/v1/od/start"
responseCode = sh(label: testName, script: "curl -m 10 -sL -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url", returnStdout: true)
echo responseCode
if (!responseCode.endsWith('200')) {
error("$testName: Returned status code = $responseCode when calling $url")
}
String processId = responseCode.split(",")[1].split(":")[1].split('"')[1];
url = "$APP_URL/api/v1/od/status"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}
url = "$APP_URL/api/v1/od/stop/$processId"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}
testName = "KEA_F010"
url = "$APP_URL/api/v1/mltd/start"
responseCode = sh(label: testName, script: "curl -m 10 -sL -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url", returnStdout: true)
echo responseCode
if (!responseCode.endsWith('200')) {
error("$testName: Returned status code = $responseCode when calling $url")
}
processId = responseCode.split(",")[1].split(":")[1];
url = "$APP_URL/api/v1/mltd/status"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}
url = "$APP_URL/api/v1/mltd/stop/$processId"
responseCode = sh(label: testName, script: "curl -m 10 -sLI -w '%{http_code}' -H 'Authorization: Bearer $token' -H 'Accept: application/json, text/plain, */*' $url -o /dev/null", returnStdout: true)
echo responseCode
if (responseCode != '200') {
error("$testName: Returned status code = $responseCode when calling $url")
}

} catch (ignored) {
currentBuild.result = 'FAILURE'
echo "KEA Deployment Tests failed"
}
}
}
}

}
}