From 2566bf9688170dc2ee1ffddb0ec83b5a64e67585 Mon Sep 17 00:00:00 2001 From: edebrye <edebrye@ippon.fr> Date: Wed, 17 Mar 2021 16:14:30 +0100 Subject: [PATCH] modified gitlab-ci / added load tests --- .gitlab-ci.yml | 16 +++++++++++++++- 1 file changed, 15 insertions(+), 1 deletion(-) diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml index eb0ac66..3c9f2a7 100644 --- a/.gitlab-ci.yml +++ b/.gitlab-ci.yml @@ -68,7 +68,21 @@ Integration Tests: rules: - if: '$CI_COMMIT_BRANCH =~ /^(master|production)$/' -Production Plan: +Load Tests: + stage: Integration Test + image: + name: peterevans/vegeta + entrypoint: [""] + script: + - echo "GET $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report + - echo "PUT $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report + - echo "PATCH $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report + - echo "DELETE $API_ENDPOINT/crud" | vegeta attack -duration=3s -rate=100/s | vegeta report + rules: + - if: '$CI_COMMIT_BRANCH =~ /^(master|production)$/' + when: manual + + Production Plan: stage: Production Plan script: - cd deploy/ -- GitLab