Non-interactive AWS install by running a single script.
Merge branch 'master' into non-interactive-aws-install Conflicts: doc/installation.md Fix merge mess in installation.md
This commit is contained in:
parent
eae41ad1df
commit
b80dd3d242
215 changed files with 3829 additions and 3348 deletions
48
spec/observers/activity_observer_spec.rb
Normal file
48
spec/observers/activity_observer_spec.rb
Normal file
|
@ -0,0 +1,48 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe ActivityObserver do
|
||||
let(:project) { Factory :project }
|
||||
|
||||
def self.it_should_be_valid_event
|
||||
it { @event.should_not be_nil }
|
||||
it { @event.project.should == project }
|
||||
end
|
||||
|
||||
describe "Merge Request created" do
|
||||
before do
|
||||
MergeRequest.observers.enable :activity_observer do
|
||||
@merge_request = Factory :merge_request, project: project
|
||||
@event = Event.last
|
||||
end
|
||||
end
|
||||
|
||||
it_should_be_valid_event
|
||||
it { @event.action.should == Event::Created }
|
||||
it { @event.target.should == @merge_request }
|
||||
end
|
||||
|
||||
describe "Issue created" do
|
||||
before do
|
||||
Issue.observers.enable :activity_observer do
|
||||
@issue = Factory :issue, project: project
|
||||
@event = Event.last
|
||||
end
|
||||
end
|
||||
|
||||
it_should_be_valid_event
|
||||
it { @event.action.should == Event::Created }
|
||||
it { @event.target.should == @issue }
|
||||
end
|
||||
|
||||
#describe "Issue commented" do
|
||||
#before do
|
||||
#@issue = Factory :issue, project: project
|
||||
#@note = Factory :note, noteable: @issue, project: project
|
||||
#@event = Event.last
|
||||
#end
|
||||
|
||||
#it_should_be_valid_event
|
||||
#it { @event.action.should == Event::Commented }
|
||||
#it { @event.target.should == @note }
|
||||
#end
|
||||
end
|
199
spec/observers/issue_observer_spec.rb
Normal file
199
spec/observers/issue_observer_spec.rb
Normal file
|
@ -0,0 +1,199 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe IssueObserver do
|
||||
let(:some_user) { double(:user, id: 1) }
|
||||
let(:assignee) { double(:user, id: 2) }
|
||||
let(:author) { double(:user, id: 3) }
|
||||
let(:issue) { double(:issue, id: 42, assignee: assignee, author: author) }
|
||||
|
||||
before(:each) { subject.stub(:current_user).and_return(some_user) }
|
||||
|
||||
subject { IssueObserver.instance }
|
||||
|
||||
describe '#after_create' do
|
||||
|
||||
it 'is called when an issue is created' do
|
||||
subject.should_receive(:after_create)
|
||||
|
||||
Issue.observers.enable :issue_observer do
|
||||
Factory.create(:issue, project: Factory.create(:project))
|
||||
end
|
||||
end
|
||||
|
||||
it 'sends an email to the assignee' do
|
||||
Notify.should_receive(:new_issue_email).with(issue.id).
|
||||
and_return(double(deliver: true))
|
||||
|
||||
subject.after_create(issue)
|
||||
end
|
||||
|
||||
it 'does not send an email to the assignee if assignee created the issue' do
|
||||
subject.stub(:current_user).and_return(assignee)
|
||||
Notify.should_not_receive(:new_issue_email)
|
||||
|
||||
subject.after_create(issue)
|
||||
end
|
||||
end
|
||||
|
||||
context '#after_update' do
|
||||
before(:each) do
|
||||
issue.stub(:is_being_reassigned?).and_return(false)
|
||||
issue.stub(:is_being_closed?).and_return(false)
|
||||
issue.stub(:is_being_reopened?).and_return(false)
|
||||
end
|
||||
|
||||
it 'is called when an issue is changed' do
|
||||
changed = Factory.create(:issue, project: Factory.create(:project))
|
||||
subject.should_receive(:after_update)
|
||||
|
||||
Issue.observers.enable :issue_observer do
|
||||
changed.description = 'I changed'
|
||||
changed.save
|
||||
end
|
||||
end
|
||||
|
||||
context 'a reassigned email' do
|
||||
it 'is sent if the issue is being reassigned' do
|
||||
issue.should_receive(:is_being_reassigned?).and_return(true)
|
||||
subject.should_receive(:send_reassigned_email).with(issue)
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'is not sent if the issue is not being reassigned' do
|
||||
issue.should_receive(:is_being_reassigned?).and_return(false)
|
||||
subject.should_not_receive(:send_reassigned_email)
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
end
|
||||
|
||||
context 'a status "closed"' do
|
||||
it 'note is created if the issue is being closed' do
|
||||
issue.should_receive(:is_being_closed?).and_return(true)
|
||||
Note.should_receive(:create_status_change_note).with(issue, some_user, 'closed')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'note is not created if the issue is not being closed' do
|
||||
issue.should_receive(:is_being_closed?).and_return(false)
|
||||
Note.should_not_receive(:create_status_change_note).with(issue, some_user, 'closed')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'notification is delivered if the issue being closed' do
|
||||
issue.stub(:is_being_closed?).and_return(true)
|
||||
Notify.should_receive(:issue_status_changed_email).twice
|
||||
Note.should_receive(:create_status_change_note).with(issue, some_user, 'closed')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'notification is not delivered if the issue not being closed' do
|
||||
issue.stub(:is_being_closed?).and_return(false)
|
||||
Notify.should_not_receive(:issue_status_changed_email)
|
||||
Note.should_not_receive(:create_status_change_note).with(issue, some_user, 'closed')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'notification is delivered only to author if the issue being closed' do
|
||||
issue_without_assignee = double(:issue, id: 42, author: author, assignee: nil)
|
||||
issue_without_assignee.stub(:is_being_reassigned?).and_return(false)
|
||||
issue_without_assignee.stub(:is_being_closed?).and_return(true)
|
||||
issue_without_assignee.stub(:is_being_reopened?).and_return(false)
|
||||
Notify.should_receive(:issue_status_changed_email).once
|
||||
Note.should_receive(:create_status_change_note).with(issue_without_assignee, some_user, 'closed')
|
||||
|
||||
subject.after_update(issue_without_assignee)
|
||||
end
|
||||
end
|
||||
|
||||
context 'a status "reopened"' do
|
||||
it 'note is created if the issue is being reopened' do
|
||||
issue.should_receive(:is_being_reopened?).and_return(true)
|
||||
Note.should_receive(:create_status_change_note).with(issue, some_user, 'reopened')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'note is not created if the issue is not being reopened' do
|
||||
issue.should_receive(:is_being_reopened?).and_return(false)
|
||||
Note.should_not_receive(:create_status_change_note).with(issue, some_user, 'reopened')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'notification is delivered if the issue being reopened' do
|
||||
issue.stub(:is_being_reopened?).and_return(true)
|
||||
Notify.should_receive(:issue_status_changed_email).twice
|
||||
Note.should_receive(:create_status_change_note).with(issue, some_user, 'reopened')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'notification is not delivered if the issue not being reopened' do
|
||||
issue.stub(:is_being_reopened?).and_return(false)
|
||||
Notify.should_not_receive(:issue_status_changed_email)
|
||||
Note.should_not_receive(:create_status_change_note).with(issue, some_user, 'reopened')
|
||||
|
||||
subject.after_update(issue)
|
||||
end
|
||||
|
||||
it 'notification is delivered only to author if the issue being reopened' do
|
||||
issue_without_assignee = double(:issue, id: 42, author: author, assignee: nil)
|
||||
issue_without_assignee.stub(:is_being_reassigned?).and_return(false)
|
||||
issue_without_assignee.stub(:is_being_closed?).and_return(false)
|
||||
issue_without_assignee.stub(:is_being_reopened?).and_return(true)
|
||||
Notify.should_receive(:issue_status_changed_email).once
|
||||
Note.should_receive(:create_status_change_note).with(issue_without_assignee, some_user, 'reopened')
|
||||
|
||||
subject.after_update(issue_without_assignee)
|
||||
end
|
||||
end
|
||||
end
|
||||
|
||||
describe '#send_reassigned_email' do
|
||||
let(:previous_assignee) { double(:user, id: 3) }
|
||||
|
||||
before(:each) do
|
||||
issue.stub(:assignee_id).and_return(assignee.id)
|
||||
issue.stub(:assignee_id_was).and_return(previous_assignee.id)
|
||||
end
|
||||
|
||||
def it_sends_a_reassigned_email_to(recipient)
|
||||
Notify.should_receive(:reassigned_issue_email).with(recipient, issue.id, previous_assignee.id).
|
||||
and_return(double(deliver: true))
|
||||
end
|
||||
|
||||
def it_does_not_send_a_reassigned_email_to(recipient)
|
||||
Notify.should_not_receive(:reassigned_issue_email).with(recipient, issue.id, previous_assignee.id)
|
||||
end
|
||||
|
||||
it 'sends a reassigned email to the previous and current assignees' do
|
||||
it_sends_a_reassigned_email_to assignee.id
|
||||
it_sends_a_reassigned_email_to previous_assignee.id
|
||||
|
||||
subject.send(:send_reassigned_email, issue)
|
||||
end
|
||||
|
||||
context 'does not send an email to the user who made the reassignment' do
|
||||
it 'if the user is the assignee' do
|
||||
subject.stub(:current_user).and_return(assignee)
|
||||
it_sends_a_reassigned_email_to previous_assignee.id
|
||||
it_does_not_send_a_reassigned_email_to assignee.id
|
||||
|
||||
subject.send(:send_reassigned_email, issue)
|
||||
end
|
||||
it 'if the user is the previous assignee' do
|
||||
subject.stub(:current_user).and_return(previous_assignee)
|
||||
it_sends_a_reassigned_email_to assignee.id
|
||||
it_does_not_send_a_reassigned_email_to previous_assignee.id
|
||||
|
||||
subject.send(:send_reassigned_email, issue)
|
||||
end
|
||||
end
|
||||
end
|
||||
end
|
34
spec/observers/key_observer_spec.rb
Normal file
34
spec/observers/key_observer_spec.rb
Normal file
|
@ -0,0 +1,34 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe KeyObserver do
|
||||
before do
|
||||
@key = double('Key',
|
||||
identifier: 'admin_654654',
|
||||
key: '== a vaild ssh key',
|
||||
projects: [],
|
||||
is_deploy_key: false
|
||||
)
|
||||
|
||||
@gitolite = double('Gitlab::Gitolite',
|
||||
set_key: true,
|
||||
remove_key: true
|
||||
)
|
||||
|
||||
@observer = KeyObserver.instance
|
||||
@observer.stub(:git_host => @gitolite)
|
||||
end
|
||||
|
||||
context :after_save do
|
||||
it do
|
||||
@gitolite.should_receive(:set_key).with(@key.identifier, @key.key, @key.projects)
|
||||
@observer.after_save(@key)
|
||||
end
|
||||
end
|
||||
|
||||
context :after_destroy do
|
||||
it do
|
||||
@gitolite.should_receive(:remove_key).with(@key.identifier, @key.projects)
|
||||
@observer.after_destroy(@key)
|
||||
end
|
||||
end
|
||||
end
|
26
spec/observers/user_observer_spec.rb
Normal file
26
spec/observers/user_observer_spec.rb
Normal file
|
@ -0,0 +1,26 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe UserObserver do
|
||||
subject { UserObserver.instance }
|
||||
|
||||
it 'calls #after_create when new users are created' do
|
||||
new_user = Factory.new(:user)
|
||||
subject.should_receive(:after_create).with(new_user)
|
||||
|
||||
User.observers.enable :user_observer do
|
||||
new_user.save
|
||||
end
|
||||
end
|
||||
|
||||
context 'when a new user is created' do
|
||||
let(:user) { double(:user, id: 42, password: 'P@ssword!') }
|
||||
let(:notification) { double :notification }
|
||||
|
||||
it 'sends an email' do
|
||||
notification.should_receive(:deliver)
|
||||
Notify.should_receive(:new_user_email).with(user.id, user.password).and_return(notification)
|
||||
|
||||
subject.after_create(user)
|
||||
end
|
||||
end
|
||||
end
|
40
spec/observers/users_project_observer_spec.rb
Normal file
40
spec/observers/users_project_observer_spec.rb
Normal file
|
@ -0,0 +1,40 @@
|
|||
require 'spec_helper'
|
||||
|
||||
describe UsersProjectObserver do
|
||||
let(:user) { Factory.create :user }
|
||||
let(:project) { Factory.create(:project,
|
||||
code: "Fuu",
|
||||
path: "Fuu" ) }
|
||||
let(:users_project) { Factory.create(:users_project,
|
||||
project: project,
|
||||
user: user )}
|
||||
subject { UsersProjectObserver.instance }
|
||||
|
||||
describe "#after_create" do
|
||||
it "should called when UsersProject created" do
|
||||
subject.should_receive(:after_create)
|
||||
UsersProject.observers.enable :users_project_observer do
|
||||
Factory.create(:users_project,
|
||||
project: project,
|
||||
user: user)
|
||||
end
|
||||
end
|
||||
it "should send email to user" do
|
||||
Notify.should_receive(:project_access_granted_email).with(users_project.id).and_return(double(deliver: true))
|
||||
subject.after_create(users_project)
|
||||
end
|
||||
end
|
||||
|
||||
describe "#after_update" do
|
||||
it "should called when UsersProject updated" do
|
||||
subject.should_receive(:after_update)
|
||||
UsersProject.observers.enable :users_project_observer do
|
||||
users_project.update_attribute(:project_access, 40)
|
||||
end
|
||||
end
|
||||
it "should send email to user" do
|
||||
Notify.should_receive(:project_access_granted_email).with(users_project.id).and_return(double(deliver: true))
|
||||
subject.after_update(users_project)
|
||||
end
|
||||
end
|
||||
end
|
Loading…
Add table
Add a link
Reference in a new issue