rosa-build/spec/factories/build_lists.rb

49 lines
1.5 KiB
Ruby
Raw Normal View History

FactoryGirl.define do
factory :build_list do
association :user
#association :project
2014-01-21 04:51:49 +00:00
association :save_to_platform, factory: :platform_with_repos
project { |bl|
pr = FactoryGirl.create(:project_with_commit)
bl.save_to_platform.repositories.first.projects << pr
pr
}
association :arch
2012-05-04 18:12:51 +01:00
build_for_platform {|bl| bl.save_to_platform}
save_to_repository {|bl| bl.save_to_platform.repositories.first}
update_type 'security'
2012-05-04 18:12:51 +01:00
include_repos {|bl| bl.save_to_platform.repositories.map(&:id)}
2013-01-21 17:08:19 +00:00
project_version 'master'
commit_hash {|bl| Grit::Repo.new(bl.project.path).commits.first.id}
end
2014-01-21 04:51:49 +00:00
factory :build_list_with_attaching_project, parent: :build_list do
2012-12-26 17:30:27 +00:00
before(:create) { |bl| attach_project_to_build_list bl }
end
2012-12-26 17:30:27 +00:00
2014-01-21 04:51:49 +00:00
factory :build_list_by_group_project, parent: :build_list do
project { |bl|
pr = FactoryGirl.create(:group_project_with_commit)
bl.save_to_platform.repositories.first.projects << pr
pr
}
end
2014-01-21 04:51:49 +00:00
factory :build_list_package, class: BuildList::Package do
2012-06-18 17:19:09 +01:00
association :build_list
association :project
association :platform
fullname "test_package"
name "test_package"
version "3.1.12"
release 6
2013-01-29 13:17:35 +00:00
sha1 '4faae977e8b12baa267b566d2bec6e6182754ec4'
2012-06-18 17:19:09 +01:00
package_type "source"
end
end
2012-12-26 17:30:27 +00:00
def attach_project_to_build_list(bl)
bl.save_to_platform ||= FactoryGirl.create(:platform_with_repos)
bl.project.repositories << bl.save_to_platform.repositories.first
end