summaryrefslogtreecommitdiff
path: root/test/test_basic_types.rb
blob: 669d92002bf70e5806f0fa055664793e3d327001 (plain)
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
#!/usr/bin/env ruby

######################################
# Copyright 2006, Ben Bleything.     #
#                <ben@bleything.net> #
#                                    #
# Distributed under the MIT license. #
######################################

require 'test/unit'
require 'plist'

class TestBasicTypes < Test::Unit::TestCase
  def wrap(tag, content)
    return "<array>\n\t<#{tag}>#{content}</#{tag}>\n</array>"
  end

  def test_strings
    expected = wrap('string', 'testdata')

    assert_equal expected, ['testdata'].to_plist(false)
    assert_equal expected, [:testdata].to_plist(false)
  end

  def test_integers
    [42, 2376239847623987623, -8192].each do |i|
      assert_equal wrap('integer', i), [i].to_plist(false)
    end
  end

  def test_floats
    [3.14159, -38.3897, 2398476293847.9823749872349980].each do |i|
      assert_equal wrap('real', i), [i].to_plist(false)
    end
  end

  def test_booleans
    assert_equal "<array>\n\t<true/>\n</array>",  [true].to_plist(false)
    assert_equal "<array>\n\t<false/>\n</array>", [false].to_plist(false)
  end

  def test_time
    test_time = Time.now
    assert_equal wrap('date', test_time.utc.strftime('%Y-%m-%dT%H:%M:%SZ')), [test_time].to_plist(false)
  end

  def test_dates
    test_date = Date.today
    test_datetime = DateTime.now

    assert_equal wrap('date', test_date.strftime('%Y-%m-%dT%H:%M:%SZ')), [test_date].to_plist(false)
    assert_equal wrap('date', test_datetime.strftime('%Y-%m-%dT%H:%M:%SZ')), [test_datetime].to_plist(false)
  end
end