Fix system tests (#713)

Update user key to fix system tests
This commit is contained in:
Jon Wayne Parrott 2017-05-09 14:46:47 -07:00 committed by GitHub
parent efe567a8f0
commit 119b90cbc9
3 changed files with 6 additions and 7 deletions

View File

@ -19,10 +19,9 @@ set -ev
# If we're on Travis, we need to set up the environment.
if [[ "${TRAVIS}" == "true" ]]; then
# If merging to master and not a pull request, run system test.
if [[ "${TRAVIS_BRANCH}" == "master" ]] && \
[[ "${TRAVIS_PULL_REQUEST}" == "false" ]]; then
echo "Running in Travis during merge, decrypting stored key file."
# If secure variables are available, run system test.
if [[ "${TRAVIS_SECURE_ENV_VARS}" ]]; then
echo "Running in Travis, decrypting stored key file."
# Convert encrypted JSON key file into decrypted file to be used.
openssl aes-256-cbc -K ${OAUTH2CLIENT_KEY} \
-iv ${OAUTH2CLIENT_IV} \
@ -34,8 +33,8 @@ if [[ "${TRAVIS}" == "true" ]]; then
-in tests/data/key.p12.enc \
-out ${OAUTH2CLIENT_TEST_P12_KEY_PATH} -d
# Convert encrypted User JSON key file into decrypted file to be used.
openssl aes-256-cbc -K ${OAUTH2CLIENT_KEY} \
-iv ${OAUTH2CLIENT_IV} \
openssl aes-256-cbc -K ${encrypted_1ee98544e5ca_key} \
-iv ${encrypted_1ee98544e5ca_iv} \
-in tests/data/user-key.json.enc \
-out ${OAUTH2CLIENT_TEST_USER_KEY_PATH} -d
else

Binary file not shown.

View File

@ -71,7 +71,7 @@ deps =
pycrypto>=2.6
cryptography>=1.0
pyopenssl>=0.14
passenv = GOOGLE_* OAUTH2CLIENT_* TRAVIS*
passenv = GOOGLE_* OAUTH2CLIENT_* TRAVIS* encrypted_*
[testenv:system-tests3]
basepython =