require 'test_helper'
require 'ansi/bbcode'

testcase ANSI::BBCode do

  class_method :bbcode_to_ansi do
    test do
      str = "this is [COLOR=red]red[/COLOR], this is [B]bold[/B]"
      out = "this is \e[0;31mred\e[0m, this is \e[1mbold\e[0m\n"
      out.assert == ANSI::BBCode.bbcode_to_ansi(str)
    end
  end

  class_method :bbcode_to_html do
    test do
      str = "this is [COLOR=red]red[/COLOR], this is [B]bold[/B]"
      out = "this is <font color=\"red\">red</font>, this is <strong>bold</strong><br />\n"
      out.assert == ANSI::BBCode.bbcode_to_html(str)
    end
  end

  class_method :ansi_to_bbcode do
    test "example from RSpec" do
      str = "\e[32m.\e[0m\e[32m.\e[0m"
      expected = "[COLOR=green].[/COLOR][COLOR=green].[/COLOR]\n"
      out = ANSI::BBCode.ansi_to_bbcode(str)
      out.assert == expected
    end

    test "just the reset code" do
      out = ANSI::BBCode.ansi_to_bbcode("\e[0m")
      out.assert == "\n"
    end
  end

  class_method :ansi_to_html do
    test do
      str = "this is \e[0;31mred\e[0m, this is \e[1mbold\e[0m\n" +
            "this is a line without any ansi code\n" +
            "this is \e[0;31mred\e[0m, this is \e[1mbold\e[0m\n"
      out = "this is <font color=\"red\">red</font>, this is <strong>bold</strong><br />\n" +
            "this is a line without any ansi code<br />\n" +
            "this is <font color=\"red\">red</font>, this is <strong>bold</strong><br />\n"
      out.assert == ANSI::BBCode.ansi_to_html(str)
    end
  end

end

