# vim:ts=2:sw=2:et: #------------------------------------------------------------------------------- # Copyright (c) 1997-2007, 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_Files < Test::Unit::TestCase include P4RubyTest def name "Test file operations" end def test_add_files assert( p4, "Failed to create Perforce client" ) begin assert( p4.connect, "Failed to connect to Perforce server" ) assert( create_client, "Failed to create client workspace" ) 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 delete the test_files assert( p4.run_delete( 'test_files/...' ) ) change = p4.fetch_change change._description = "Delete the test files" assert_submit( "Failed to delete test files", change ) assert( p4.run_opened.length == 0 ) # Now re-add the test_files assert( p4.run_sync( 'test_files/...#2' ) ) assert( p4.run_add( 'test_files/...' ) ) change = p4.fetch_change change._description = "Re-add the test files" assert_submit( "Failed to re-add test files", 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 == 4 ) # Check that the latest revision is as expected rev = df.revisions[ 0 ] assert( rev.rev == 4 ) assert( rev.type == "text" ) assert( rev.time.kind_of?( Time ) ) # Removing this as p4d >= 2010.2 shows 3 integ records, while earlier # servers show only 2. # assert( rev.integrations.length == 2 ) assert( rev.integrations[ 0 ].how == "branch into" ) assert( rev.integrations[ 0 ].file == "//depot/test_branch/bar.txt" ) # Revision #3 is a delete, so it should not have a digest rev = df.revisions[ 1 ] assert( rev.rev == 3 ) assert( rev.action == "delete" ) assert( rev.digest == nil ) ensure p4.disconnect end 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 | |
---|---|---|---|---|---|
#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/04_files.rb | |||||
#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' |