2004-08-08 17:35:11 -04:00
|
|
|
# $Id$
|
2003-09-17 05:52:50 -04:00
|
|
|
|
|
|
|
module Test
|
|
|
|
module Unit
|
|
|
|
module Assertions # redefine
|
|
|
|
|
2004-08-08 17:35:11 -04:00
|
|
|
def assert_same_file(from, to)
|
2003-09-17 05:52:50 -04:00
|
|
|
_wrap_assertion {
|
|
|
|
assert_block("file #{from} != #{to}") {
|
|
|
|
File.read(from) == File.read(to)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2004-08-08 17:35:11 -04:00
|
|
|
def assert_same_entry(from, to)
|
2005-01-26 10:03:37 -05:00
|
|
|
a = File.stat(from)
|
|
|
|
b = File.stat(to)
|
|
|
|
assert_equal a.mode, b.mode, "mode #{a.mode} != #{b.mode}"
|
|
|
|
#assert_equal a.atime, b.atime
|
2007-11-21 02:40:36 -05:00
|
|
|
assert_equal_timestamp a.mtime, b.mtime, "mtime #{a.mtime} != #{b.mtime}"
|
2005-01-26 10:03:37 -05:00
|
|
|
assert_equal a.uid, b.uid, "uid #{a.uid} != #{b.uid}"
|
|
|
|
assert_equal a.gid, b.gid, "gid #{a.gid} != #{b.gid}"
|
2004-08-08 17:35:11 -04:00
|
|
|
end
|
|
|
|
|
|
|
|
def assert_file_exist(path)
|
2003-09-17 05:52:50 -04:00
|
|
|
_wrap_assertion {
|
2003-11-18 00:09:20 -05:00
|
|
|
assert_block("file not exist: #{path}") {
|
|
|
|
File.exist?(path)
|
2003-09-17 05:52:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2004-08-08 17:35:11 -04:00
|
|
|
def assert_file_not_exist(path)
|
2003-09-17 05:52:50 -04:00
|
|
|
_wrap_assertion {
|
2003-11-18 00:09:20 -05:00
|
|
|
assert_block("file not exist: #{path}") {
|
|
|
|
not File.exist?(path)
|
2003-09-17 05:52:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2004-08-08 17:35:11 -04:00
|
|
|
def assert_directory(path)
|
2003-09-17 05:52:50 -04:00
|
|
|
_wrap_assertion {
|
2003-11-18 00:09:20 -05:00
|
|
|
assert_block("is not directory: #{path}") {
|
|
|
|
File.directory?(path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2004-08-08 17:35:11 -04:00
|
|
|
def assert_symlink(path)
|
2003-11-18 00:09:20 -05:00
|
|
|
_wrap_assertion {
|
2004-08-08 17:35:11 -04:00
|
|
|
assert_block("is not a symlink: #{path}") {
|
2003-11-18 00:09:20 -05:00
|
|
|
File.symlink?(path)
|
2003-09-17 05:52:50 -04:00
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2004-08-08 17:35:11 -04:00
|
|
|
def assert_not_symlink(path)
|
|
|
|
_wrap_assertion {
|
|
|
|
assert_block("is a symlink: #{path}") {
|
|
|
|
not File.symlink?(path)
|
|
|
|
}
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-11-19 10:57:52 -05:00
|
|
|
def assert_equal_time(expected, actual, message=nil)
|
|
|
|
_wrap_assertion {
|
|
|
|
expected_str = expected.to_s
|
|
|
|
actual_str = actual.to_s
|
|
|
|
if expected_str == actual_str
|
|
|
|
expected_str << " (nsec=#{expected.nsec})"
|
|
|
|
actual_str << " (nsec=#{actual.nsec})"
|
|
|
|
end
|
2007-11-19 11:19:12 -05:00
|
|
|
full_message = build_message(message, <<EOT)
|
|
|
|
<#{expected_str}> expected but was
|
|
|
|
<#{actual_str}>.
|
2007-11-19 10:57:52 -05:00
|
|
|
EOT
|
|
|
|
assert_block(full_message) { expected == actual }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2007-11-21 02:40:36 -05:00
|
|
|
def assert_equal_timestamp(expected, actual, message=nil)
|
|
|
|
_wrap_assertion {
|
|
|
|
expected_str = expected.to_s
|
|
|
|
actual_str = actual.to_s
|
|
|
|
if expected_str == actual_str
|
|
|
|
expected_str << " (nsec=#{expected.nsec})"
|
|
|
|
actual_str << " (nsec=#{actual.nsec})"
|
|
|
|
end
|
|
|
|
full_message = build_message(message, <<EOT)
|
|
|
|
<#{expected_str}> expected but was
|
|
|
|
<#{actual_str}>.
|
|
|
|
EOT
|
|
|
|
# subsecond timestamp is not portable.
|
|
|
|
assert_block(full_message) { expected.tv_sec == actual.tv_sec }
|
|
|
|
}
|
|
|
|
end
|
|
|
|
|
2003-09-17 05:52:50 -04:00
|
|
|
end
|
|
|
|
end
|
|
|
|
end
|