98_unicode_test.rb #1

  • //
  • guest/
  • surajdolby/
  • p4ruby/
  • test/
  • 98_unicode_test.rb
  • View
  • Commits
  • Open Download .zip Download (4 KB)
# encoding: UTF-8
# vim:ts=2:sw=2:et:
#-------------------------------------------------------------------------------
# Copyright (c) 2010, Perforce Software, Inc.  All rights reserved. 
#  
# Redistribution and use in source and binary forms, with or without 
# modification, are permitted provided that the following conditions are met: 
#  
# 1.  Redistributions of source code must retain the above copyright 
#     notice, this list of conditions and the following disclaimer. 
#  
# 2.  Redistributions in binary form must reproduce the above copyright 
#     notice, this list of conditions and the following disclaimer in the 
#     documentation and/or other materials provided with the distribution. 
#  
# THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS  
# "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 
# LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS  
# FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL PERFORCE  
# SOFTWARE, INC. BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,  
# SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT  
# LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, 
# DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON  
# ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR  
# TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF  
# THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH  
# DAMAGE. 
#-------------------------------------------------------------------------------

class TC_Unicode < Test::Unit::TestCase

  include P4RubyTest

  def name
    "Test unicode support"
  end

  def test_unicode
    enable_unicode()
    assert( p4, "Failed to create Perforce client object" )
    p4.charset = "iso8859-1"

    begin
      assert( p4.connect, "Failed to connect to Perforce server" )
      assert( p4.server_unicode?, "Server should be in unicode mode" )
      assert( create_client, "Failed to create test workspace" )

      # Add a test file with a £ sign in it. That has the high bit set
      # so we can test it in both iso8859-1 and utf-8

      tf = "unicode.txt"
      File.open( tf, "w" ) do
        |f|
        f.puts( "This file cost \xa31" )
      end

      p4.run_add( tf )
      assert( p4.run_opened.length() == 1, "There should be only 1 file open")

      p4.run_submit( '-d', "Add unicode test file" )
      assert( p4.run_opened.empty?, "There should be no files open")

      # Now remove the file from the workspace, disconnect, switch to 
      # utf8, reconnect and resync the file. Then we'll print it and
      # see that the content contains the unicode sequence for the £
      # symbol.

      p4.run_sync( "#{tf}#none" )
    ensure
      p4.disconnect
    end

    p4.charset = "utf8"
    begin
      assert( p4.connect, "Failed to connect to Perforce server" )
      p4.run_sync
      buf = ""
      File.open( tf ) do
        |f|
        buf = f.read.chomp
      end

      #	The test is subtly different between ruby versions.  For ruby
      #	1.9 we need to force the encoding to 'UTF-8' (rather than the 
      #	current loca), because 'p4.charset'	has been set to 'utf8'.
      if RUBY_VERSION.split('.')[0].to_i >= 2 ||
          (RUBY_VERSION.split('.')[0].to_i == 1 and RUBY_VERSION.split('.')[1].to_i > 8)
        buf.force_encoding( "UTF-8" )
        assert( buf == 'This file cost £1', "Unicode support broken" )
      else
        assert( buf == "This file cost \xC2\xA31", "Unicode support broken" )
      end
    ensure
      p4.disconnect
    end
  end
end
# Change User Description Committed
#1 15524 surajdolby Populate -o //guest/perforce_software/p4ruby/main/...
//guest/surajdolby/p4ruby/....
//guest/perforce_software/p4ruby/main/test/98_unicode_test.rb
#6 14705 tjuricek Merge branch 'master' of gfprod:p4ruby-check

Conflicts:
    test/02_environment_test.rb
    test/98_unicode_test.rb

Imported from Git
 Author: Tristan Juricek <[email protected]> 1421272022 -0800
 Committer: Tristan Juricek <[email protected]> 1421272022 -0800
 sha1: 2a9e62acaaca876c3fd04cd3ea1c3228003885e2
 push-state: complete
 parent-changes: cab72389a4abd47d0ec2f148592ad0f640ec1c6b=[969219]/2950fbb70d4b00f06d1bf6a5474b0451e172a358=[985877]
#5 14704 tjuricek Fix references to RUBY_VERSION which happen when the version < 2.0.

Imported from Git
 Author: Tristan Juricek <[email protected]> 1421271811 -0800
 Committer: Tristan Juricek <[email protected]> 1421271852 -0800
 sha1: 98e913af00b07641353e9836aa1a5d977693e0f2
 push-state: complete
 parent-changes: 98f39e4dc235567756c22213b4c64be799554e4d=[985029]
#4 14685 tjuricek First merge into main of the p4ruby-check project, used to validate the p4ruby gem (without any access to source).

This does require using p4util:

   bundle exec p4util download p4d

See tools/test_p4ruby_gem.sh for the exact process used to validate the gem.

Imported from Git
 Author: Tristan Juricek <[email protected]> 1415838551 -0800
 Committer: Tristan Juricek <[email protected]> 1415838551 -0800
 sha1: bc41f30d8c51a652defeee59f438d1446091ee61
 push-state: complete
 parent-changes: 97f4a83740ecd006070c19775bd9a3abba2f9804=[946222]/1256d8281e6fbfe9f2019fd3756d0b4730beb5c5=[960938]
#3 14684 Git Fusion Git Fusion branch management

Imported from Git
 ghost-of-change-num: 946222
 ghost-of-sha1: 97f4a83740ecd006070c19775bd9a3abba2f9804
 ghost-precedes-sha1: bc41f30d8c51a652defeee59f438d1446091ee61
 push-state: incomplete
#2 14682 Git Fusion Git Fusion branch management

Imported from Git
 ghost-of-change-num: 960958
 ghost-of-sha1: 005052ae424bd69f426f7209e741ca1c8c3253c7
 ghost-precedes-sha1: ad052c71a568ef12165e143a6866ad9ceffbb4a1
 parent-branch: None@960958
 push-state: incomplete
#1 14676 tony Rework P4Ruby unit tests so they they are actually units.
Now the
test order is irrelevant as all tests are standalone. Tidied up
the code formatting as well and removed all the tabs from the ruby
sources files. Added a modeline for vim users so consistent
indentation will be used.
//guest/perforce_software/p4ruby/main/test/98_unicode.rb
#4 14610 jmistry Fix unlink error on unit tests

Wrap the connect/disconnect in begin/ensure blocks to
ensure that the client disconnect even if there are failures
in a unit test.

Fix unicode unit test for 1.9.  When the contents of a file
is stored in a String object, ruby 1.9 sets the String's
encoding to the current locale.  This is overridden in the
test case and set to the correct value.  This may need to
be documented.

user visible change.
#3 14606 jmistry Fix unicode test case

Set 'encoding' at the beginning of the script (using a 'magic' Ruby comment), so
that the strings are encoded correctly.  The test case now passes for Ruby 1.8 and 1.9.

Also changed class name from 'TC_Output' to 'TC_Track'.  The old name collided with
the class defined in '14_output.rb', so that test case wasn't running.  Only noticed
when testing with Ruby 1.9, so not sure how long that test has been skipped.
#2 14578 tony Pull 2010.1 changes into main
#1 14575 tony Add some simple unicode tests to prove that P4Ruby supports
unicode mode. It has done so for many years, but it's nice
to have some tests to make sure it doesn't get broken.

Testing infrastructure change only