# 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_Password < Test::Unit::TestCase include P4RubyTest def name "Test 'p4 password' and 'p4 login'" end def test_password assert(p4, 'Failed to create Perforce client') ticket_file = client_root + '/.non-exist' p4.ticket_file = ticket_file assert_equal(p4.ticket_file, ticket_file, 'Ticket file not set correctly') assert(p4.run_tickets.empty?, 'Tickets not empty for non-existent file.') ticket_file = client_root p4.ticket_file = ticket_file assert_equal(p4.ticket_file, ticket_file, 'Ticket file not set correctly') assert(p4.run_tickets.empty?, 'Tickets not empty for directory.') ticket_file = client_root + '/.p4tickets' p4.ticket_file = ticket_file assert_equal(p4.ticket_file, ticket_file, 'Ticket file not set correctly') begin assert(p4.connect, 'Failed to connect to Perforce server') assert(p4.fetch_user, 'Failed to fetch user record') assert(p4.run_password('', 'foo'), 'Failed to set password') p4.password = 'foo' assert(p4.password == 'foo', 'Password not set correctly') assert(p4.run_login, 'Failed to login to server') # Note: p4.password is set by the login above to the ticket. assert(p4.run_password('foo', ''), 'Failed to clear password') old_user = p4.user # Ensure that ticket file is correctly parsed for user names # that contain a ':'. p4.user = 'foo:bar' user = p4.fetch_user('foo:bar') p4.save_user(user) assert(p4.run_password('', 'foo'), 'Failed to set password') p4.password = 'foo' assert(p4.password == 'foo', 'Password not set correctly') assert(p4.run_login, 'Failed to login to server') # Note: p4.password is set by the login above to the ticket. assert(p4.run_password('foo', ''), 'Failed to clear password') assert(File.exist?(ticket_file), 'Ticket file not created') ensure p4.user = old_user if old_user p4.disconnect end tickets = p4.run_tickets assert_equal(2, tickets.length, 'Unexpected number of tickets found.') tickets.each do |ticket| assert_kind_of(Hash, ticket, 'Ticket entry is not a Hash object') assert_not_nil(ticket['Host'], 'Host field not set in ticket.') assert_not_nil(ticket['User'], 'User field not set in ticket.') assert_not_nil(ticket['Ticket'], 'Ticket field not set in ticket.') end end end
# | Change | User | Description | Committed | |
---|---|---|---|---|---|
#1 | 16214 | perforce_software | Move the p15-1 line. | ||
//guest/perforce_software/p4rub/p15-1/test/10_password_test.rb | |||||
#1 | 16213 | perforce_software | Move files to proper depot path to view files correctly from project page. | ||
//guest/perforce_software/p4ruby/p15.1/test/10_password_test.rb | |||||
#1 | 14756 | tjuricek | p15.1 branch of p4ruby. | ||
//guest/perforce_software/p4ruby/main/test/10_password_test.rb | |||||
#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 <tjuricek@perforce.com> 1415838551 -0800 Committer: Tristan Juricek <tjuricek@perforce.com> 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/10_password.rb | |||||
#7 | 14652 | jmistry |
YAC to P4#run_tickets Change in format to return an array of keyed hashes. For example: { 'Ticket' => 'D6EBA4584B635E19EA579E33EB0195DA', 'User' => 'pallen', 'Host' => 'localhost:2003' } |
||
#6 | 14648 | jmistry |
Follow-on to change 500964 Forgot to submit unit test updates. Also, instead of returning nil for a directory or non-existent file, it seems more consistent to return an empty array. |
||
#5 | 14643 | jmistry |
Implement P4#tickets for P4Ruby P4#tickets checks P4#ticket_file, if it's a directory or does not exist it just returns 'nil'. Otherwise it iterates over the file and inserts each line into an array of hashes. Each hash is a single ticket entry: key: ticket key (hostname:port=user) value: ticket value Update unit test to test new functionality. |
||
#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 | 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 | 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/05_password.rb | |||||
#2 | 14498 | tony |
Add P4#ticket_file and P4#ticket_file= methods to get and set the ticket file. Note that P4#ticket_file will only return something if a value has been previously set using P4#ticket_file=(). There's no way, in the existing P4 API to get the current ticket file. User-visible change to be documented in Scripting Interfaces Guide |
||
#1 | 14492 | tony |
Rename P4#input to P4#input=, and fix all pre-existing calls. The main existing callers are p4.run_password, p4.run_submit and and p4.run_login. There was also a bug with p4.run_password() which meant that you couldn't change a user's password if they hadn't already set one. Fixed that while I was there and added a test case to check that password setting, use and clearing works. |