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 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295
|
# coding: utf-8
# frozen_string_literal: true
require 'test/unit'
require 'pygments'
ENV['mentos-test'] = "yes"
P = Pygments
PE = Pygments.engine
class PygmentsHighlightTest < Test::Unit::TestCase
RUBY_CODE = "#!/usr/bin/ruby\nputs 'foo'"
RUBY_CODE_TRAILING_NEWLINE = "#!/usr/bin/ruby\nputs 'foo'\n"
REDIS_CODE = File.read(File.join(File.dirname(__FILE__), '..', '/test/test_data.c'))
def test_highlight_defaults_to_html
code = P.highlight(RUBY_CODE)
assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
assert_equal '<div class', code[0..9]
end
def test_full_html_highlight
code = P.highlight(RUBY_CODE)
assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
assert_equal "<div class=\"highlight\"><pre><span></span><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>", code
end
def test_full_table_highlight
code = P.highlight(RUBY_CODE, :options => {:linenos => true})
assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
assert_equal "<table class=\"highlighttable\"><tr><td class=\"linenos\"><div class=\"linenodiv\"><pre>1\n2</pre></div></td><td class=\"code\"><div class=\"highlight\"><pre><span></span><span class=\"ch\">#!/usr/bin/ruby</span>\n<span class=\"nb\">puts</span> <span class=\"s1\">'foo'</span>\n</pre></div>\n</td></tr></table>", code
end
def test_highlight_works_with_larger_files
code = P.highlight(REDIS_CODE)
assert_match 'used_memory_peak_human', code
assert_equal 458511, code.bytesize.to_i
end
def test_highlight_works_with_null_bytes
code = P.highlight("\0hello", :lexer => 'rb')
assert_match "hello", code
end
def test_highlight_works_on_utf8
code = P.highlight('# ø', :lexer => 'rb', :options => {:encoding => 'utf-8'})
assert_match "# ø", code
end
def test_highlight_works_on_utf8_automatically
code = P.highlight('# ø', :lexer => 'rb')
assert_match "# ø", code
end
def test_highlight_works_on_utf8_all_chars_automatically
code = P.highlight('def foo: # ø', :lexer => 'py')
assert_equal "<div class=\"highlight\"><pre><span></sp", code[0,38]
end
def test_highlight_works_with_multiple_utf8
code = P.highlight('# ø ø ø', :lexer => 'rb', :options => {:encoding => 'utf-8'})
assert_match "# ø ø ø", code
end
def test_highlight_works_with_multiple_utf8_and_trailing_newline
code = P.highlight("#!/usr/bin/ruby\nputs 'ø..ø'\n", :lexer => 'rb')
assert_match "ø..ø", code
end
def test_highlight_formatter_bbcode
code = P.highlight(RUBY_CODE, :formatter => 'bbcode')
assert_match 'color=#408080][i]#!/usr/bin/ruby[/i]', code
end
def test_highlight_formatter_terminal
code = P.highlight(RUBY_CODE, :formatter => 'terminal')
assert_match '39;49;00m', code
end
def test_highlight_options
code = P.highlight(RUBY_CODE, :options => {:full => true, :title => 'test'})
assert_match '<title>test</title>', code
end
def test_highlight_works_with_single_character_input
code = P.highlight("a")
assert_match "a\n</pre>", code
end
def test_highlight_works_with_trailing_newline
code = P.highlight(RUBY_CODE_TRAILING_NEWLINE)
assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
end
def test_highlight_works_with_multiple_newlines
code = P.highlight(RUBY_CODE_TRAILING_NEWLINE + "derp\n\n")
assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
end
def test_highlight_works_with_trailing_cr
code = P.highlight(RUBY_CODE_TRAILING_NEWLINE + "\r")
assert_match '<span class="ch">#!/usr/bin/ruby</span>', code
end
def test_highlight_still_works_with_invalid_code
code = P.highlight("importr python; wat?", :lexer => 'py')
assert_match ">importr</span>", code
end
def test_highlight_on_multi_threads
10.times.map do
Thread.new do
test_full_html_highlight
end
end.each do |thread|
thread.join
end
end
end
# Philosophically, I'm not the biggest fan of testing private
# methods, but given the relative delicacy of validity checking
# over the pipe I think it's necessary and informative.
class PygmentsValidityTest < Test::Unit::TestCase
def test_add_ids_with_padding
res = PE.send(:add_ids, "herp derp baz boo foo", "ABCDEFGH")
assert_equal "ABCDEFGH herp derp baz boo foo ABCDEFGH", res
end
def test_add_ids_on_empty_string
res = PE.send(:add_ids, "", "ABCDEFGH")
assert_equal "ABCDEFGH ABCDEFGH", res
end
def test_add_ids_with_unicode_data
res = PE.send(:add_ids, "# ø ø ø", "ABCDEFGH")
assert_equal "ABCDEFGH # ø ø ø ABCDEFGH", res
end
def test_add_ids_with_starting_slashes
res = PE.send(:add_ids, '\\# ø ø ø..//', "ABCDEFGH")
assert_equal "ABCDEFGH \\# ø ø ø..// ABCDEFGH", res
end
def test_get_fixed_bits_from_header
bits = PE.send(:get_fixed_bits_from_header, '{"herp": "derp"}')
assert_equal "00000000000000000000000000010000", bits
end
def test_get_fixed_bits_from_header_works_with_large_headers
bits = PE.send(:get_fixed_bits_from_header, '{"herp": "derp"}' * 10000)
assert_equal "00000000000000100111000100000000", bits
end
def test_size_check
size = "00000000000000000000000000100110"
res = PE.send(:size_check, size)
assert_equal res, true
end
def test_size_check_bad
size = "some random thing"
res = PE.send(:size_check, size)
assert_equal res, false
end
end
class PygmentsLexerTest < Test::Unit::TestCase
RUBY_CODE = "#!/usr/bin/ruby\nputs 'foo'"
def test_lexer_by_mimetype
assert_equal 'rb', P.lexer_name_for(:mimetype => 'text/x-ruby')
assert_equal 'json', P.lexer_name_for(:mimetype => 'application/json')
end
def test_lexer_by_filename
assert_equal 'rb', P.lexer_name_for(:filename => 'test.rb')
assert_equal 'scala', P.lexer_name_for(:filename => 'test.scala')
end
def test_lexer_by_name
assert_equal 'rb', P.lexer_name_for(:lexer => 'ruby')
assert_equal 'python', P.lexer_name_for(:lexer => 'python')
assert_equal 'c', P.lexer_name_for(:lexer => 'c')
end
def test_lexer_by_filename_and_content
assert_equal 'rb', P.lexer_name_for(RUBY_CODE, :filename => 'test.rb')
end
def test_lexer_by_content
assert_equal 'rb', P.lexer_name_for(RUBY_CODE)
end
def test_lexer_by_nothing
assert_raise MentosError do
P.lexer_name_for(:invalid => true)
end
end
end
class PygmentsLexerClassTest < Test::Unit::TestCase
def test_find
assert_equal 'Ruby', P::Lexer['Ruby'].name
assert_equal 'Ruby', P::Lexer['ruby'].name
assert_equal 'Ruby', P::Lexer['rb'].name
assert_equal 'Ruby', P::Lexer['rake'].name
assert_equal 'Ruby', P::Lexer['gemspec'].name
end
def test_find_by_name
assert_equal P::Lexer['Ruby'], P::Lexer.find_by_name('Ruby')
assert_equal P::Lexer['C'], P::Lexer.find_by_name('C')
end
def test_find_by_alias
assert_equal P::Lexer['Ruby'], P::Lexer.find_by_alias('rb')
assert_equal P::Lexer['Ruby'], P::Lexer.find_by_alias('ruby')
assert_equal P::Lexer['Scala'], P::Lexer.find_by_alias('scala')
assert_equal P::Lexer['Go'], P::Lexer.find_by_alias('go')
end
def test_find_lexer_by_extname
assert_equal P::Lexer['Ruby'], P::Lexer.find_by_extname('.rb')
assert_equal P::Lexer['PHP'], P::Lexer.find_by_extname('.php4')
assert_equal P::Lexer['PHP'], P::Lexer.find_by_extname('.php5')
assert_equal P::Lexer['Groff'], P::Lexer.find_by_extname('.1')
assert_equal P::Lexer['Groff'], P::Lexer.find_by_extname('.3')
assert_equal P::Lexer['C'], P::Lexer.find_by_extname('.c')
assert_equal P::Lexer['Python'], P::Lexer.find_by_extname('.py')
assert_equal P::Lexer['Java'], P::Lexer.find_by_extname('.java')
end
def test_find_lexer_by_mimetype
assert_equal P::Lexer['Ruby'], P::Lexer.find_by_mimetype('text/x-ruby')
assert_equal P::Lexer['JSON'], P::Lexer.find_by_mimetype('application/json')
assert_equal P::Lexer['Python'], P::Lexer.find_by_mimetype('text/x-python')
end
end
class PygmentsCssTest < Test::Unit::TestCase
include Pygments
def test_css
assert_match(/^\.err \{/, P.css)
end
def test_css_prefix
assert_match(/^\.highlight \.err \{/, P.css('.highlight'))
end
def test_css_options
assert_match(/^\.codeerr \{/, P.css(:classprefix => 'code'))
end
def test_css_prefix_and_options
assert_match(/^\.mycode \.codeerr \{/, P.css('.mycode', :classprefix => 'code'))
end
def test_css_default
assert_match '.c { color: #408080; font-style: italic }', P.css
end
def test_css_colorful
assert_match '.c { color: #888888 }', P.css(:style => 'colorful')
end
end
class PygmentsConfigTest < Test::Unit::TestCase
def test_styles
assert P.styles.include?('colorful')
end
def test_filters
assert P.filters.include?('codetagify')
end
def test_lexers
list = P.lexers
assert list.has_key?('Ruby')
assert list['Ruby'][:aliases].include?('duby')
end
def test_formatters
list = P.formatters
assert list.has_key?('Html')
assert list['Html'][:aliases].include?('html')
end
end
|