mkvtoolnix/tests/test-0355chapters.rb
2021-07-07 16:10:13 +02:00

21 lines
566 B
Ruby
Executable File

#!/usr/bin/ruby -w
# T_355chapters
describe "mkvmerge / XML chapters"
source = "data/subtitles/srt/ven.srt"
invalid = Dir["data/text/chapters-invalid-*.xml"]
# Valid files:
(Dir["data/text/chapters-*.xml"] - invalid).sort.each do |chapters|
test_merge "#{source} --chapters #{chapters}"
end
# Invalid files:
invalid.sort.each do |chapters|
test chapters do
messages, _ = merge("#{source} --chapters #{chapters}", :exit_code => :error)
messages.detect { |line| /The\s+XML\s+chapter\s+file.*contains\s+an\s+error/i.match line } ? :ok : :bad
end
end