File: testtranspparency.rb

package info (click to toggle)
ruby-rubymail 1.0.0-1
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 2,056 kB
  • sloc: ruby: 6,061; makefile: 7
file content (105 lines) | stat: -rw-r--r-- 3,629 bytes parent folder | download | duplicates (5)
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
#!/usr/bin/env ruby
#--
#   Copyright (C) 2002, 2007 Matt Armstrong.  All rights reserved.
#
# Redistribution and use in source and binary forms, with or without
# modification, are permitted provided that the following conditions are met:
#
# 1. Redistributions of source code must retain the above copyright notice,
#    this list of conditions and the following disclaimer.
# 2. Redistributions in binary form must reproduce the above copyright
#    notice, this list of conditions and the following disclaimer in the
#    documentation and/or other materials provided with the distribution.
# 3. The name of the author may not be used to endorse or promote products
#    derived from this software without specific prior written permission.
#
# THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
# IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
# OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN
# NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED
# TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
# PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
# LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
# NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
# SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
#

require 'test/testbase'
require 'rmail/parser'
require 'rmail/serialize'

class TestRMailTransparency < TestBase
  def do_file(file)
    full_name = data_filename(file)
    message1 = data_as_file(file) { |f|
      RMail::Parser.new.parse(f)
    }
    scratch_base = file.gsub(/[^\w]/, '-')
    scratch_name = scratch_filename(scratch_base)
    message2 = File.open(scratch_name, "w+") { |f|
      RMail::Serialize.new(f).serialize(message1)
      f.seek(0)
      RMail::Parser.new.parse(f)
    }
    if message1 != message2
      puts "-" * 70
      pp message1
      puts "-" * 70
      pp message2
      puts "-" * 70
    end
    assert(FileUtils.compare_file(full_name, scratch_name),
           "parse->serialize failure transparency #{file}")
    assert_equal(message1, message2,
                 "parse->serialize->parse transparency failure #{file}")
  end

  # Test that all our various input files get formatted on output the
  # same way they came in.
  def test_transparency_simple_mime
    do_file('parser.simple-mime')
  end
  def test_transparency_rfc822
    do_file('parser.rfc822')
  end
  def test_transparency_nested_multipart
    do_file('parser.nested-multipart')
  end
  def test_transparency_message_01
    do_file("transparency/message.1")
  end
  def test_transparency_message_02
    do_file("transparency/message.2")
  end
  def test_transparency_message_03
    do_file("transparency/message.3")
  end
  def test_transparency_message_04
    do_file("transparency/message.4")
  end
  def test_transparency_message_05
    do_file("transparency/message.5")
  end
  def test_transparency_message_06
    do_file("transparency/message.6")
  end
  def test_transparency_absolute_01
    do_file('transparency/absolute.1')
  end
  def test_transparency_absolute_02
    do_file('transparency/absolute.2')
  end
  def test_transparency_absolute_03
    do_file('transparency/absolute.3')
  end
  def test_transparency_absolute_04
    do_file('transparency/absolute.4')
  end
  def test_transparency_absolute_05
    do_file('transparency/absolute.5')
  end
  def test_transparency_absolute_06
    do_file('transparency/absolute.6')
  end
end