summaryrefslogtreecommitdiff
path: root/tool/sync_test_lib.rb
blob: b2878b463f8c7c4b2ad700bae3196b0e1124de5d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
#!/usr/bin/env ruby

require "fileutils"

test_lib_files = %w[
  core_assertions.rb
  find_executable.rb
  envutil.rb
  helper.rb
].map do |file|
  [file, File.read("#{__dir__}/lib/#{file}")]
end

repos = %w[
  bigdecimal cgi cmath date delegate did_you_mean digest drb erb etc
  fileutils find forwardable io-console io-nonblock io-wait ipaddr
  irb logger net-http net-protocol open-uri open3 openssl optparse
  ostruct pathname pstore psych racc resolv stringio strscan tempfile
  time timeout tmpdir uri weakref win32ole yaml zlib
]

branch_name = "update-test-lib-#{Time.now.strftime("%Y%m%d")}"
title = "Update test libraries from ruby/ruby #{Time.now.strftime("%Y-%m-%d")}"
commit = `git rev-parse HEAD`.chomp
message = "Update test libraries from https://github.com/ruby/ruby/commit/#{commit}"

topdir = ARGV.shift || '..'

repos.each do |repo|
  puts "#{repo}: start"

  Dir.chdir("#{topdir}/#{repo}") do
    if `git branch --list #{branch_name}`.empty?
      system "git switch master"
      system "git switch -c #{branch_name}"
    else
      puts "#{repo}: skip"
      next
    end

    test_lib_files.each do |file, code|
      FileUtils.mkdir_p("test/lib")
      File.binwrite("test/lib/#{file}", code)
      system "git add test/lib/#{file}"
    end

    if `git commit -m '#{message}'`.chomp =~ /nothing to commit/
      puts "#{repo}: nothing to update"
    else
      system "git push"
      system "gh repo set-default ruby/#{repo}"
      system "gh pr create --base master --head ruby:#{branch_name} --title \"#{title}\" --body \"#{message}\""
      puts "#{repo}: updated"
    end

    system "git switch master"
    system "git branch -D #{branch_name}"
  end
rescue StandardError => e
  puts e
end