summaryrefslogtreecommitdiff
path: root/spec/models
diff options
context:
space:
mode:
authorCarlos Paramio <hola@carlosparamio.com>2013-11-21 13:18:02 +0100
committerCarlos Paramio <hola@carlosparamio.com>2013-11-21 13:18:02 +0100
commit4db87f7c4bd46983c1aad8ed7cc7338ca7bbf72e (patch)
treeed2d258afa5b25bca4e7647a9b5f4ebb4ea6c115 /spec/models
parent4525fc840547358a270671ff107c3e4967679442 (diff)
downloadgitlab-ce-4db87f7c4bd46983c1aad8ed7cc7338ca7bbf72e.tar.gz
Integration with Assembla
Diffstat (limited to 'spec/models')
-rw-r--r--spec/models/assembla_service_spec.rb50
1 files changed, 50 insertions, 0 deletions
diff --git a/spec/models/assembla_service_spec.rb b/spec/models/assembla_service_spec.rb
new file mode 100644
index 00000000000..0b961c81ac1
--- /dev/null
+++ b/spec/models/assembla_service_spec.rb
@@ -0,0 +1,50 @@
+# == Schema Information
+#
+# Table name: services
+#
+# id :integer not null, primary key
+# type :string(255)
+# title :string(255)
+# token :string(255)
+# project_id :integer not null
+# created_at :datetime not null
+# updated_at :datetime not null
+# active :boolean default(FALSE), not null
+# project_url :string(255)
+# subdomain :string(255)
+# room :string(255)
+#
+
+require 'spec_helper'
+
+describe AssemblaService do
+ describe "Associations" do
+ it { should belong_to :project }
+ it { should have_one :service_hook }
+ end
+
+ describe "Execute" do
+ let(:user) { create(:user) }
+ let(:project) { create(:project_with_code) }
+
+ before do
+ @assembla_service = AssemblaService.new
+ @assembla_service.stub(
+ project_id: project.id,
+ project: project,
+ service_hook: true,
+ token: 'verySecret'
+ )
+ @sample_data = GitPushService.new.sample_data(project, user)
+ @api_url = 'https://atlas.assembla.com/spaces/ouposp/github_tool?secret_key=verySecret'
+ WebMock.stub_request(:post, @api_url)
+ end
+
+ it "should call FlowDock API" do
+ @assembla_service.execute(@sample_data)
+ WebMock.should have_requested(:post, @api_url).with(
+ body: /#{@sample_data[:before]}.*#{@sample_data[:after]}.*#{project.path}/
+ ).once
+ end
+ end
+end