Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
H
holi-chat-server
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Operate
Terraform modules
Analyze
Contributor analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
app
holi-chat-server
Commits
23ce85ca
Commit
23ce85ca
authored
3 weeks ago
by
Ole Langbehn
Browse files
Options
Downloads
Patches
Plain Diff
feat(CI): add smoketests to pipeline
parent
84d78d1c
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
.gitlab-ci.yml
+18
-5
18 additions, 5 deletions
.gitlab-ci.yml
smoketest/main.js
+40
-0
40 additions, 0 deletions
smoketest/main.js
with
58 additions
and
5 deletions
.gitlab-ci.yml
+
18
−
5
View file @
23ce85ca
...
...
@@ -62,13 +62,14 @@ build_docker:
resource_group
:
$ENVIRONMENT_ID
# never execute terraform in parallel on the same environment
interruptible
:
false
.
e2e
:
.
smoketest
:
stage
:
"
deploy"
image
:
'
europe-north1-docker.pkg.dev/holi-shared/docker
-hub-remote/archlinux:base
'
image
:
'
europe-north1-docker.pkg.dev/holi-shared/docker
/holi-docker/holi-k6-builder
'
script
:
-
API_BASE_URL=`cat "$API_DOMAIN_PATH"`
-
echo "e2e tests against '$CI_ENVIRONMENT_SLUG' environment go here and against '$API_BASE_URL'"
-
terraform/scripts/wait-for-ssl.sh "https://${API_BASE_URL}"
-
API_DOMAIN=$(cat "$API_DOMAIN_PATH")
-
terraform/environments/scripts/wait-for-ssl.sh "https://${API_DOMAIN}"
-
BASE_URL="https://${API_DOMAIN}" k6 run smoketest/main.js
# TODO should/could we roll back the service to the last working revision on test failure?
staging_deploy
:
extends
:
.deploy
...
...
@@ -81,6 +82,12 @@ staging_deploy:
only
:
-
main
staging_smoketest
:
extends
:
.smoketest
needs
:
[
'
staging_deploy'
]
only
:
-
main
production_deploy
:
extends
:
.deploy
allow_failure
:
false
...
...
@@ -92,3 +99,9 @@ production_deploy:
ENVIRONMENT_ID
:
production
only
:
-
production
production_smoketest
:
extends
:
.smoketest
needs
:
[
'
production_deploy'
]
only
:
-
production
This diff is collapsed.
Click to expand it.
smoketest/main.js
0 → 100644
+
40
−
0
View file @
23ce85ca
import
http
from
'
k6/http
'
import
{
check
}
from
'
k6
'
// You don't need to change anything in this section, it's k6 glue code.
// See the default function at the end of the file for defining your smoketest.
// This configuration only executes 1 test, enough for a smoketest. The smoketest will fail on any check failing.
const
allChecksNeedToPassTreshold
=
{
checks
:
[{
threshold
:
'
rate==1
'
,
abortOnFail
:
true
}]
}
export
const
options
=
{
vus
:
1
,
iterations
:
1
,
thresholds
:
allChecksNeedToPassTreshold
,
}
/**
* Performs a GraphQL query and checks the response using the provided function. Fails if any of the provided expectations are not met.
* @param {string} query The GraphQL query to perform
* @param {(response: http.Response) => Array<boolean>} checkFunction
* A function that takes the HTTP response as an argument and returns an array
* of boolean values, each indicating success or failure of a test.
*/
function
forGetRequest
(
path
,
checkFunction
)
{
const
response
=
http
.
get
(
`
${
__ENV
.
BASE_URL
}${
path
}
`
,
{
headers
:
{
'
Accept
'
:
'
application/json
'
},
})
checkFunction
(
response
)
}
// Define your smoketest(s) here.
export
default
()
=>
{
forGetRequest
(
"
/_matrix/client/r0/login
"
,
(
response
)
=>
{
check
(
response
,
{
'
is status 200
'
:
(
r
)
=>
r
.
status
===
200
,
})
check
(
JSON
.
parse
(
response
.
body
),
{
// there can be multiple tests here, e.g.
//"contains topics object": (r) => typeof r.data.topics != null,
'
contains at least one flow
'
:
(
r
)
=>
r
.
flows
&&
Array
.
isArray
(
r
.
flows
)
&&
r
.
flows
.
length
>
0
,
})
})
}
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment