d4b3ba4baa
* [#139] Delayed emails for conversations * Added the setex and get methods to Redis wrapper * Set the priorities for the sidekiq queues * Was not able to use mailhog for testing email in local, switched back to letter opener and added comments on using the SMTP settings * Added after create hood in messages to queue the sending of mail after 2 minutes using sidekiq worker and also set the redis key for the conversation to avoid the email sending for every message * Added the sidekiq worker to send the email and delete the conversation redis key * Added the mailer and mail template * mailer sends the last 10 messages along with the new messages from the time it was queued * Send email only in development or if smtp config is set * Send email only in development or if smtp config is set * Set the SMTP_PORT in production variable * Adding redis to circle CI * Specs for the conversation email changes * Added specs for conversation email sidekiq worker * Added specs for conversation mailer * Added specs in message model for the after create hook for notify email * Send emails only when there is a reply from agent * set development to use mailhog * Adding comments for using letter opener
129 lines
No EOL
3.9 KiB
YAML
129 lines
No EOL
3.9 KiB
YAML
# Ruby CircleCI 2.0 configuration file
|
|
#
|
|
# Check https://circleci.com/docs/2.0/language-ruby/ for more details
|
|
#
|
|
version: 2
|
|
defaults: &defaults
|
|
working_directory: ~/build
|
|
docker:
|
|
# specify the version you desire here
|
|
- image: circleci/ruby:2.6.5-node-browsers
|
|
|
|
# Specify service dependencies here if necessary
|
|
# CircleCI maintains a library of pre-built images
|
|
# documented at https://circleci.com/docs/2.0/circleci-images/
|
|
- image: circleci/postgres:9.4
|
|
- image: circleci/redis:5.0.7-alpine
|
|
environment:
|
|
- CC_TEST_REPORTER_ID: b1b5c4447bf93f6f0b06a64756e35afd0810ea83649f03971cbf303b4449456f
|
|
|
|
jobs:
|
|
build:
|
|
<<: *defaults
|
|
steps:
|
|
- checkout
|
|
|
|
- run:
|
|
name: Configure Bundler
|
|
command: |
|
|
echo 'export BUNDLER_VERSION=$(cat Gemfile.lock | tail -1 | tr -d " ")' >> $BASH_ENV
|
|
source $BASH_ENV
|
|
gem install bundler
|
|
|
|
- run:
|
|
name: Which bundler?
|
|
command: bundle -v
|
|
|
|
# Run bundler
|
|
# Load installed gems from cache if possible, bundle install then save cache
|
|
# Multiple caches are used to increase the chance of a cache hit
|
|
|
|
- restore_cache:
|
|
keys:
|
|
- chatwoot-bundle-{{ checksum "Gemfile.lock" }}
|
|
- chatwoot-bundle
|
|
|
|
- run: bundle install --frozen --path ~/.bundle
|
|
- save_cache:
|
|
paths:
|
|
- ~/.bundle
|
|
key: chatwoot-bundle-{{ checksum "Gemfile.lock" }}
|
|
|
|
|
|
# Only necessary if app uses webpacker or yarn in some other way
|
|
- restore_cache:
|
|
keys:
|
|
- chatwoot-yarn-{{ checksum "yarn.lock" }}
|
|
- chatwoot-yarn-
|
|
|
|
- run:
|
|
name: yarn
|
|
command: yarn install --cache-folder ~/.cache/yarn
|
|
|
|
# Store yarn / webpacker cache
|
|
- save_cache:
|
|
key: chatwoot-yarn-{{ checksum "yarn.lock" }}
|
|
paths:
|
|
- ~/.cache/yarn
|
|
|
|
- run:
|
|
name: Download cc-test-reporter
|
|
command: |
|
|
mkdir -p tmp/
|
|
curl -L https://codeclimate.com/downloads/test-reporter/test-reporter-latest-linux-amd64 > ./tmp/cc-test-reporter
|
|
chmod +x ./tmp/cc-test-reporter
|
|
- persist_to_workspace:
|
|
root: tmp
|
|
paths:
|
|
- cc-test-reporter
|
|
|
|
# Database setup
|
|
- run: yarn install --check-files
|
|
- run: bundle exec rake db:create
|
|
- run: bundle exec rake db:schema:load
|
|
|
|
- run:
|
|
name: Bundle audit
|
|
command: bundle exec bundle audit update && bundle exec bundle audit check -v
|
|
|
|
- run:
|
|
name: Rubocop
|
|
command: bundle exec rubocop
|
|
|
|
- run:
|
|
name: eslint
|
|
command: yarn run eslint
|
|
|
|
# Run rails tests
|
|
- run:
|
|
name: Run backend tests
|
|
command: |
|
|
bundle exec rspec $(circleci tests glob "spec/**/*_spec.rb" | circleci tests split --split-by=timings)
|
|
./tmp/cc-test-reporter format-coverage -t simplecov -o tmp/codeclimate.backend.json coverage/backend/.resultset.json
|
|
- persist_to_workspace:
|
|
root: tmp
|
|
paths:
|
|
- codeclimate.backend.json
|
|
|
|
- run:
|
|
name: Run frontend tests
|
|
command: |
|
|
yarn test:coverage
|
|
./tmp/cc-test-reporter format-coverage -t lcov -o tmp/codeclimate.frontend.json buildreports/lcov.info
|
|
- persist_to_workspace:
|
|
root: tmp
|
|
paths:
|
|
- codeclimate.frontend.json
|
|
|
|
# collect reports
|
|
- store_test_results:
|
|
path: /tmp/test-results
|
|
- store_artifacts:
|
|
path: /tmp/test-results
|
|
destination: test-results
|
|
|
|
- run:
|
|
name: Upload coverage results to Code Climate
|
|
command: |
|
|
./tmp/cc-test-reporter sum-coverage tmp/codeclimate.*.json -p 2 -o tmp/codeclimate.total.json
|
|
./tmp/cc-test-reporter upload-coverage -i tmp/codeclimate.total.json |