# encoding: utf-8
#--
# Copyright (C) 2012 Gitorious AS
#
# This program is free software: you can redistribute it and/or modify
# it under the terms of the GNU Affero General Public License as published by
# the Free Software Foundation, either version 3 of the License, or
# (at your option) any later version.
#
# This program is distributed in the hope that it will be useful,
# but WITHOUT ANY WARRANTY; without even the implied warranty of
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
# GNU Affero General Public License for more details.
#
# You should have received a copy of the GNU Affero General Public License
# along with this program. If not, see .
#++
require "test_helper"
require "makeup/syntax_highlighter"
require "libdolt/view/single_repository"
require "libdolt/view/multi_repository"
require "libdolt/view/blob"
require "libdolt/view/syntax_highlight"
describe Dolt::View::Blob do
include Dolt::View::Blob
include Dolt::View::SyntaxHighlight
describe "#highlight" do
it "highlights a Ruby file" do
html = highlight("file.rb", "class File\n attr_reader :path\nend")
assert_match "class", html
assert_match "File", html
end
it "highlights a YAML file" do
html = highlight("file.yml", "something:\n is: true")
assert_match "something", html
assert_match ":", html
end
it "highlights an .htm file" do
html = highlight("file.htm", "Hey
")
assert_match "<h1>", html
assert_match "Hey</h1>", html
end
it "skips highlighting if lexer is missing" do
html = highlight("file.trololol", "Yeah yeah yeah")
assert_equal "Yeah yeah yeah", html
end
end
describe "#format_blob" do
it "highlights a Ruby file with line nums" do
html = format_blob("file.rb", "class File\n attr_reader :path\nend")
assert_match "", html
assert_match "class", html
end
it "includes lexer as class name" do
html = format_blob("file.rb", "class File\n attr_reader :path\nend")
assert_match "rb", html
end
end
end