2012-01-27 18:29:02 +00:00
|
|
|
class SimpleTest
|
2012-01-31 17:59:27 +00:00
|
|
|
EXIT_CODE_ALIASES = {
|
|
|
|
:success => 0,
|
|
|
|
:warning => 1,
|
|
|
|
:error => 2,
|
2012-01-27 18:29:02 +00:00
|
|
|
}
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def self.instantiate class_name
|
|
|
|
file_name = class_name_to_file_name class_name
|
|
|
|
content = IO.readlines(file_name).join("")
|
|
|
|
|
|
|
|
if ! /class\s+.*?\s+<\s+Test/.match(content)
|
|
|
|
content = %Q!
|
|
|
|
class ::#{class_name} < SimpleTest
|
|
|
|
def initialize
|
|
|
|
super
|
|
|
|
|
|
|
|
#{content}
|
|
|
|
end
|
|
|
|
end
|
|
|
|
!
|
|
|
|
else
|
|
|
|
content.gsub!(/class\s+/, 'class ::')
|
|
|
|
end
|
|
|
|
|
|
|
|
eval content, nil, file_name, 5
|
2012-01-27 18:29:02 +00:00
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
constantize(class_name).new
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def initialize
|
|
|
|
@commands = []
|
|
|
|
@tmp_num = 0
|
|
|
|
@tmp_num_mutex = Mutex.new
|
|
|
|
@blocks = {
|
|
|
|
:setup => [],
|
|
|
|
:tests => [],
|
|
|
|
:cleanup => [],
|
|
|
|
}
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def commands
|
|
|
|
@commands
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def describe description
|
|
|
|
@description = description
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def setup &block
|
|
|
|
@blocks[:setup] << block
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def cleanup &block
|
|
|
|
@blocks[:cleanup] << block
|
|
|
|
end
|
|
|
|
|
|
|
|
def tmp_name_prefix
|
|
|
|
[ "/tmp/mkvtoolnix-auto-test-#{self.class.name}", $$.to_s, Thread.current[:number] ].join("-") + "-"
|
|
|
|
end
|
|
|
|
|
|
|
|
def tmp_name
|
|
|
|
@tmp_num_mutex.lock
|
|
|
|
@tmp_num ||= 0
|
|
|
|
@tmp_num += 1
|
|
|
|
result = self.tmp_name_prefix + @tmp_num.to_s
|
|
|
|
@tmp_num_mutex.unlock
|
2012-01-27 18:29:02 +00:00
|
|
|
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def tmp
|
|
|
|
@tmp ||= tmp_name
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def hash_file name
|
2012-01-27 18:29:02 +00:00
|
|
|
md5 name
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def hash_tmp erase = true
|
|
|
|
output = hash_file @tmp
|
2012-01-27 18:29:02 +00:00
|
|
|
|
|
|
|
if erase
|
2012-01-31 17:59:27 +00:00
|
|
|
File.unlink(@tmp) if File.exists?(@tmp) && (ENV["KEEP_TMPFILES"] != "1")
|
|
|
|
@tmp = nil
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
|
|
|
output
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def unlink_tmp_files
|
2012-01-27 18:29:02 +00:00
|
|
|
return if ENV["KEEP_TMPFILES"] == "1"
|
|
|
|
re = /^#{self.tmp_name_prefix}/
|
|
|
|
Dir.entries("/tmp").each do |entry|
|
|
|
|
file = "/tmp/#{entry}"
|
|
|
|
File.unlink(file) if re.match(file) and File.exists?(file)
|
|
|
|
end
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def test name, &block
|
|
|
|
@blocks[:tests] << { :name => name, :block => block }
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def test_merge file, *args
|
2012-01-27 18:29:02 +00:00
|
|
|
options = args.extract_options!
|
2012-01-31 13:23:10 +00:00
|
|
|
full_command_line = [ options[:args], file ].flatten.join(' ')
|
2012-01-27 18:29:02 +00:00
|
|
|
options[:name] ||= full_command_line
|
2012-01-31 17:59:27 +00:00
|
|
|
@blocks[:tests] << {
|
2012-01-27 18:29:02 +00:00
|
|
|
:name => full_command_line,
|
|
|
|
:block => lambda {
|
2013-04-27 15:45:27 +00:00
|
|
|
output = options[:output] || tmp
|
|
|
|
merge full_command_line, :exit_code => options[:exit_code], :output => output
|
|
|
|
options[:keep_tmp] ? hash_file(output) : hash_tmp
|
2012-01-27 18:29:02 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def test_identify file, *args
|
2012-01-31 13:55:00 +00:00
|
|
|
options = args.extract_options!
|
|
|
|
options[:verbose] = true if options[:verbose].nil?
|
|
|
|
full_command_line = [ options[:verbose] ? "--identify-verbose" : "--identify", options[:args], file ].flatten.join(' ')
|
|
|
|
options[:name] ||= full_command_line
|
2012-01-31 17:59:27 +00:00
|
|
|
@blocks[:tests] << {
|
2012-01-31 13:55:00 +00:00
|
|
|
:name => full_command_line,
|
|
|
|
:block => lambda {
|
2012-02-06 18:15:48 +00:00
|
|
|
sys "../src/mkvmerge #{full_command_line} > #{tmp}", :exit_code => options[:exit_code]
|
2012-05-06 17:27:06 +00:00
|
|
|
if options[:filter]
|
|
|
|
text = options[:filter].call(IO.readlines(tmp).join(''))
|
|
|
|
File.open(tmp, 'w') { |file| file.puts text }
|
|
|
|
end
|
2012-02-06 18:15:48 +00:00
|
|
|
options[:keep_tmp] ? hash_file(tmp) : hash_tmp
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2014-12-16 15:51:20 +00:00
|
|
|
def test_info file, *args
|
|
|
|
options = args.extract_options!
|
|
|
|
full_command_line = [ options[:args], file ].flatten.join(' ')
|
|
|
|
options[:name] ||= full_command_line
|
|
|
|
@blocks[:tests] << {
|
|
|
|
:name => full_command_line,
|
|
|
|
:block => lambda {
|
|
|
|
output = options[:output] || tmp
|
|
|
|
info full_command_line, :exit_code => options[:exit_code], :output => output
|
|
|
|
options[:keep_tmp] ? hash_file(output) : hash_tmp
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-03-04 16:52:50 +00:00
|
|
|
def test_merge_unsupported file, *args
|
|
|
|
options = args.extract_options!
|
|
|
|
full_command_line = [ options[:args], file ].flatten.join(' ')
|
|
|
|
options[:name] ||= full_command_line
|
|
|
|
@blocks[:tests] << {
|
|
|
|
:name => full_command_line,
|
|
|
|
:block => lambda {
|
|
|
|
sys "../src/mkvmerge --identify-verbose #{full_command_line} > #{tmp}", :exit_code => 3
|
|
|
|
/unsupported container/.match(IO.readlines(tmp).first || '') ? :ok : :bad
|
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-02-06 18:15:48 +00:00
|
|
|
def test_ui_locale locale, *args
|
2013-10-26 12:06:04 +00:00
|
|
|
describe "mkvmerge / UI locale: #{locale}"
|
|
|
|
|
2012-02-06 18:15:48 +00:00
|
|
|
options = args.extract_options!
|
|
|
|
@blocks[:tests] << {
|
|
|
|
:name => "mkvmerge UI locale #{locale}",
|
|
|
|
:block => lambda {
|
|
|
|
sys "../src/mkvmerge -o /dev/null --ui-language #{locale} data/avi/v.avi | head -n 2 | tail -n 1 > #{tmp}-#{locale}"
|
2013-10-26 13:47:25 +00:00
|
|
|
result = hash_file "#{tmp}-#{locale}"
|
|
|
|
self.error 'Locale #{locale} not supported by MKVToolNix' if result == 'f54ee70a6ad9bfc5f61de5ba5ca5a3c8'
|
|
|
|
result
|
2012-02-06 18:15:48 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
@blocks[:tests] << {
|
|
|
|
:name => "mkvinfo UI locale #{locale}",
|
|
|
|
:block => lambda {
|
|
|
|
sys "../src/mkvinfo --ui-language #{locale} data/mkv/complex.mkv | head -n 2 > #{tmp}-#{locale}"
|
2013-10-26 13:47:25 +00:00
|
|
|
result = hash_file "#{tmp}-#{locale}"
|
|
|
|
self.error 'Locale #{locale} not supported by MKVToolNix' if result == 'f54ee70a6ad9bfc5f61de5ba5ca5a3c8'
|
|
|
|
result
|
2012-01-31 13:55:00 +00:00
|
|
|
},
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def description
|
|
|
|
@description || fail("Class #{self.class.name} misses its description")
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def run_test
|
|
|
|
@blocks[:setup].each &:call
|
2012-01-27 18:29:02 +00:00
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
results = @blocks[:tests].collect do |test|
|
2012-01-27 18:29:02 +00:00
|
|
|
result = nil
|
|
|
|
begin
|
|
|
|
result = test[:block].call
|
|
|
|
rescue RuntimeError => ex
|
2012-01-31 17:59:27 +00:00
|
|
|
show_message "Test case '#{self.class.name}', sub-test '#{test[:name]}': #{ex}"
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
result
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
@blocks[:cleanup].each &:call
|
2012-01-27 18:29:02 +00:00
|
|
|
|
2012-01-31 15:55:31 +00:00
|
|
|
unlink_tmp_files
|
|
|
|
|
2012-01-27 18:29:02 +00:00
|
|
|
results.join '-'
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def merge *args
|
2012-01-27 18:29:02 +00:00
|
|
|
options = args.extract_options!
|
|
|
|
fail ArgumentError if args.empty?
|
|
|
|
|
|
|
|
output = options[:output] || self.tmp
|
|
|
|
command = "../src/mkvmerge --engage no_variable_data -o #{output} #{args.first}"
|
|
|
|
self.sys command, :exit_code => options[:exit_code]
|
|
|
|
end
|
|
|
|
|
2012-09-02 10:26:25 +00:00
|
|
|
def identify *args
|
|
|
|
options = args.extract_options!
|
|
|
|
fail ArgumentError if args.empty?
|
|
|
|
|
|
|
|
verbose = options[:verbose].nil? ? true : options[:verbose]
|
|
|
|
verbose = verbose ? "-verbose" : ""
|
|
|
|
command = "../src/mkvmerge --identify#{verbose} --engage no_variable_data #{args.first}"
|
|
|
|
self.sys command, :exit_code => options[:exit_code]
|
|
|
|
end
|
|
|
|
|
2012-03-08 08:37:28 +00:00
|
|
|
def info *args
|
|
|
|
options = args.extract_options!
|
|
|
|
fail ArgumentError if args.empty?
|
|
|
|
|
|
|
|
output = options[:output] || self.tmp
|
|
|
|
output = "> #{output}" unless /^[>\|]/.match(output)
|
2012-04-08 08:19:17 +00:00
|
|
|
output = '' if options[:output] == :return
|
2012-03-08 08:37:28 +00:00
|
|
|
command = "../src/mkvinfo --engage no_variable_data --ui-language en_US #{args.first} #{output}"
|
|
|
|
self.sys command, :exit_code => options[:exit_code]
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def extract *args
|
2012-01-31 15:55:31 +00:00
|
|
|
options = args.extract_options!
|
|
|
|
fail ArgumentError if args.empty?
|
|
|
|
|
|
|
|
mode = options[:mode] || :tracks
|
|
|
|
command = "../src/mkvextract --engage no_variable_data #{mode} #{args.first} " + options.keys.select { |key| key.is_a?(Numeric) }.sort.collect { |key| "#{key}:#{options[key]}" }.join(' ')
|
|
|
|
|
|
|
|
self.sys command, :exit_code => options[:exit_code]
|
|
|
|
end
|
|
|
|
|
2012-09-02 10:26:25 +00:00
|
|
|
def propedit *args
|
|
|
|
options = args.extract_options!
|
|
|
|
fail ArgumentError if args.empty?
|
|
|
|
|
|
|
|
command = "../src/mkvpropedit --engage no_variable_data #{args.first}"
|
|
|
|
self.sys command, :exit_code => options[:exit_code]
|
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def sys *args
|
2012-01-31 13:23:17 +00:00
|
|
|
options = args.extract_options!
|
2012-01-31 17:59:27 +00:00
|
|
|
options[:exit_code] = EXIT_CODE_ALIASES[ options[:exit_code] ] || options[:exit_code] || 0
|
2012-01-27 18:29:02 +00:00
|
|
|
fail ArgumentError if args.empty?
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
command = args.shift
|
|
|
|
@commands << command
|
2012-03-26 07:28:42 +00:00
|
|
|
|
|
|
|
if !/>/.match command
|
|
|
|
temp_file = Tempfile.new('mkvtoolnix-test-output')
|
|
|
|
temp_file.close
|
|
|
|
command << " >#{temp_file.path} 2>&1 "
|
|
|
|
end
|
2012-01-27 18:29:02 +00:00
|
|
|
|
2013-02-16 14:28:19 +00:00
|
|
|
puts "COMMAND #{command}" if ENV['DEBUG']
|
2012-03-26 07:28:42 +00:00
|
|
|
|
2013-12-18 21:20:17 +00:00
|
|
|
exit_code = 0
|
|
|
|
if !system(command)
|
|
|
|
exit_code = $? >> 8
|
|
|
|
self.error "system command failed: #{command} (#{exit_code})" if options[:exit_code] != exit_code
|
|
|
|
end
|
|
|
|
|
|
|
|
return IO.readlines(temp_file.path), exit_code if temp_file
|
|
|
|
return exit_code
|
2012-01-27 18:29:02 +00:00
|
|
|
end
|
|
|
|
|
2012-01-31 17:59:27 +00:00
|
|
|
def error reason
|
2012-01-27 18:29:02 +00:00
|
|
|
show_message " Failed. Reason: #{reason}"
|
|
|
|
raise "test failed"
|
|
|
|
end
|
|
|
|
end
|