mkvtoolnix/tests/test-487matroska_version_and_read_version_with_opus.rb
2015-03-29 21:40:30 +02:00

32 lines
952 B
Ruby
Executable File

#!/usr/bin/ruby -w
# T_487matroska_version_and_read_version_with_opus
describe "mkvmerge / DocTypeVersion and DocTypeReadVersion with Opus"
test "all versions" do
source = "data/opus/v-opus.ogg"
hashes = []
[ nil,
'no_cue_duration', 'no_cue_relative_position', 'no_simpleblocks',
'no_cue_duration,no_cue_relative_position', 'no_cue_duration,no_simpleblocks', 'no_cue_relative_position,no_simpleblocks',
'no_cue_duration,no_cue_relative_position,no_simpleblocks',
].each do |hacks|
command = []
command << "--engage #{hacks}" if hacks
command << source
command = command.join ' '
merge command
output = info(tmp, :output => :return).join('')
type_version = /Doc type version:\s+(\d+)/.match(output) ? $1 : '<undef>'
type_read_version = /Doc type read version:\s+(\d+)/.match(output) ? $1 : '<undef>'
hashes << "#{type_version}+#{type_read_version}"
end
hashes.join('-')
end