Document unittest mechanism, dependency changes
[kamaki] / docs / setup.rst
index c09c4c7..1a3a53e 100644 (file)
@@ -1,57 +1,74 @@
-Set up
-======
+Setup
+=====
 
-Kamaki is easy to install from source or as a package. Some ui features are optional and can be install seperately. Kamaki behavior can be configured in the kamaki config file.
+Kamaki is easy to install from source or as a package. Some ui features are optional and can be install separately. Kamaki behavior can be configured in the kamaki config file.
 
-Requirements
-------------
+Quick Setup
+-----------
 
-* python 2.6 or better
+Kamaki interfaces rely on a list of configuration options. Be default, they are configured to communicate with the `Okeanos IaaS <http://okeanos.grnet.gr>`_.
 
-* snf-common 0.10 or better
+.. note:: It is essential for users to get a configuration token (okeanos.grnet.gr users go `here <https://accounts.okeanos.grnet.gr/im/>`_) and provide it to kamaki:
 
-The snf-common package is part of the Synnefo project of the Greek Research and Development Network and is available from the same official sources as Kamaki (e.g. http://apt.dev.grnet.gr ).
+
+.. code-block:: console
+    :emphasize-lines: 1
+
+    Example 1.1: Set user token to myt0k3n==
+
+    $ kamaki set token myt0k3n==
 
 Optional features
 -----------------
 
+For installing any or all of the following, consult the `kamaki installation guide <installation.html#install-ansicolors>`_
+
 * ansicolors
-    * Make command line / console user interface responses pretier with text formating (colors, bold, etc.)
+    * Make command line / console user interface responses prettier with text formating (colors, bold, etc.)
     * Can be switched on/off in kamaki configuration file: colors=on/off
-    * Installation: pip install ansicolors
+    * Has not been tested on non unix / linux based platforms
 
-* progressbar
-    * Attach progressbars to various kamaki commands (e.g. kamaki store upload)
-    * Installation: pip install progressbar
+* mock 
+    * For kamaki contributors only
+    * Allow unittests to run on kamaki.clients package
+    * Needs mock version 1.X or better
 
 Any of the above features can be installed at any time before or after kamaki installation.
 
 Configuration options
 ---------------------
 
-Kamaki comes with preset default values to all configuration options. All vital configurion options are set to use the okeanos.grnet.gr cloud services. User information is not included and should be provided either through the kamaki config command or by editing the configuration file.
+Kamaki comes with preset default values to all configuration options. All vital configuration options are set to use the okeanos.grnet.gr cloud services. User information is not included and should be provided either through the kamaki config command or by editing the configuration file.
 
-Kamaki configuration options are vital for correct Kamaki behavior. An incorrect option may render some command groups disfunctional. There are two ways of managing configuration options: edit the config file or use the kamaki config command.
+Kamaki configuration options are vital for correct Kamaki behavior. An incorrect option may render some command groups dysfunctional. There are two ways of managing configuration options: edit the config file or use the kamaki config command.
 
 Using multiple setups
 ^^^^^^^^^^^^^^^^^^^^^
 
 Kamaki setups are stored in configuration files. By default, a Kamaki installation stores options in *.kamakirc* file located at the user home directory.
 
-If a user needs to switch between different setups, Kamaki can explicitely load configuration files with the --config option:
+If a user needs to switch between different setups, Kamaki can explicitly load configuration files with the --config option:
+
+.. code-block:: console
 
-*kamaki --config <custom_config_file_path> [other options]*
+    $ kamaki --config <custom_config_file_path> [other options]
 
 Using many different configuration files for different cloud services is encouraged.
 
 Modifying options at runtime
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-All kamaki commands can be used with the -o option in order to overide configuration options at runtime. For example:
+All kamaki commands can be used with the -o option in order to override configuration options at runtime. For example::
+
+.. code-block:: console
 
-*kamaki store list -o global.account=anotheraccount -o global.token=aT0k3n==*
+    $ kamaki store list -o global.account=anotheraccount -o global.token=aT0k3n==
 
-will call *kamaki store list* with the specified options, but the initial global.account and global.token values will be restored afterwards.
+will invoke *kamaki store list* with the specified options, but the initial global.account and global.token values will be restored to initial values afterwards.
+
+.. note:: on-the-fly calls to store require users to explicetely provide the account uuid corresponding to this token. The account is actually the uuid field at the response of the following call::
+
+    $kamaki astakos authenticate aT0k3n==
 
 Editing options
 ^^^^^^^^^^^^^^^
@@ -67,7 +84,7 @@ Kamaki config command allows users to see and manage all configuration options.
 * kamaki config set <group.option> <value>
     set the group.option to value
 
-*kamaki config delete <group.option>
+* kamaki config delete <group.option>
     delete a configuration option
 
 The above commands cause option values to be permanently stored in the Kamaki configuration file.
@@ -75,34 +92,33 @@ The above commands cause option values to be permanently stored in the Kamaki co
 Editing the configuration file
 ^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^
 
-The configuration file is a simple text file that can be created by the user.d
+The configuration file is a simple text file that can be created by the user.
 
 A simple way to create the configuration file is to set a configuration option using the kamaki config command. For example:
 
-*kamaki config set account myusername@mydomain.com*
+.. code-block:: console
+
+    $ kamaki config set token myT0k3N==
 
-In the above example, if the kamaki configuration file does not exist, it will be created with all the default values plus the *global.account* option set to *myusername@mydomain.com* value.
+In the above example, if the kamaki configuration file does not exist, it will be created with all the default values plus the *global.token* option set to *myT0k3n==* value.
 
-The configuration file is formated so that it can be parsed by the python Config Parser module. It consists of command sections that are denoted with brackets. Every section contains variables with values. For example:
+The configuration file is formatted so that it can be parsed by the python ConfigParser module. It consists of command sections that are denoted with brackets. Every section contains variables with values. For example::
 
-*[store]*
-*url=https://okeanos.grnet.gr/pithos*
-*account=myaccount@mydomain.com*
+    [store]
+    url=https://okeanos.grnet.gr/pithos
+    token=my0th3rT0k3n==
 
-two configuration options are created: *store.url* and *store.account*. These values will be loaded at every future kamaki execution.
+two configuration options are created: *store.url* and *store.token*. These values will be loaded at every future kamaki execution.
 
 Available options
 ^^^^^^^^^^^^^^^^^
 
-The [global] group is treated by kamaki as a generic group for arbitary options, and it is used as a super-group for vital Kamaki options like account, token, or url. For example if global.account option is set and store.account option is not set, store services will use the global.account option instead. In case of conflict, the most specific options overide the global ones.
+The [global] group is treated by kamaki as a generic group for arbitrary options, and it is used as a super-group for vital Kamaki options, namely token, url, cli. In case of conflict, the most specific options overrides the global ones.
 
 * global.colors <on|off>
-    enable/dissable colors in command line based uis. Requires ansicolors, otherwise it is ignored
+    enable / disable colors in command line based uis. Requires ansicolors, otherwise it is ignored
 
-* global.account <account name>
-    the username or user email that is user to connect to the cloud service. It can be ommited if provided as a service-specific option
-
-* global.token <user authedication token>
+* global.token <user authentication token>
 
 * store.cli <UI command specifications for store>
     a special package that is used to load storage commands to kamaki UIs. Don't touch this unless if you know what you are doing.
@@ -110,8 +126,8 @@ The [global] group is treated by kamaki as a generic group for arbitary options,
 * store.url <OOS storage or Pithos+ service url>
     the url of the OOS storage or Pithos+ service. Set to Okeanos.grnet.gr Pithos+ storage service by default. Users should set a different value if they need to use a different storage service.
 
-* store.account <account name>
-    if set, it overides possible global.account option for store level commands.
+* store.token <token>
+    it set, it overrides possible global.token option for store level commands
 
 * compute.url <OOS compute or Cyclades service url>
     the url of the OOS compute or Cyclades service. Set to Okeanos.grnet.gr Cyclades IaaS service by default. Users should set a different value if they need to use a different IaaS service.
@@ -125,10 +141,10 @@ The [global] group is treated by kamaki as a generic group for arbitary options,
 * network.cli <UI command specifications for virtual networks>
     a special package that is used to load cyclades virtual network commands to kamaki UIs. Don't touch this unless you know what you are doing.
 
-* image.url <Glance image service url>
-    the url of the Glance service. Set to Okeanos.grnet.gr Plankton service be default. Users should set a different value if they need to use a different service.
+* image.url <Plankton image service url>
+    the url of the Plankton service. Set to Okeanos.grnet.gr Plankton service be default. Users should set a different value if they need to use a different service.
 
-* image.cli <UI command specifications for Glance and Cyclades image service>
+* image.cli <UI command specifications for Plankton and Cyclades image service>
     a special package that is used to load image-related commands to kamaki UIs. Don't touch this unless you know what you are doing.
 
 * astakos.url <Astakos authentication service url>
@@ -136,3 +152,115 @@ The [global] group is treated by kamaki as a generic group for arbitary options,
 
 * astakos.cli <UI command specifications for Astakos authentication service>
     a special package that is used to load astakos-related commands to kamaki UIs. Don't touch this unless you know what you are doing.
+
+* history.file <history file path>
+    the path of a simple file for inter-session kamaki history. Make sure kamaki is executed in a context where this file is accessible for reading and writing. Kamaki automatically creates the file if it doesn't exist
+
+Hidden features
+^^^^^^^^^^^^^^^
+
+The livetest suite
+""""""""""""""""""
+
+Kamaki contains a live test suite for the kamaki.clients API, where "live" means that the tests are performed against active services that up and running. The live test package is named "livetest", it is accessible as kamaki.clients.livetest and it is designed to check the actual relation between kamaki and synnefo services.
+
+The livetest suite can be activated with the following option on the configuration file::
+
+    [livetest]
+    cli=livetest_cli
+
+In most tests, livetest will run as long as an Astakos identity manager service is accessible and kamaki is set up to authenticate a valid token on this server.
+
+In specific, a setup file needs at least the following mandatory settings in the configuration file:
+
+* If authentication information is used for default kamaki clients::
+
+    [astakos]
+    url=<Astakos Identity Manager URL>
+    token=<A valid user token>
+
+* else if this authentication information is only for testing add this under [livetest]::
+
+    astakos_url=<Astakos Identity Manager URL>
+    astakos_token=<A valid user token>
+
+Each service tested in livetest might need some more options under the [livetest] label, as shown bellow:
+
+* kamaki livetest astakos::
+
+    astakos_email = <The valid email of testing user>
+    astakos_name = <The exact "real" name of testing user>
+    astakos_username = <The username of the testing user>
+    astakos_uuid = <The valid unique user id of the testing user>
+
+* kamaki livetest pithos::
+
+    astakos_uuid = <The valid unique user id of the testing user>
+
+* kamaki livetest cyclades / image::
+
+    image_id = <A valid image id used for testing>
+    image_local_path = <The local path of the testing image>
+    image_details = <A text file containing testing image details in a python dict>
+
+    - example image.details content:
+    {
+        u'id': u'b3e68235-3abd-4d60-adfe-1379a4f8d3fe',
+        u'metadata': {
+            u'values': {
+                u'description': u'Debian 6.0.6 (Squeeze) Base System',
+                u'gui': u'No GUI',
+                u'kernel': u'2.6.32',
+                u'os': u'debian',
+                u'osfamily': u'linux',
+                u'root_partition': u'1',
+                u'sortorder': u'1',
+                u'users': u'root'
+            }
+        },
+        u'name': u'Debian Base',
+        u'progress': u'100',
+        u'status': u'ACTIVE',
+        u'created': u'2012-11-19T14:54:57+00:00',
+        u'updated': u'2012-11-19T15:29:51+00:00'
+    }
+
+    flavor_details = <A text file containing the testing images' flavor details in a python dict>
+
+    - example flavor.details content:
+    {
+        u'name': u'C1R1drbd',
+        u'ram': 1024,
+        u'id': 1,
+        u'SNF:disk_template': u'drbd',
+        u'disk': 20,
+        u'cpu': 1
+    }
+
+After setup, kamaki can run all tests::
+
+    $ kamaki livetest all
+
+a specific test (e.g. astakos)::
+
+    $ kamaki livetest astakos
+
+or a specific method from a service (e.g. astakos authenticate)::
+
+    $ kamaki livetest astakos authenticate
+
+The quotaholder client
+""""""""""""""""""""""
+
+A quotaholder client is introduced as an advanced feature. Quotaholder client is mostly used as a client library for accessing a synnefo quota service, but it can also be allowed as a kamaki command set, but setting the quotaholder.cli and quotaholder.url methods::
+
+    [quotaholder]
+    cli=quotaholder_cli
+    url=<URL of quotaholder service>
+
+Quotaholder is not tested in livetest
+
+The unit testing system
+"""""""""""""""""""""""
+
+Kamaki container a set of finegrained unit tests for the kamaki.clients package. This set is not used when kamaki is running. Instead, it is aimed to developers who debug or extent the kamaki clients library. For more information, check the `Going Agile <developers/extending-clients-api.html#going-agile>`_ entry at the `developers section <developers/extending-clients-api.html>`_.