From Fedora Project Wiki

(Created page with "{{QA/Test_Case |description=A brief description of the functionality being tested. |setup=Optionally include information on preparing the test environment |actions= Be as specifi...")
 
No edit summary
Line 1: Line 1:
{{QA/Test_Case
{{QA/Test_Case
|description=A brief description of the functionality being tested.
|description=Test adding an SSH key pair to an account.
|setup=Optionally include information on preparing the test environment
|setup
# Follow [[QA:Testcase_create_OpenStack_user_project_and_network]]
# Download an unpack your credentials:
$> sudo nova-manage project zipfile markmc markmc
$> sudo chmod 600 nova.zip
$> sudo chown markmc:markmc nova.zip
$> cd ~/novacreds
$> unzip nova.zip
$> . ./novarc
|actions=
|actions=
Be as specific as required for the target audience.
Generate a key:
# Start here ...
$> ssh-keygen -f nova_key
# Next do this ...
Add it:
# Finally click that
$> euca-add-keypair nova_key > nova_key.priv
Change it permissions:
$> chmod 600 nova*
|results=
|results=
The following must be true to consider this a successful test run. Be brief ... but explicit.  
* Check that <code>nova_key.priv</code> actually contains a key
# Step #1 completes without error
* Check for errors in <code>/var/log/nova/*.log</code>
# The system boots into runlevel 5
# Program completes wth exit code 0
}}
}}


[[Category:OpenStack Test Cases]]
[[Category:OpenStack Test Cases]]
[[Category:Cloud SIG]]
[[Category:Cloud SIG]]

Revision as of 15:06, 17 October 2011

Description

Test adding an SSH key pair to an account.


How to test

Generate a key:

$> ssh-keygen -f nova_key

Add it:

$> euca-add-keypair nova_key > nova_key.priv

Change it permissions:

$> chmod 600 nova*

Expected Results

  • Check that nova_key.priv actually contains a key
  • Check for errors in /var/log/nova/*.log