summaryrefslogtreecommitdiff
path: root/service/test/reactor/concurrent_logins.sh
blob: 66791f43bde2384fff40e10ea331ed2026207309 (plain)
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
#!/bin/bash

USER_PREFIX="loadtest"
PASSWORD_PREFIX="password_"

PROVIDER="dev.pixelated-project.org"
RUNS=9
USERS=1
SLEEP=1

function show_help {
    echo "Run several tests against login"
    echo
    echo " --user|-u - array with amount of tests split by comma"
    echo " --runs|-r - how many times a tests is going to run"
    echo " --provider|-p - set the provider"
    echo " --sleep|-s - time to sleep between requests"
    echo " --help|-h - show help message"
}

function run_on_vagrant {
    vagrant ssh -c "$@" > /dev/null 2>&1
}

function curl_login {
    index=$1
    username=${USER_PREFIX}${index}
    password=${PASSWORD_PREFIX}${index}

    curl -siL -X POST \
        --data "username=${username}&password=${password}" \
        --cookie 'XSRF-TOKEN: blablabla' \
        --header 'X-Requested-With: XMLHttpRequest' \
        --header 'X-XSRF-TOKEN: blablabla' \
        http://localhost:3333/login |\
    grep '^HTTP' |\
    sed 's/\(.*\)/      - \1/'
}

while [[ $# > 0 ]]; do
    case $1 in
        --users|-u)
            USERS=$2
            shift
        ;;
        --runs|-r)
            RUNS=$2
            shift
        ;;
        --provider|-p)
            PROVIDER=$2
            shift
        ;;
        --sleep|-s)
            SLEEP=$2
            shift
        ;;
        --help|-h)
            show_help
            exit 0
        ;;
    esac
    shift
done

run_on_vagrant "pkill pixelated"
run_on_vagrant "rm ~/MetricsTime"
run_on_vagrant "mkdir -p /vagrant/service/test/login/metrics"

for user in $(tr ',' ' ' <<< $USERS); do
    echo "> Run for $user user(s)"

    for run in $(seq $RUNS); do
        echo "  > Running $run of $RUNS runs"
        echo "  > Starting Pixelated UA"
        run_on_vagrant "nohup pixelated-user-agent --host 0.0.0.0 --multi-user --provider=$PROVIDER & sleep 1"
        until curl -s "http://localhost:3333" -o /dev/null 2>&1; do :; done

        for index in $(seq $user); do
            echo "    > Logging $USER_PREFIX$index"
            curl_login $index &
            PIDS="$PIDS $!"
            sleep $SLEEP
        done

        wait $PIDS
        PIDS=""
        echo "  > Killing Pixelated UA"
        run_on_vagrant "pkill pixelated"

        echo
    done
    run_on_vagrant "mv ~/MetricsTime /vagrant/service/test/login/metrics/${user}-users.txt"
    echo
done