diff --git a/test/fixtures/issue10.rb b/test/fixtures/issue10.rb new file mode 100644 index 0000000..93e2940 --- /dev/null +++ b/test/fixtures/issue10.rb @@ -0,0 +1 @@ +hello ąćęłńóśźż diff --git a/test/rocco_test.rb b/test/rocco_test.rb new file mode 100644 index 0000000..7f79aef --- /dev/null +++ b/test/rocco_test.rb @@ -0,0 +1,153 @@ +rootdir = File.dirname(File.dirname(__FILE__)) +$LOAD_PATH.unshift "#{rootdir}/lib" + +require 'test/unit' +begin; require 'turn'; rescue LoadError; end +begin + require 'rdiscount' +rescue LoadError + if !defined?(Gem) + require 'rubygems' + retry + end +end +require 'rocco' + +def roccoize( filename, contents, options = {} ) + Rocco.new( filename, [ filename ], options ) { + contents + } +end + +class RoccoBasicTests < Test::Unit::TestCase + def test_rocco_exists_and_is_instancable + roccoize( "filename.rb", "# Comment 1\ndef codeblock\nend\n" ) + end + + def test_filename + r = roccoize( "filename.rb", "# Comment 1\ndef codeblock\nend\n" ) + assert_equal "filename.rb", r.file + end + + def test_sources + r = roccoize( "filename.rb", "# Comment 1\ndef codeblock\nend\n" ) + assert_equal [ "filename.rb" ], r.sources + end + + def test_sections + r = roccoize( "filename.rb", "# Comment 1\ndef codeblock\nend\n" ) + assert_equal 1, r.sections.length + assert_equal 2, r.sections[ 0 ].length + assert_equal "
Comment 1
\n", r.sections[ 0 ][ 0 ] + assert_equal "def codeblock\nend", r.sections[ 0 ][ 1 ] + end + + def test_parsing + r = Rocco.new( 'test' ) { "" } # Generate throwaway instance so I can test `parse` + assert_equal( + [ + [ [ "# Comment 1" ], [ "def codeblock", "end" ] ] + ], + r.parse( "# Comment 1\ndef codeblock\nend\n" ) + ) + assert_equal( + [ + [ [ "# Comment 1" ], [ "def codeblock" ] ], + [ [ "# Comment 2" ], [ "end" ] ] + ], + r.parse( "# Comment 1\ndef codeblock\n# Comment 2\nend\n" ) + ) + end + + def test_splitting + r = Rocco.new( 'test' ) { "" } # Generate throwaway instance so I can test `split` + assert_equal( + [ + [ " Comment 1" ], + [ "def codeblock\nend" ] + ], + r.split([ [ [ "# Comment 1" ], [ "def codeblock", "end" ] ] ]) + ) + assert_equal( + [ + [ " Comment 1", " Comment 2" ], + [ "def codeblock", "end" ] + ], + r.split( [ + [ [ "# Comment 1" ], [ "def codeblock" ] ], + [ [ "# Comment 2" ], [ "end" ] ] + ] ) + ) + end + +end + +class RoccoIssueTests < Test::Unit::TestCase + def test_issue07_incorrect_parsing_in_c_mode + # Precursor to issue #13 below, Rocco incorrectly parsed C/C++ + # http://github.com/rtomayko/rocco/issues#issue/7 + r = Rocco.new( 'issue7.c', [], { :language => 'c' } ) { + "// *stdio.h* declares *puts*\n#includehello ąćęłńóśźż
\n", + r.sections[0][0] + ) + end + def test_issue12_css_octothorpe_classname_change + # Docco changed some CSS classes. Rocco needs to update its default template. + # http://github.com/rtomayko/rocco/issues#issue/12 + r = Rocco.new( 'issue12.sh' ) { + "# Comment 1\n# Comment 1\nprint 'omg!'" + } + html = r.to_html + assert( + !html.include?( "