2022-04-04 11:22:00 +05:30
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
|
|
FactoryBot.define do
|
|
|
|
factory :work_item, traits: [:has_internal_id] do
|
|
|
|
title { generate(:title) }
|
|
|
|
project
|
|
|
|
author { project.creator }
|
|
|
|
updated_by { author }
|
|
|
|
relative_position { RelativePositioning::START_POSITION }
|
|
|
|
issue_type { :issue }
|
|
|
|
association :work_item_type, :default
|
2022-07-23 23:45:48 +05:30
|
|
|
|
2022-08-27 11:52:29 +05:30
|
|
|
trait :confidential do
|
|
|
|
confidential { true }
|
|
|
|
end
|
|
|
|
|
2023-07-09 08:55:56 +05:30
|
|
|
trait :opened do
|
|
|
|
state_id { WorkItem.available_states[:opened] }
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :locked do
|
|
|
|
discussion_locked { true }
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :closed do
|
|
|
|
state_id { WorkItem.available_states[:closed] }
|
|
|
|
closed_at { Time.now }
|
|
|
|
end
|
|
|
|
|
2022-07-23 23:45:48 +05:30
|
|
|
trait :task do
|
|
|
|
issue_type { :task }
|
|
|
|
association :work_item_type, :default, :task
|
|
|
|
end
|
2022-08-13 15:12:31 +05:30
|
|
|
|
|
|
|
trait :incident do
|
|
|
|
issue_type { :incident }
|
|
|
|
association :work_item_type, :default, :incident
|
|
|
|
end
|
2022-10-11 01:57:18 +05:30
|
|
|
|
2023-07-09 08:55:56 +05:30
|
|
|
trait :requirement do
|
|
|
|
issue_type { :requirement }
|
|
|
|
association :work_item_type, :default, :requirement
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :test_case do
|
|
|
|
issue_type { :test_case }
|
|
|
|
association :work_item_type, :default, :test_case
|
|
|
|
end
|
|
|
|
|
2022-10-11 01:57:18 +05:30
|
|
|
trait :last_edited_by_user do
|
|
|
|
association :last_edited_by, factory: :user
|
|
|
|
end
|
2023-03-04 22:38:38 +05:30
|
|
|
|
|
|
|
trait :objective do
|
|
|
|
issue_type { :objective }
|
|
|
|
association :work_item_type, :default, :objective
|
|
|
|
end
|
|
|
|
|
|
|
|
trait :key_result do
|
|
|
|
issue_type { :key_result }
|
|
|
|
association :work_item_type, :default, :key_result
|
|
|
|
end
|
2023-05-27 22:25:52 +05:30
|
|
|
|
|
|
|
before(:create, :build) do |work_item, evaluator|
|
|
|
|
if evaluator.namespace.present?
|
|
|
|
work_item.project = nil
|
|
|
|
work_item.namespace = evaluator.namespace
|
|
|
|
end
|
|
|
|
end
|
2022-04-04 11:22:00 +05:30
|
|
|
end
|
|
|
|
end
|