diff options
author | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-06 17:07:06 +0200 |
---|---|---|
committer | Kali Kaneko (leap communications) <kali@leap.se> | 2017-06-07 12:31:26 +0200 |
commit | 84f762b2cdf478913f97ce697c5782e6ebeddc95 (patch) | |
tree | 7f0e71a1ec0d213c932bc57b2313f0009ba97f7e /tests/e2e/e2e-test-mail.sh | |
parent | 05f2b9d2b72139df56f67e88aeb7ceb6d8ec4e69 (diff) |
[tests] enable mail e2e again
- skip ssl verification for this test
- use mail.bitmask as e2e provider for now
(ci.leap.se seems broken; cannot download smtp cert)
Diffstat (limited to 'tests/e2e/e2e-test-mail.sh')
-rwxr-xr-x | tests/e2e/e2e-test-mail.sh | 17 |
1 files changed, 11 insertions, 6 deletions
diff --git a/tests/e2e/e2e-test-mail.sh b/tests/e2e/e2e-test-mail.sh index 7039e64..881aa62 100755 --- a/tests/e2e/e2e-test-mail.sh +++ b/tests/e2e/e2e-test-mail.sh @@ -30,6 +30,9 @@ # exit if any commands returns non-zero status set -e +# DEBUG +# set -x + # Check if scipt is run in debug mode so we can hide secrets if [[ "$-" =~ 'x' ]] then @@ -40,7 +43,8 @@ else xtrace=false fi -PROVIDER='ci.leap.se' +#PROVIDER='ci.leap.se' +PROVIDER='mail.bitmask.net' INVITE_CODE=${BITMASK_INVITE_CODE:?"Need to set BITMASK_INVITE_CODE non-empty"} BCTL='bitmaskctl' @@ -53,25 +57,26 @@ user="${username}@${PROVIDER}" pw="$(head -c 10 < /dev/urandom | base64)" SWAKS="swaks --h-Subject $MAIL_UUID --silent 2 --helo ci.leap.se -f ci@leap.se -t $user" -# Start the polkit authentication agent -"$POLKIT" & - # Stop any previously started bitmaskd # and start a new instance "$BCTL" stop [ -d "$LEAP_HOME" ] && rm -rf "$LEAP_HOME" -"$BCTL" start -# Register a new user +# XXX skip certificate verification! -- self-signed cert in ci.leap.se +SKIP_TWISTED_SSL_CHECK=1 "$BCTL" start +# Register a new user # Disable xtrace set +x "$BCTL" user create "$user" --pass "$pw" --invite "$INVITE_CODE" # Enable xtrace again only if it was set at beginning of script [[ $xtrace == true ]] && set -x +#tail ~/.config/leap/bitmaskd.log +echo "created user. authenticating..." + # Authenticate "$BCTL" user auth "$user" --pass "$pw" > /dev/null |