diff options
author | MrArmonius <mrarmonius@gmail.com> | 2021-07-07 01:49:33 +0200 |
---|---|---|
committer | MrArmonius <mrarmonius@gmail.com> | 2021-07-19 18:56:47 +0200 |
commit | a98556d5c1241f9150202d72ea096a775d97a582 (patch) | |
tree | 17825f52e0079e7eaa759a28951b9eb6fda6572e /.drone.yml | |
parent | aa912b5ceb24cb8772709171ea9589b0771bbe54 (diff) | |
download | bottin-a98556d5c1241f9150202d72ea096a775d97a582.tar.gz bottin-a98556d5c1241f9150202d72ea096a775d97a582.zip |
Test End-to-end V1.0, testing Bottin's behavior
Tests wrote in golang without framework Testing on the Bottin's behavior
Tests made:
- crated random Users and Group - LDAP ADD
- check the match between Consul's data and Test's data- LDAP
Search
- modify attributes and check them -
LDAP Modify
Diffstat (limited to '.drone.yml')
-rw-r--r-- | .drone.yml | 25 |
1 files changed, 18 insertions, 7 deletions
@@ -1,13 +1,24 @@ --- -pipeline: - build: - image: golang:stretch - commands: - - go get -d -v - - go build -v +kind: pipeline +name: bottin + +steps: +- name: build + image: golang:stretch + commands: + - go get -d -v + - go build -v + - cd test_automatic + - go get -d -v + - go build -v + +- name: test_bottin + image: consul:latest + commands: + - ./test_automatic/start_test.sh --- kind: signature -hmac: 8f49fdf0e4abb0790827eed7cac8eedd5e11705d1fa01954a84929933eb7b254 +hmac: 939fca00ff84d40e9364cd936c18c40c5becafa05e0f887bc04cf6336a4913a2 ... |