File: test-color-scheme.rb

package info (click to toggle)
ruby-test-unit 2.5.0-2
  • links: PTS, VCS
  • area: main
  • in suites: wheezy
  • size: 772 kB
  • sloc: ruby: 11,397; makefile: 6
file content (82 lines) | stat: -rw-r--r-- 3,316 bytes parent folder | download
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
class TestUnitColorScheme < Test::Unit::TestCase
  def test_register
    inverted_scheme_spec = {
      "success" => {:name => "red"},
      "failure" => {:name => "green"},
    }
    Test::Unit::ColorScheme["inverted"] = inverted_scheme_spec
    assert_equal({
                   "success" => color("red"),
                   "failure" => color("green"),
                 },
                 Test::Unit::ColorScheme["inverted"].to_hash)
  end

  def test_new_with_colors
    scheme = Test::Unit::ColorScheme.new(:success => color("blue"),
                                         "failure" => color("green",
                                                            :underline => true))
    assert_equal({
                   "success" => color("blue"),
                   "failure" => color("green", :underline => true),
                 },
                 scheme.to_hash)
  end

  def test_new_with_spec
    scheme = Test::Unit::ColorScheme.new(:success => {
                                           :name => "blue",
                                           :bold => true
                                         },
                                         "failure" => {:name => "green"})
    assert_equal({
                   "success" => color("blue", :bold => true),
                   "failure" => color("green"),
                 },
                 scheme.to_hash)
  end

  private
  def color(name, options={})
    Test::Unit::Color.new(name, options)
  end

  class TestFor8Colors < self
    def setup
      @original_term, ENV["TERM"] = ENV["TERM"], nil
      @original_color_term, ENV["COLORTERM"] = ENV["COLORTERM"], nil
      ENV["TERM"] = "xterm"
    end

    def teardown
      ENV["TERM"] = @original_term
      ENV["COLORTERM"] = @original_color_term
    end

    def test_default
      assert_equal({
                     "pass" => color("green", :foreground => false) +
                               color("white", :bold => true),
                     "failure" => color("red", :foreground => false) +
                                  color("white", :bold => true),
                     "pending" => color("magenta", :bold => true),
                     "omission" => color("blue", :bold => true),
                     "notification" => color("cyan", :bold => true),
                     "error" => color("yellow", :bold => true) +
                                color("black", :foreground => false),
                     "case" => color("white", :bold => true) +
                               color("blue", :foreground => false),
                     "suite" => color("white", :bold => true) +
                                color("green", :foreground => false),
                     "diff-inserted-tag" => color("red", :bold => true),
                     "diff-deleted-tag" => color("green", :bold => true),
                     "diff-difference-tag" => color("cyan", :bold => true),
                     "diff-inserted" => color("red", :foreground => false) +
                                        color("white", :bold => true),
                     "diff-deleted" => color("green", :foreground => false) +
                                       color("white", :bold => true),
                   },
                   Test::Unit::ColorScheme.default.to_hash)
    end
  end
end