]> nos-oignons.net Git - gestion-adh.git/blob - features/support/env.rb
7779bab6c5ade2538a7b6954344fbffb017e2961
[gestion-adh.git] / features / support / env.rb
1 #-*- coding: utf-8 -*-
2 #
3 # Système de gestion des adhésions de Nos oignons
4 # Copyright © 2013-2014 Nos oignons <contact@nos-oignons.net>
5 #
6 # This program is free software: you can redistribute it and/or modify
7 # it under the terms of the GNU Affero General Public License as
8 # published by the Free Software Foundation, either version 3 of the
9 # License, or (at your option) any later version.
10 #
11 # This program is distributed in the hope that it will be useful,
12 # but WITHOUT ANY WARRANTY; without even the implied warranty of
13 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
14 # GNU Affero General Public License for more details.
15 #
16 # You should have received a copy of the GNU Affero General Public License
17 # along with this program.  If not, see <http://www.gnu.org/licenses/>.
18
19 require 'rubygems'
20 require 'bundler'
21 Bundler.setup
22
23 require 'timecop'
24 require 'tmpdir'
25 require 'aruba/cucumber'
26 require 'safe_yaml'
27 require 'mail'
28
29 SafeYAML::OPTIONS[:default_mode] = :safe
30
31 require 'nos_oignons'
32
33 Before do
34   ENV['GIT_COMMITTER_NAME'] = ENV['GIT_AUTHOR_NAME'] = 'J. Test'
35   ENV['GIT_COMMITTER_EMAIL'] = ENV['GIT_AUTHOR_EMAIL'] = 'test@example.org'
36   @tmpdir = Dir.mktmpdir('gestion-adh')
37   @dirs = [@tmpdir]
38   @aruba_io_wait_seconds = 0.1
39   @aruba_timeout_seconds = 20
40   @orig_wiki_path = ENV['NOS_OIGNONS_BOARD_WIKI_PATH']
41   @orig_reminder_db_path = ENV['NOS_OIGNONS_REMINDER_DB']
42   @orig_receipts_dir = ENV['NOS_OIGNONS_RECEIPTS_DIR']
43   ENV['NOS_OIGNONS_REMINDER_DB'] = File.join(current_dir, 'reminders.yaml')
44   NosOignons::ReminderDb.instance.reload!
45   ENV['NOS_OIGNONS_RECEIPTS_DIR'] = File.join(current_dir, 'receipts')
46   FileUtils.mkdir(ENV['NOS_OIGNONS_RECEIPTS_DIR'])
47   Mail.defaults do
48     delivery_method :test
49   end
50   Mail::TestMailer.deliveries.clear
51 end
52
53 After do
54   ENV['NOS_OIGNONS_REMINDER_DB'] = @orig_reminder_db_path
55   ENV['NOS_OIGNONS_BOARD_WIKI_PATH'] = @orig_wiki_path
56   ENV['NOS_OIGNONS_RECEIPTS_DIR'] = @orig_receipts_dir
57   FileUtils.remove_entry_secure @tmpdir
58 end