]> nos-oignons.net Git - gestion-adh.git/blob - features/step_definitions/git.rb
062181f068eaf1c74149c4c00e26b51299f6a2f1
[gestion-adh.git] / features / step_definitions / git.rb
1 #-*- coding: utf-8 -*-
2
3 require 'fileutils'
4
5 Given /^un clone du Git contenant les adhésions$/ do
6   # Create main repository
7   create_dir 'main'
8   cd 'main'
9   @main_repository_path = current_dir
10   run_simple 'git init --quiet --bare'
11   cd '..'
12
13   # Clone it now
14   run_simple 'git clone --quiet main clone'
15   cd 'clone'
16   create_dir 'Membres'
17   BASE_SUBSCRIPTIONS.each_pair do |number, data|
18     file = subscription_filename_for_id(number)
19     write_file file, render_subscription_file(data)
20     run_simple "git add #{file}"
21   end
22   run_simple 'git commit --quiet -m "Initial data set from fixtures"'
23   run_simple 'git push --quiet origin master'
24 end
25
26 Given /^le « pre-commit hook » correctement configuré$/ do
27   FileUtils.ln_s File.expand_path('../../../bin/pre-commit-hook', __FILE__),
28                  "#{current_dir}/.git/hooks/pre-commit"
29 end
30
31 Given /^le « pre-receive hook » configuré sur le dépôt principal$/ do
32   FileUtils.ln_s File.expand_path('../../../bin/pre-receive-hook', __FILE__),
33                  "#{@main_repository_path}/hooks/pre-receive"
34 end
35
36 When /je fais un `commit` du nouveau fichier$/ do
37   run_simple "git add #{@file}"
38   run_simple "git commit #{@file} -m 'new file'", false # do not fail on error
39 end
40
41 When /^que je pousse la modification$/ do
42   run_simple "git add #{@file}"
43   run_simple "git commit #{@file} -m 'new file'"
44   run_simple 'git push origin master', false # do not fail on error
45 end