2019-09-11 14:29:35 +02:00
|
|
|
#!/usr/bin/env bash
|
|
|
|
|
2020-06-23 14:24:30 +02:00
|
|
|
# Use this script to safely run the test suite.
|
|
|
|
# This must be preferred over `rails test`.
|
|
|
|
|
|
|
|
stripe_public_key=$(RAILS_ENV='test' bin/rails runner "puts ENV['STRIPE_PUBLISHABLE_KEY']")
|
|
|
|
stripe_secret_key=$(RAILS_ENV='test' bin/rails runner "puts ENV['STRIPE_API_KEY']")
|
|
|
|
if [[ -z "$stripe_public_key" ]]; then
|
|
|
|
read -rp "STRIPE_PUBLISHABLE_KEY is not set. Please input the public key now. > " stripe_public_key </dev/tty
|
|
|
|
if [[ -z "$stripe_public_key" ]]; then echo "Key was not set, exiting..."; exit 1; fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ -z "$stripe_secret_key" ]]; then
|
|
|
|
read -rp "STRIPE_API_KEY is not set. Please input the secret key now. > " stripe_secret_key </dev/tty
|
|
|
|
if [[ -z "$stripe_secret_key" ]]; then echo "Key was not set, exiting..."; exit 1; fi
|
|
|
|
fi
|
|
|
|
|
2020-03-30 10:59:11 +02:00
|
|
|
RAILS_ENV='test' bin/rails db:drop
|
|
|
|
RAILS_ENV='test' bin/rails db:create
|
|
|
|
RAILS_ENV='test' bin/rails db:migrate
|
2021-04-23 17:54:59 +02:00
|
|
|
clear
|
2020-06-23 14:24:30 +02:00
|
|
|
STRIPE_PUBLISHABLE_KEY="$stripe_public_key" STRIPE_API_KEY="$stripe_secret_key" RAILS_ENV='test' bundle exec bin/rails test "$@"
|