#!/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 : '' type_read_version = /Doc type read version:\s+(\d+)/.match(output) ? $1 : '' hashes << "#{type_version}+#{type_read_version}" end hashes.join('-') end