1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356
|
#! /usr/bin/env ruby
#--
# MIME::Types
# A Ruby implementation of a MIME Types information library. Based in spirit
# on the Perl MIME::Types information library by Mark Overmeer.
# http://rubyforge.org/projects/mime-types/
#
# Licensed under the Ruby disjunctive licence with the GNU GPL or the Perl
# Artistic licence. See Licence.txt for more information.
#
# Copyright 2003 - 2009 Austin Ziegler
#++
$LOAD_PATH.unshift("#{File.dirname(__FILE__)}/../lib") if __FILE__ == $0
require 'mime/types'
require 'test/unit' unless defined? $ZENTEST and $ZENTEST
module TestMIME
class TestType < Test::Unit::TestCase #:nodoc:
def setup
@zip = MIME::Type.new('x-appl/x-zip') { |t| t.extensions = ['zip', 'zp'] }
end
def test_class_from_array
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit', 'linux')
end
assert_instance_of(MIME::Type, @yaml)
assert_equal('text/yaml', @yaml.simplified)
end
def test_class_from_hash
assert_nothing_raised do
@yaml = MIME::Type.from_hash('Content-Type' => 'text/x-yaml',
'Content-Transfer-Encoding' => '8bit',
'System' => 'linux',
'Extensions' => %w(yaml yml))
end
assert_instance_of(MIME::Type, @yaml)
assert_equal('text/yaml', @yaml.simplified)
end
def test_class_from_mime_type
assert_nothing_raised do
@zip2 = MIME::Type.from_mime_type(@zip)
end
assert_instance_of(MIME::Type, @zip)
assert_equal('appl/zip', @zip.simplified)
assert_not_equal(@zip.object_id, @zip2.object_id)
end
def test_class_simplified
assert_equal(MIME::Type.simplified('text/plain'), 'text/plain')
assert_equal(MIME::Type.simplified('image/jpeg'), 'image/jpeg')
assert_equal(MIME::Type.simplified('application/x-msword'), 'application/msword')
assert_equal(MIME::Type.simplified('text/vCard'), 'text/vcard')
assert_equal(MIME::Type.simplified('application/pkcs7-mime'), 'application/pkcs7-mime')
assert_equal(@zip.simplified, 'appl/zip')
assert_equal(MIME::Type.simplified('x-xyz/abc'), 'xyz/abc')
end
def test_CMP # '<=>'
assert(MIME::Type.new('text/plain') == MIME::Type.new('text/plain'))
assert(MIME::Type.new('text/plain') != MIME::Type.new('image/jpeg'))
assert(MIME::Type.new('text/plain') == 'text/plain')
assert(MIME::Type.new('text/plain') != 'image/jpeg')
assert(MIME::Type.new('text/plain') > MIME::Type.new('text/html'))
assert(MIME::Type.new('text/plain') > 'text/html')
assert(MIME::Type.new('text/html') < MIME::Type.new('text/plain'))
assert(MIME::Type.new('text/html') < 'text/plain')
assert('text/html' == MIME::Type.new('text/html'))
assert('text/html' < MIME::Type.new('text/plain'))
assert('text/plain' > MIME::Type.new('text/html'))
end
def test_ascii_eh
assert(MIME::Type.new('text/plain').ascii?)
assert(!MIME::Type.new('image/jpeg').ascii?)
assert(!MIME::Type.new('application/x-msword').ascii?)
assert(MIME::Type.new('text/vCard').ascii?)
assert(!MIME::Type.new('application/pkcs7-mime').ascii?)
assert(!@zip.ascii?)
end
def test_binary_eh
assert(!MIME::Type.new('text/plain').binary?)
assert(MIME::Type.new('image/jpeg').binary?)
assert(MIME::Type.new('application/x-msword').binary?)
assert(!MIME::Type.new('text/vCard').binary?)
assert(MIME::Type.new('application/pkcs7-mime').binary?)
assert(@zip.binary?)
end
def test_complete_eh
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'linux')
end
assert(@yaml.complete?)
assert_nothing_raised { @yaml.extensions = nil }
assert(!@yaml.complete?)
end
def test_content_type
assert_equal(MIME::Type.new('text/plain').content_type, 'text/plain')
assert_equal(MIME::Type.new('image/jpeg').content_type, 'image/jpeg')
assert_equal(MIME::Type.new('application/x-msword').content_type, 'application/x-msword')
assert_equal(MIME::Type.new('text/vCard').content_type, 'text/vCard')
assert_equal(MIME::Type.new('application/pkcs7-mime').content_type, 'application/pkcs7-mime')
assert_equal(@zip.content_type, 'x-appl/x-zip');
end
def test_encoding
assert_equal(MIME::Type.new('text/plain').encoding, 'quoted-printable')
assert_equal(MIME::Type.new('image/jpeg').encoding, 'base64')
assert_equal(MIME::Type.new('application/x-msword').encoding, 'base64')
assert_equal(MIME::Type.new('text/vCard').encoding, 'quoted-printable')
assert_equal(MIME::Type.new('application/pkcs7-mime').encoding, 'base64')
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'linux')
end
assert_equal(@yaml.encoding, '8bit')
assert_nothing_raised { @yaml.encoding = 'base64' }
assert_equal(@yaml.encoding, 'base64')
assert_nothing_raised { @yaml.encoding = :default }
assert_equal(@yaml.encoding, 'quoted-printable')
assert_raises(ArgumentError) { @yaml.encoding = 'binary' }
assert_equal(@zip.encoding, 'base64')
end
def _test_default_encoding
raise NotImplementedError, 'Need to write test_default_encoding'
end
def _test_docs
raise NotImplementedError, 'Need to write test_docs'
end
def _test_docs_equals
raise NotImplementedError, 'Need to write test_docs_equals'
end
def test_eql?
assert(MIME::Type.new('text/plain').eql?(MIME::Type.new('text/plain')))
assert(!MIME::Type.new('text/plain').eql?(MIME::Type.new('image/jpeg')))
assert(!MIME::Type.new('text/plain').eql?('text/plain'))
assert(!MIME::Type.new('text/plain').eql?('image/jpeg'))
end
def _test_encoding
raise NotImplementedError, 'Need to write test_encoding'
end
def _test_encoding_equals
raise NotImplementedError, 'Need to write test_encoding_equals'
end
def test_extensions
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'linux')
end
assert_equal(@yaml.extensions, %w(yaml yml))
assert_nothing_raised { @yaml.extensions = 'yaml' }
assert_equal(@yaml.extensions, ['yaml'])
assert_equal(@zip.extensions.size, 2)
assert_equal(@zip.extensions, ['zip', 'zp'])
end
def _test_extensions_equals
raise NotImplementedError, 'Need to write test_extensions_equals'
end
def test_like_eh
assert(MIME::Type.new('text/plain').like?(MIME::Type.new('text/plain')))
assert(MIME::Type.new('text/plain').like?(MIME::Type.new('text/x-plain')))
assert(!MIME::Type.new('text/plain').like?(MIME::Type.new('image/jpeg')))
assert(MIME::Type.new('text/plain').like?('text/plain'))
assert(MIME::Type.new('text/plain').like?('text/x-plain'))
assert(!MIME::Type.new('text/plain').like?('image/jpeg'))
end
def test_media_type
assert_equal(MIME::Type.new('text/plain').media_type, 'text')
assert_equal(MIME::Type.new('image/jpeg').media_type, 'image')
assert_equal(MIME::Type.new('application/x-msword').media_type, 'application')
assert_equal(MIME::Type.new('text/vCard').media_type, 'text')
assert_equal(MIME::Type.new('application/pkcs7-mime').media_type, 'application')
assert_equal(MIME::Type.new('x-chemical/x-pdb').media_type, 'chemical')
assert_equal(@zip.media_type, 'appl')
end
def _test_obsolete_eh
raise NotImplementedError, 'Need to write test_obsolete_eh'
end
def _test_obsolete_equals
raise NotImplementedError, 'Need to write test_obsolete_equals'
end
def test_platform_eh
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'oddbox')
end
assert(!@yaml.platform?)
assert_nothing_raised { @yaml.system = nil }
assert(!@yaml.platform?)
assert_nothing_raised { @yaml.system = /#{RUBY_PLATFORM}/ }
assert(@yaml.platform?)
end
def test_raw_media_type
assert_equal(MIME::Type.new('text/plain').raw_media_type, 'text')
assert_equal(MIME::Type.new('image/jpeg').raw_media_type, 'image')
assert_equal(MIME::Type.new('application/x-msword').raw_media_type, 'application')
assert_equal(MIME::Type.new('text/vCard').raw_media_type, 'text')
assert_equal(MIME::Type.new('application/pkcs7-mime').raw_media_type, 'application')
assert_equal(MIME::Type.new('x-chemical/x-pdb').raw_media_type, 'x-chemical')
assert_equal(@zip.raw_media_type, 'x-appl')
end
def test_raw_sub_type
assert_equal(MIME::Type.new('text/plain').raw_sub_type, 'plain')
assert_equal(MIME::Type.new('image/jpeg').raw_sub_type, 'jpeg')
assert_equal(MIME::Type.new('application/x-msword').raw_sub_type, 'x-msword')
assert_equal(MIME::Type.new('text/vCard').raw_sub_type, 'vCard')
assert_equal(MIME::Type.new('application/pkcs7-mime').raw_sub_type, 'pkcs7-mime')
assert_equal(@zip.raw_sub_type, 'x-zip')
end
def test_registered_eh
assert(MIME::Type.new('text/plain').registered?)
assert(MIME::Type.new('image/jpeg').registered?)
assert(!MIME::Type.new('application/x-msword').registered?)
assert(MIME::Type.new('text/vCard').registered?)
assert(MIME::Type.new('application/pkcs7-mime').registered?)
assert(!@zip.registered?)
end
def _test_registered_equals
raise NotImplementedError, 'Need to write test_registered_equals'
end
def test_signature_eh
assert(!MIME::Type.new('text/plain').signature?)
assert(!MIME::Type.new('image/jpeg').signature?)
assert(!MIME::Type.new('application/x-msword').signature?)
assert(MIME::Type.new('text/vCard').signature?)
assert(MIME::Type.new('application/pkcs7-mime').signature?)
end
def test_simplified
assert_equal(MIME::Type.new('text/plain').simplified, 'text/plain')
assert_equal(MIME::Type.new('image/jpeg').simplified, 'image/jpeg')
assert_equal(MIME::Type.new('application/x-msword').simplified, 'application/msword')
assert_equal(MIME::Type.new('text/vCard').simplified, 'text/vcard')
assert_equal(MIME::Type.new('application/pkcs7-mime').simplified, 'application/pkcs7-mime')
assert_equal(MIME::Type.new('x-chemical/x-pdb').simplified, 'chemical/pdb')
end
def test_sub_type
assert_equal(MIME::Type.new('text/plain').sub_type, 'plain')
assert_equal(MIME::Type.new('image/jpeg').sub_type, 'jpeg')
assert_equal(MIME::Type.new('application/x-msword').sub_type, 'msword')
assert_equal(MIME::Type.new('text/vCard').sub_type, 'vcard')
assert_equal(MIME::Type.new('application/pkcs7-mime').sub_type, 'pkcs7-mime')
assert_equal(@zip.sub_type, 'zip')
end
def test_system_equals
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'linux')
end
assert_equal(@yaml.system, %r{linux})
assert_nothing_raised { @yaml.system = /win32/ }
assert_equal(@yaml.system, %r{win32})
assert_nothing_raised { @yaml.system = nil }
assert_nil(@yaml.system)
end
def test_system_eh
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'linux')
end
assert(@yaml.system?)
assert_nothing_raised { @yaml.system = nil }
assert(!@yaml.system?)
end
def test_to_a
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'linux')
end
assert_equal(@yaml.to_a, ['text/x-yaml', %w(yaml yml), '8bit',
/linux/, nil, nil, nil, false])
end
def test_to_hash
assert_nothing_raised do
@yaml = MIME::Type.from_array('text/x-yaml', %w(yaml yml), '8bit',
'linux')
end
assert_equal(@yaml.to_hash,
{ 'Content-Type' => 'text/x-yaml',
'Content-Transfer-Encoding' => '8bit',
'Extensions' => %w(yaml yml),
'System' => /linux/,
'Registered' => false,
'URL' => nil,
'Obsolete' => nil,
'Docs' => nil })
end
def test_to_s
assert_equal("#{MIME::Type.new('text/plain')}", 'text/plain')
end
def test_class_constructors
assert_not_nil(@zip)
yaml = MIME::Type.new('text/x-yaml') do |y|
y.extensions = %w(yaml yml)
y.encoding = '8bit'
y.system = 'linux'
end
assert_instance_of(MIME::Type, yaml)
assert_raises(MIME::InvalidContentType) { MIME::Type.new('apps') }
assert_raises(MIME::InvalidContentType) { MIME::Type.new(nil) }
end
def _test_to_str
raise NotImplementedError, 'Need to write test_to_str'
end
def _test_url
raise NotImplementedError, 'Need to write test_url'
end
def _test_url_equals
raise NotImplementedError, 'Need to write test_url_equals'
end
def _test_urls
raise NotImplementedError, 'Need to write test_urls'
end
def __test_use_instead
raise NotImplementedError, 'Need to write test_use_instead'
end
end
end
|