mirror of
				https://github.com/ruby/ruby.git
				synced 2022-11-09 12:17:21 -05:00 
			
		
		
		
	 fc6d58ccc4
			
		
	
	
		fc6d58ccc4
		
	
	
	
	
		
			
			string. Thanks nobu and tDiary dev members. [Bug #3909] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@29484 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
		
			
				
	
	
		
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
			
		
		
	
	
			38 lines
		
	
	
	
		
			1.2 KiB
		
	
	
	
		
			Ruby
		
	
	
	
	
	
| require 'test/unit'
 | |
| require 'cgi'
 | |
| require 'stringio'
 | |
| 
 | |
| 
 | |
| class CGIUtilTest < Test::Unit::TestCase
 | |
| 
 | |
| 
 | |
|   def setup
 | |
|     ENV['REQUEST_METHOD'] = 'GET'
 | |
|     @str1="&<>\" \xE3\x82\x86\xE3\x82\x93\xE3\x82\x86\xE3\x82\x93"
 | |
|     @str1.force_encoding("UTF-8") if defined?(::Encoding)
 | |
|   end
 | |
| 
 | |
|   def teardown
 | |
|     %W[REQUEST_METHOD SCRIPT_NAME].each do |name|
 | |
|       ENV.delete(name)
 | |
|     end
 | |
|   end
 | |
| 
 | |
| 
 | |
|   def test_cgi_escape
 | |
|     assert_equal('%26%3C%3E%22+%E3%82%86%E3%82%93%E3%82%86%E3%82%93', CGI::escape(@str1))
 | |
|     assert_equal('%26%3C%3E%22+%E3%82%86%E3%82%93%E3%82%86%E3%82%93'.ascii_only?, CGI::escape(@str1).ascii_only?) if defined?(::Encoding)
 | |
|   end
 | |
| 
 | |
|   def test_cgi_unescape
 | |
|     assert_equal(@str1, CGI::unescape('%26%3C%3E%22+%E3%82%86%E3%82%93%E3%82%86%E3%82%93'))
 | |
|     assert_equal(@str1.encoding, CGI::unescape('%26%3C%3E%22+%E3%82%86%E3%82%93%E3%82%86%E3%82%93').encoding) if defined?(::Encoding)
 | |
|     assert_equal("\u{30E1 30E2 30EA 691C 7D22}", CGI.unescape("\u{30E1 30E2 30EA}%E6%A4%9C%E7%B4%A2"))
 | |
|   end
 | |
| 
 | |
|   def test_cgi_pretty
 | |
|     assert_equal("<HTML>\n  <BODY>\n  </BODY>\n</HTML>\n",CGI::pretty("<HTML><BODY></BODY></HTML>"))
 | |
|     assert_equal("<HTML>\n\t<BODY>\n\t</BODY>\n</HTML>\n",CGI::pretty("<HTML><BODY></BODY></HTML>","\t"))
 | |
|   end
 | |
| 
 | |
| end
 |