[refs #90] some tests and questions
This commit is contained in:
parent
58776a6e9e
commit
fda1a847f5
|
@ -14,7 +14,7 @@ class PullRequest < Issue
|
||||||
end
|
end
|
||||||
|
|
||||||
event :block do
|
event :block do
|
||||||
transition [:open, :ready] => :block
|
transition [:open, :ready] => :blocked
|
||||||
end
|
end
|
||||||
|
|
||||||
event :merging do
|
event :merging do
|
||||||
|
@ -35,7 +35,7 @@ class PullRequest < Issue
|
||||||
end
|
end
|
||||||
|
|
||||||
def check
|
def check
|
||||||
if ret = merge
|
if ret = merge #FIXME already up-to-date...
|
||||||
system("cd #{path} && git reset --hard HEAD^") # remove merge commit
|
system("cd #{path} && git reset --hard HEAD^") # remove merge commit
|
||||||
ready
|
ready
|
||||||
else
|
else
|
||||||
|
@ -76,16 +76,13 @@ class PullRequest < Issue
|
||||||
|
|
||||||
unless git.exist?
|
unless git.exist?
|
||||||
FileUtils.mkdir_p(path)
|
FileUtils.mkdir_p(path)
|
||||||
Dir.chdir(path) do
|
|
||||||
system("git clone --local --no-hardlinks #{project.path} #{path}")
|
system("git clone --local --no-hardlinks #{project.path} #{path}")
|
||||||
end
|
end
|
||||||
else
|
|
||||||
Dir.chdir(path) do
|
Dir.chdir(path) do
|
||||||
[data[:base_branch], data[:head_branch]].each do |branch|
|
[data[:base_branch], data[:head_branch]].each do |branch|
|
||||||
system "git checkout #{branch} && git pull origin #{branch}"
|
system "git checkout #{branch} && git pull origin #{branch}"
|
||||||
end
|
end
|
||||||
end
|
end
|
||||||
end
|
|
||||||
# TODO catch errors
|
# TODO catch errors
|
||||||
end
|
end
|
||||||
|
|
||||||
|
|
101
db/schema.rb
101
db/schema.rb
|
@ -17,14 +17,14 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.integer "user_id", :null => false
|
t.integer "user_id", :null => false
|
||||||
t.string "kind"
|
t.string "kind"
|
||||||
t.text "data"
|
t.text "data"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "arches", :force => true do |t|
|
create_table "arches", :force => true do |t|
|
||||||
t.string "name", :null => false
|
t.string "name", :null => false
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "arches", ["name"], :name => "index_arches_on_name", :unique => true
|
add_index "arches", ["name"], :name => "index_arches_on_name", :unique => true
|
||||||
|
@ -33,8 +33,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
t.string "provider"
|
t.string "provider"
|
||||||
t.string "uid"
|
t.string "uid"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "authentications", ["provider", "uid"], :name => "index_authentications_on_provider_and_uid", :unique => true
|
add_index "authentications", ["provider", "uid"], :name => "index_authentications_on_provider_and_uid", :unique => true
|
||||||
|
@ -45,8 +45,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.integer "level"
|
t.integer "level"
|
||||||
t.integer "status"
|
t.integer "status"
|
||||||
t.integer "build_list_id"
|
t.integer "build_list_id"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.string "version"
|
t.string "version"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -60,8 +60,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.integer "project_id"
|
t.integer "project_id"
|
||||||
t.integer "arch_id"
|
t.integer "arch_id"
|
||||||
t.datetime "notified_at"
|
t.datetime "notified_at"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.boolean "is_circle", :default => false
|
t.boolean "is_circle", :default => false
|
||||||
t.text "additional_repos"
|
t.text "additional_repos"
|
||||||
t.string "name"
|
t.string "name"
|
||||||
|
@ -87,8 +87,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.string "commentable_type"
|
t.string "commentable_type"
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
t.text "body"
|
t.text "body"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.decimal "commentable_id", :precision => 50, :scale => 0
|
t.decimal "commentable_id", :precision => 50, :scale => 0
|
||||||
t.integer "project_id"
|
t.integer "project_id"
|
||||||
end
|
end
|
||||||
|
@ -102,8 +102,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.datetime "locked_at"
|
t.datetime "locked_at"
|
||||||
t.datetime "failed_at"
|
t.datetime "failed_at"
|
||||||
t.string "locked_by"
|
t.string "locked_by"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.string "queue", :default => "default"
|
t.string "queue", :default => "default"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -121,14 +121,14 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.string "controller"
|
t.string "controller"
|
||||||
t.string "action"
|
t.string "action"
|
||||||
t.text "message"
|
t.text "message"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "groups", :force => true do |t|
|
create_table "groups", :force => true do |t|
|
||||||
t.integer "owner_id"
|
t.integer "owner_id"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.string "uname"
|
t.string "uname"
|
||||||
t.integer "own_projects_count", :default => 0, :null => false
|
t.integer "own_projects_count", :default => 0, :null => false
|
||||||
t.text "description"
|
t.text "description"
|
||||||
|
@ -141,11 +141,14 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.string "title"
|
t.string "title"
|
||||||
t.text "body"
|
t.text "body"
|
||||||
t.string "status", :default => "open"
|
t.string "status", :default => "open"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
t.datetime "closed_at"
|
t.datetime "closed_at"
|
||||||
t.integer "closed_by"
|
t.integer "closed_by"
|
||||||
|
t.string "type"
|
||||||
|
t.string "state"
|
||||||
|
t.text "data", :default => "0", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "issues", ["project_id", "serial_id"], :name => "index_issues_on_project_id_and_serial_id", :unique => true
|
add_index "issues", ["project_id", "serial_id"], :name => "index_issues_on_project_id_and_serial_id", :unique => true
|
||||||
|
@ -173,8 +176,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.string "description"
|
t.string "description"
|
||||||
t.string "name", :null => false
|
t.string "name", :null => false
|
||||||
t.integer "parent_platform_id"
|
t.integer "parent_platform_id"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.boolean "released", :default => false, :null => false
|
t.boolean "released", :default => false, :null => false
|
||||||
t.integer "owner_id"
|
t.integer "owner_id"
|
||||||
t.string "owner_type"
|
t.string "owner_type"
|
||||||
|
@ -189,8 +192,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.integer "platform_id"
|
t.integer "platform_id"
|
||||||
t.string "login"
|
t.string "login"
|
||||||
t.string "password"
|
t.string "password"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -198,8 +201,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.integer "product_id"
|
t.integer "product_id"
|
||||||
t.integer "status", :default => 2, :null => false
|
t.integer "status", :default => 2, :null => false
|
||||||
t.datetime "notified_at"
|
t.datetime "notified_at"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
add_index "product_build_lists", ["product_id"], :name => "index_product_build_lists_on_product_id"
|
add_index "product_build_lists", ["product_id"], :name => "index_product_build_lists_on_product_id"
|
||||||
|
@ -207,8 +210,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
create_table "products", :force => true do |t|
|
create_table "products", :force => true do |t|
|
||||||
t.string "name", :null => false
|
t.string "name", :null => false
|
||||||
t.integer "platform_id", :null => false
|
t.integer "platform_id", :null => false
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.text "build_script"
|
t.text "build_script"
|
||||||
t.text "counter"
|
t.text "counter"
|
||||||
t.text "ks"
|
t.text "ks"
|
||||||
|
@ -227,8 +230,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.string "version"
|
t.string "version"
|
||||||
t.datetime "file_mtime"
|
t.datetime "file_mtime"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.integer "platform_id"
|
t.integer "platform_id"
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -237,14 +240,14 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
create_table "project_to_repositories", :force => true do |t|
|
create_table "project_to_repositories", :force => true do |t|
|
||||||
t.integer "project_id"
|
t.integer "project_id"
|
||||||
t.integer "repository_id"
|
t.integer "repository_id"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "projects", :force => true do |t|
|
create_table "projects", :force => true do |t|
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.integer "owner_id"
|
t.integer "owner_id"
|
||||||
t.string "owner_type"
|
t.string "owner_type"
|
||||||
t.string "visibility", :default => "open"
|
t.string "visibility", :default => "open"
|
||||||
|
@ -262,6 +265,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.integer "build_count", :default => 0, :null => false
|
t.integer "build_count", :default => 0, :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
add_index "projects", ["owner_id"], :name => "index_projects_on_name_and_owner_id_and_owner_type", :unique => true, :case_sensitive => false
|
||||||
|
|
||||||
create_table "register_requests", :force => true do |t|
|
create_table "register_requests", :force => true do |t|
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.string "email"
|
t.string "email"
|
||||||
|
@ -282,16 +287,16 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.string "object_type"
|
t.string "object_type"
|
||||||
t.integer "target_id"
|
t.integer "target_id"
|
||||||
t.string "target_type"
|
t.string "target_type"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.string "role"
|
t.string "role"
|
||||||
end
|
end
|
||||||
|
|
||||||
create_table "repositories", :force => true do |t|
|
create_table "repositories", :force => true do |t|
|
||||||
t.string "description", :null => false
|
t.string "description", :null => false
|
||||||
t.integer "platform_id", :null => false
|
t.integer "platform_id", :null => false
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.string "name", :null => false
|
t.string "name", :null => false
|
||||||
end
|
end
|
||||||
|
|
||||||
|
@ -302,8 +307,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
t.boolean "new_comment_reply", :default => true
|
t.boolean "new_comment_reply", :default => true
|
||||||
t.boolean "new_issue", :default => true
|
t.boolean "new_issue", :default => true
|
||||||
t.boolean "issue_assign", :default => true
|
t.boolean "issue_assign", :default => true
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.boolean "new_comment_commit_owner", :default => true
|
t.boolean "new_comment_commit_owner", :default => true
|
||||||
t.boolean "new_comment_commit_repo_owner", :default => true
|
t.boolean "new_comment_commit_repo_owner", :default => true
|
||||||
t.boolean "new_comment_commit_commentor", :default => true
|
t.boolean "new_comment_commit_commentor", :default => true
|
||||||
|
@ -312,8 +317,8 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
create_table "subscribes", :force => true do |t|
|
create_table "subscribes", :force => true do |t|
|
||||||
t.string "subscribeable_type"
|
t.string "subscribeable_type"
|
||||||
t.integer "user_id"
|
t.integer "user_id"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
t.boolean "status", :default => true
|
t.boolean "status", :default => true
|
||||||
t.integer "project_id"
|
t.integer "project_id"
|
||||||
t.decimal "subscribeable_id", :precision => 50, :scale => 0
|
t.decimal "subscribeable_id", :precision => 50, :scale => 0
|
||||||
|
@ -322,20 +327,20 @@ ActiveRecord::Schema.define(:version => 20120418100619) do
|
||||||
create_table "users", :force => true do |t|
|
create_table "users", :force => true do |t|
|
||||||
t.string "name"
|
t.string "name"
|
||||||
t.string "email", :default => "", :null => false
|
t.string "email", :default => "", :null => false
|
||||||
t.string "encrypted_password", :limit => 128, :default => "", :null => false
|
t.string "encrypted_password", :default => "", :null => false
|
||||||
t.string "password_salt", :default => "", :null => false
|
|
||||||
t.string "reset_password_token"
|
t.string "reset_password_token"
|
||||||
|
t.datetime "reset_password_sent_at"
|
||||||
t.datetime "remember_created_at"
|
t.datetime "remember_created_at"
|
||||||
t.datetime "created_at"
|
t.datetime "created_at", :null => false
|
||||||
t.datetime "updated_at"
|
t.datetime "updated_at", :null => false
|
||||||
|
t.text "ssh_key"
|
||||||
t.string "uname"
|
t.string "uname"
|
||||||
t.string "role"
|
t.string "role"
|
||||||
t.string "language", :default => "en"
|
t.string "language", :default => "en"
|
||||||
|
t.integer "own_projects_count", :default => 0, :null => false
|
||||||
t.string "confirmation_token"
|
t.string "confirmation_token"
|
||||||
t.datetime "confirmed_at"
|
t.datetime "confirmed_at"
|
||||||
t.datetime "confirmation_sent_at"
|
t.datetime "confirmation_sent_at"
|
||||||
t.integer "own_projects_count", :default => 0, :null => false
|
|
||||||
t.datetime "reset_password_sent_at"
|
|
||||||
t.text "professional_experience"
|
t.text "professional_experience"
|
||||||
t.string "site"
|
t.string "site"
|
||||||
t.string "company"
|
t.string "company"
|
||||||
|
|
|
@ -0,0 +1,11 @@
|
||||||
|
namespace :db do
|
||||||
|
desc "Drop, create, migrate then seed the database"
|
||||||
|
task :reset_db => :environment do
|
||||||
|
Rake::Task['db:drop'].invoke
|
||||||
|
Rake::Task['db:create'].invoke
|
||||||
|
Rake::Task['db:migrate'].invoke
|
||||||
|
Rake::Task['db:fixtures:load'].invoke
|
||||||
|
Rake::Task['db:seed'].invoke
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
|
@ -298,7 +298,8 @@ describe Comment do
|
||||||
|
|
||||||
context 'for committer' do
|
context 'for committer' do
|
||||||
it 'should send an e-mail' do
|
it 'should send an e-mail' do
|
||||||
@simple.update_attribute :email, 'code@tpope.net'
|
@simple.subscribes.destroy_all
|
||||||
|
@simple.update_attribute :email, 'test@test.test'
|
||||||
comment = create_comment(@user)
|
comment = create_comment(@user)
|
||||||
ActionMailer::Base.deliveries.count.should == 1
|
ActionMailer::Base.deliveries.count.should == 1
|
||||||
ActionMailer::Base.deliveries.last.to.include?(@simple.email).should == true
|
ActionMailer::Base.deliveries.last.to.include?(@simple.email).should == true
|
||||||
|
@ -306,21 +307,22 @@ describe Comment do
|
||||||
|
|
||||||
it 'should send a one e-mail when subscribed to commit' do
|
it 'should send a one e-mail when subscribed to commit' do
|
||||||
Subscribe.subscribe_to_commit @subscribe_params.merge(:user_id => @simple.id)
|
Subscribe.subscribe_to_commit @subscribe_params.merge(:user_id => @simple.id)
|
||||||
@simple.update_attribute :email, 'code@tpope.net'
|
@simple.update_attribute :email, 'test@test.test'
|
||||||
comment = create_comment(@user)
|
comment = create_comment(@user)
|
||||||
ActionMailer::Base.deliveries.count.should == 1
|
ActionMailer::Base.deliveries.count.should == 1
|
||||||
ActionMailer::Base.deliveries.last.to.include?(@simple.email).should == true
|
ActionMailer::Base.deliveries.last.to.include?(@simple.email).should == true
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should not send an e-mail for own comment' do
|
it 'should not send an e-mail for own comment' do
|
||||||
@simple.update_attribute :email, 'code@tpope.net'
|
@simple.subscribes.destroy_all
|
||||||
|
@simple.update_attribute :email, 'test@test.test'
|
||||||
comment = create_comment(@simple)
|
comment = create_comment(@simple)
|
||||||
ActionMailer::Base.deliveries.count.should == 0
|
ActionMailer::Base.deliveries.count.should == 0
|
||||||
end
|
end
|
||||||
|
|
||||||
it 'should not send an e-mail if global notify off' do
|
it 'should not send an e-mail if global notify off' do
|
||||||
@project.owner.notifier.update_attribute :can_notify, false
|
@project.owner.notifier.update_attribute :can_notify, false
|
||||||
@simple.update_attribute :email, 'code@tpope.net'
|
@simple.update_attribute :email, 'test@test.test'
|
||||||
@simple.notifier.update_attribute :can_notify, false
|
@simple.notifier.update_attribute :can_notify, false
|
||||||
comment = create_comment(@user)
|
comment = create_comment(@user)
|
||||||
ActionMailer::Base.deliveries.count.should == 0
|
ActionMailer::Base.deliveries.count.should == 0
|
||||||
|
@ -329,7 +331,7 @@ describe Comment do
|
||||||
it 'should not send an e-mail if notify for my commits off' do
|
it 'should not send an e-mail if notify for my commits off' do
|
||||||
Comment.destroy_all
|
Comment.destroy_all
|
||||||
@simple.notifier.update_attribute :new_comment_commit_owner, false
|
@simple.notifier.update_attribute :new_comment_commit_owner, false
|
||||||
@simple.update_attribute :email, 'code@tpope.net'
|
@simple.update_attribute :email, 'test@test.test'
|
||||||
comment = create_comment(@user)
|
comment = create_comment(@user)
|
||||||
ActionMailer::Base.deliveries.count.should == 0
|
ActionMailer::Base.deliveries.count.should == 0
|
||||||
end
|
end
|
||||||
|
|
|
@ -1,20 +1,48 @@
|
||||||
# -*- encoding : utf-8 -*-
|
# -*- encoding : utf-8 -*-
|
||||||
require 'spec_helper'
|
require 'spec_helper'
|
||||||
|
|
||||||
|
def set_data_for_pull
|
||||||
|
@ability = Ability.new(@user)
|
||||||
|
|
||||||
|
@project = FactoryGirl.create(:project, :owner => @user)
|
||||||
|
%x(cp -Rf #{Rails.root}/spec/tests.git/* #{@project.path}) # maybe FIXME ?
|
||||||
|
|
||||||
|
@clone_path = File.join(APP_CONFIG['root_path'], 'repo_clone', @project.id.to_s)
|
||||||
|
FileUtils.mkdir_p(@clone_path)
|
||||||
|
|
||||||
|
|
||||||
|
any_instance_of(Project, :versions => ['v1.0', 'v2.0'])
|
||||||
|
end
|
||||||
|
|
||||||
describe PullRequest do
|
describe PullRequest do
|
||||||
|
context 'for owner user' do
|
||||||
|
before (:all) do
|
||||||
|
stub_rsync_methods
|
||||||
|
@user = FactoryGirl.create(:user)
|
||||||
|
set_data_for_pull
|
||||||
|
@pull = @project.pull_requests.new(:title => 'test', :body => 'testing')
|
||||||
|
@pull.user = @user
|
||||||
|
@pull.data = {:base_branch => 'master', :head_branch => 'non_conflicts'}
|
||||||
|
@pull.save
|
||||||
|
end
|
||||||
|
|
||||||
#~ context 'when create with same owner that platform' do
|
it 'master should can be merged with non_conflicts branch' do
|
||||||
#~ before (:each) do
|
@pull.check
|
||||||
#~ stub_rsync_methods
|
@pull.state.should == 'ready'
|
||||||
#~ @platform = FactoryGirl.create(:platform)
|
end
|
||||||
#~ @params = {:name => 'tst_platform', :description => 'test platform'}
|
|
||||||
#~ end
|
|
||||||
|
|
||||||
#~ it 'it should increase Repository.count by 1' do
|
it 'master should not be merged with conflicts branch' do
|
||||||
#~ rep = Repository.create(@params) {|r| r.platform = @platform}
|
@pull.data[:head_branch] = 'conflicts'
|
||||||
#~ @platform.repositories.count.should eql(1)
|
@pull.check
|
||||||
#~ end
|
@pull.state.should == 'blocked'
|
||||||
#~ end
|
end
|
||||||
|
|
||||||
|
it 'should not be merged when already up-to-date branches' do
|
||||||
|
@pull.data[:head_branch] = 'master'
|
||||||
|
@pull.check
|
||||||
|
@pull.state.should == 'blocked' # FIXME
|
||||||
|
end
|
||||||
|
end
|
||||||
|
|
||||||
before(:all) do
|
before(:all) do
|
||||||
stub_rsync_methods
|
stub_rsync_methods
|
||||||
|
|
|
@ -1 +1 @@
|
||||||
bdc8b580b5b583aeb43efb19aac2ab8ce5566dff
|
ref: refs/heads/master
|
||||||
|
|
|
@ -1,11 +1,4 @@
|
||||||
[core]
|
[core]
|
||||||
repositoryformatversion = 0
|
repositoryformatversion = 0
|
||||||
filemode = true
|
filemode = true
|
||||||
bare = false
|
bare = true
|
||||||
logallrefupdates = true
|
|
||||||
[remote "origin"]
|
|
||||||
fetch = +refs/heads/*:refs/remotes/origin/*
|
|
||||||
url = git://github.com/tpope/vim-ragtag.git
|
|
||||||
[branch "master"]
|
|
||||||
remote = origin
|
|
||||||
merge = refs/heads/master
|
|
||||||
|
|
Binary file not shown.
|
@ -0,0 +1,5 @@
|
||||||
|
5dc2326fab1022c9c35b27d09c62a73216fdff5e refs/heads/conficts
|
||||||
|
45d6bc11f4de8546ccbef16fdd3acf48fe0b411c refs/heads/conflicts
|
||||||
|
2babca2e12fe8e5f0ea95e8547a9ce20c322cb79 refs/heads/master
|
||||||
|
5c2312c4054bae9c1419dbec8633eda29f7c0731 refs/heads/non_conflicts
|
||||||
|
00a2f9225dcc5807b9eb46f1bcfc56ee939e595f refs/heads/not_conflicts
|
|
@ -1,2 +0,0 @@
|
||||||
0000000000000000000000000000000000000000 bdc8b580b5b583aeb43efb19aac2ab8ce5566dff Alexander <avm@avm-work.(none)> 1325695134 +0600 clone: from git://github.com/tpope/vim-ragtag.git
|
|
||||||
bdc8b580b5b583aeb43efb19aac2ab8ce5566dff bdc8b580b5b583aeb43efb19aac2ab8ce5566dff Alexander <avm@avm-work.(none)> 1325695134 +0600 checkout: moving from master to bdc8b580b5b583aeb43efb19aac2ab8ce5566dff
|
|
|
@ -1 +0,0 @@
|
||||||
0000000000000000000000000000000000000000 bdc8b580b5b583aeb43efb19aac2ab8ce5566dff Alexander <avm@avm-work.(none)> 1325695134 +0600 clone: from git://github.com/tpope/vim-ragtag.git
|
|
|
@ -0,0 +1,2 @@
|
||||||
|
x<01>خM
|
||||||
|
آ0<10>aط9إٌ<05>L2<4C><11>2I&ظE[iك<69>m=<3D><>gّء_]هy@<40><><EFBFBD><EFBFBD><EFBFBD>-\Z<>E<EFBFBD>+<2B>و<EFBFBD>3C$ٌحني+:<3A><>M<EFBFBD>ات,<14>('ق<>)<29><>=<3D>ظ|!lD<6C><44>
hل3^ًC<><01>سهةٍلض9<D8B6>\Ftpإ<70>hيُضذ؟3-0ث~ن\>y
|
|
@ -0,0 +1,2 @@
|
||||||
|
P pack-09ad35f874bea18d5f133a59210e4f80a1e81c17.pack
|
||||||
|
|
Binary file not shown.
Binary file not shown.
Binary file not shown.
Binary file not shown.
|
@ -1,5 +1,3 @@
|
||||||
# pack-refs with: peeled
|
45d6bc11f4de8546ccbef16fdd3acf48fe0b411c refs/heads/conflicts
|
||||||
30aefeac002db3ec08ff278bd76290645469611e refs/tags/v2.0
|
2babca2e12fe8e5f0ea95e8547a9ce20c322cb79 refs/heads/master
|
||||||
^644c62ad7bc7d9a4a5f19f5e8c41ef910782178b
|
5c2312c4054bae9c1419dbec8633eda29f7c0731 refs/heads/non_conflicts
|
||||||
235e4467107467feacc50553bbeda15e9bf99f57 refs/tags/v1.11
|
|
||||||
bdc8b580b5b583aeb43efb19aac2ab8ce5566dff refs/remotes/origin/master
|
|
||||||
|
|
|
@ -1 +0,0 @@
|
||||||
bdc8b580b5b583aeb43efb19aac2ab8ce5566dff
|
|
|
@ -1 +0,0 @@
|
||||||
ref: refs/remotes/origin/master
|
|
Loading…
Reference in New Issue