Commit b1aa104b authored by Sanad Liaquat's avatar Sanad Liaquat Committed by Ramya Authappan

Create many files on master and

move create_many_issues out of threaded run
parent 9c426ff6
...@@ -33,9 +33,9 @@ module QA ...@@ -33,9 +33,9 @@ module QA
create_many_branches create_many_branches
create_many_new_files create_many_new_files
create_mr_with_many_commits create_mr_with_many_commits
create_many_issues
methods_arr = [ methods_arr = [
method(:create_many_issues),
method(:create_many_labels), method(:create_many_labels),
method(:create_many_todos), method(:create_many_todos),
method(:create_many_merge_requests), method(:create_many_merge_requests),
...@@ -104,6 +104,7 @@ module QA ...@@ -104,6 +104,7 @@ module QA
def create_many_new_files def create_many_new_files
create_a_new_file_api_req("hello.txt", "master", "#{@group_name}%2F#{@project_name}", "hello", "my new content") create_a_new_file_api_req("hello.txt", "master", "#{@group_name}%2F#{@project_name}", "hello", "my new content")
30.times do |i| 30.times do |i|
create_a_new_file_api_req("hello#{i}.txt", "master", "#{@group_name}%2F#{@project_name}", "hello", "my new content")
create_a_new_file_api_req("hello#{i}.txt", "branch#{i}", "#{@group_name}%2F#{@project_name}", "hello", "my new content") create_a_new_file_api_req("hello#{i}.txt", "branch#{i}", "#{@group_name}%2F#{@project_name}", "hello", "my new content")
end end
...@@ -137,7 +138,7 @@ module QA ...@@ -137,7 +138,7 @@ module QA
16.times do |i| 16.times do |i|
faker_line_arr = Faker::Lorem.sentences(1500) faker_line_arr = Faker::Lorem.sentences(1500)
content = faker_line_arr.join("\n\r") content = faker_line_arr.join("\n\r")
create_a_new_file_api_req("hello#{i}.txt", "master", "#{@group_name}%2F#{@project_name}", "Add hello#{i}.txt", content) create_a_new_file_api_req("hello#{i + 100}.txt", "master", "#{@group_name}%2F#{@project_name}", "Add hello#{i + 100}.txt", content)
content_arr[i] = faker_line_arr content_arr[i] = faker_line_arr
end end
...@@ -147,7 +148,7 @@ module QA ...@@ -147,7 +148,7 @@ module QA
missed_line_array = content_arr[i].each_slice(2).map(&:first) missed_line_array = content_arr[i].each_slice(2).map(&:first)
content = missed_line_array.join("\n\rIm new!:D \n\r ") content = missed_line_array.join("\n\rIm new!:D \n\r ")
update_file_api_req("hello#{i}.txt", "performance", "#{@group_name}%2F#{@project_name}", "Update hello#{i}.txt", content) update_file_api_req("hello#{i + 100}.txt", "performance", "#{@group_name}%2F#{@project_name}", "Update hello#{i + 100}.txt", content)
end end
create_mr_response = create_a_merge_request_api_req("#{@group_name}%2F#{@project_name}", "performance", "master", "Large_MR") create_mr_response = create_a_merge_request_api_req("#{@group_name}%2F#{@project_name}", "performance", "master", "Large_MR")
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment