1 require File.expand_path(File.join(File.dirname(__FILE__), 'test_helper'))
3 class BasicTest < Test::Unit::TestCase
4 def test_should_set_default_min_size
5 assert_equal 1, Attachment.attachment_options[:min_size]
8 def test_should_set_default_max_size
9 assert_equal 1.megabyte, Attachment.attachment_options[:max_size]
12 def test_should_set_default_size
13 assert_equal (1..1.megabyte), Attachment.attachment_options[:size]
16 def test_should_set_default_thumbnails_option
17 assert_equal Hash.new, Attachment.attachment_options[:thumbnails]
20 def test_should_set_default_thumbnail_class
21 assert_equal Attachment, Attachment.attachment_options[:thumbnail_class]
24 def test_should_normalize_content_types_to_array
25 assert_equal %w(pdf), PdfAttachment.attachment_options[:content_type]
26 assert_equal %w(pdf doc txt), DocAttachment.attachment_options[:content_type]
27 assert_equal ['image/jpeg', 'image/pjpeg', 'image/gif', 'image/png', 'image/x-png', 'image/jpg'], ImageAttachment.attachment_options[:content_type]
28 assert_equal ['pdf', 'image/jpeg', 'image/pjpeg', 'image/gif', 'image/png', 'image/x-png', 'image/jpg'], ImageOrPdfAttachment.attachment_options[:content_type]
31 def test_should_sanitize_content_type
32 @attachment = Attachment.new :content_type => ' foo '
33 assert_equal 'foo', @attachment.content_type
36 def test_should_sanitize_filenames
37 @attachment = Attachment.new :filename => 'blah/foo.bar'
38 assert_equal 'foo.bar', @attachment.filename
40 @attachment.filename = 'blah\\foo.bar'
41 assert_equal 'foo.bar', @attachment.filename
43 @attachment.filename = 'f o!O-.bar'
44 assert_equal 'f_o_O-.bar', @attachment.filename
47 def test_should_convert_thumbnail_name
48 @attachment = FileAttachment.new :filename => 'foo.bar'
49 assert_equal 'foo.bar', @attachment.thumbnail_name_for(nil)
50 assert_equal 'foo.bar', @attachment.thumbnail_name_for('')
51 assert_equal 'foo_blah.bar', @attachment.thumbnail_name_for(:blah)
52 assert_equal 'foo_blah.blah.bar', @attachment.thumbnail_name_for('blah.blah')
54 @attachment.filename = 'foo.bar.baz'
55 assert_equal 'foo.bar_blah.baz', @attachment.thumbnail_name_for(:blah)
58 def test_should_require_valid_thumbnails_option
59 klass = Class.new(ActiveRecord::Base)
60 assert_raise ArgumentError do
61 klass.has_attachment :thumbnails => []