File: colors_spec.rb

package info (click to toggle)
puppet-agent 7.23.0-1
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 19,092 kB
  • sloc: ruby: 245,074; sh: 456; makefile: 38; xml: 33
file content (44 lines) | stat: -rw-r--r-- 1,191 bytes parent folder | download | duplicates (3)
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
require 'spec_helper'

describe Puppet::Util::Colors do
  include Puppet::Util::Colors

  let (:message) { 'a message' }
  let (:color) { :black }
  let (:subject) { self }

  describe ".console_color" do
    it { is_expected.to respond_to :console_color }

    it "should generate ANSI escape sequences" do
      expect(subject.console_color(color, message)).to eq("\e[0;30m#{message}\e[0m")
    end
  end

  describe ".html_color" do
    it { is_expected.to respond_to :html_color }

    it "should generate an HTML span element and style attribute" do
      expect(subject.html_color(color, message)).to match(/<span style=\"color: #FFA0A0\">#{message}<\/span>/)
    end
  end

  describe ".colorize" do
    it { is_expected.to respond_to :colorize }

    context "ansicolor supported" do
      it "should colorize console output" do
        Puppet[:color] = true

        expect(subject).to receive(:console_color).with(color, message)
        subject.colorize(:black, message)
      end

      it "should not colorize unknown color schemes" do
        Puppet[:color] = :thisisanunknownscheme

        expect(subject.colorize(:black, message)).to eq(message)
      end
    end
  end
end