04_files.rb #2

  • //
  • guest/
  • perforce_software/
  • p4ruby/
  • main/
  • test/
  • 04_files.rb
  • View
  • Commits
  • Open Download .zip Download (3 KB)
class TC_Files < Test::Unit::TestCase

    include P4RubyTest

    def name
	"Test file operations"
    end

    def test_add_files
	assert( p4.connect, "Failed to connect to Perforce server" )
	assert( p4.run_opened.length == 0, "Shouldn't have any open files" )
	Dir.mkdir( "test_files" )
	%w{ foo bar baz }.each do
	    |fn|
	    fn = "test_files/#{fn}.txt"
	    File.open( fn, "w" ) do
		|f|
		f.puts( "This is a test file" )
	    end
	    p4.run_add( fn )
	end
	assert( p4.run_opened.length == 3, "Unexpected number of open files" )

	change = p4.fetch_change
	assert( change.kind_of?( P4::Spec ), "Change form is not a spec" )
	change._description = "Add some test files\n"
	assert( change._description == "Add some test files\n",
	        "Change description not set properly" )
	assert_submit( "Failed to add files", change )

	# Ensure no files are open and that all files are present
	assert( p4.run_opened.length == 0 )
	assert( p4.run_files( 'test_files/...' ).length == 3 )

	# Now edit the files, and submit another revision.
	assert( p4.run_edit( 'test_files/...' ).length == 3 )
	change = p4.fetch_change
	change._description = "Editing the test files"
	assert_submit( "Failed to submit edits", change )
	assert( p4.run_opened.length == 0 )

	# Now branch the files
	assert( p4.run_integ( 'test_files/...', 'test_branch/...' ) )
	change = p4.fetch_change
	change._description = "Branching the test files"
	assert_submit( "Failed to submit branch1", change )
	assert( p4.run_opened.length == 0 )

	# And now branch them again
	assert( p4.run_integ( 'test_files/...', 'test_branch2/...' ) )
	change = p4.fetch_change
	change._description = "Branching the test files again"
	assert_submit( "Failed to submit branch2", change )
	assert( p4.run_opened.length == 0 )

	# Now check out 'p4 filelog'
	files = p4.run_filelog( 'test_files/...' )
	assert( files.length == 3 )

	df = files[ 0 ]
	assert( df.depot_file == "//depot/test_files/bar.txt", df.depot_file )
	assert( df.revisions.length == 2 )
	
	rev = df.revisions[ 0 ]
	assert( rev.rev == 2 )
	assert( rev.integrations.length == 2 )
	assert( rev.integrations[ 0 ].how == "branch into" )
	assert( rev.integrations[ 0 ].file == "//depot/test_branch/bar.txt" )

    	p4.disconnect
    end
    
    #
    # Local method to help ensure submits are working
    #
    def assert_submit( msg, *args )
	assert_block( msg ) do
	    begin
		result = @p4.run_submit( args )
		if( result[-1].has_key?( 'submittedChange' ) )
		    true
		else
		    false
		end
	    rescue P4Exception
		false
	    end
	end
    end

end
# Change User Description Committed
#7 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.
#6 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.
#5 14589 Sven Erik Knop Pulled P4Ruby p10.2 changes back to main.
#4 14529 tony Pull 2007.3 p4-ruby changes back to main.

Integration only change
#3 14522 tony Add copyright notices to the test files.
#2 14518 tony Porting changes for Windows.
A few tweaks to the generated
makefile are required to stop Windows griping about
file permissions on chmod, and since it's sometimes hard
to delete a file immediately after closing it, we have
a couple of retries built-in to the test suite now.

Note that to clean up the test root, we have to shut all the
spawned p4d's down. That means all the clients must disconnect,
so the test cases that connect have all be updated to
disconnect.
#1 14516 tony Change P4Ruby's tests so that there's no longer a specific test
for submit, but rather a whole suite of tests for file operations,
culminating in a test for 'p4 filelog', which is always
interesting...
//guest/perforce_software/p4ruby/main/test/04_add_files.rb
#1 14499 tony Shuffle up the tests to make some room for one that tests setting
and getting of client environment vars.

Also give nice names to the tests while we're there.
//guest/perforce_software/p4ruby/main/test/03_add_files.rb
#1 14491 tony Add first draft of automated test suite for P4Ruby.
Run it using
'ruby test.rb'