~ahasenack/landscape-client/landscape-client-11.07.1.1-0ubuntu0.11.10.0

« back to all changes in this revision

Viewing changes to landscape/manager/tests/test_config.py

  • Committer: Bazaar Package Importer
  • Author(s): Andreas Hasenack
  • Date: 2010-09-08 15:34:09 UTC
  • mfrom: (1.1.19 upstream)
  • Revision ID: james.westby@ubuntu.com-20100908153409-q9omqf75uv7n3s1w
Tags: 1.5.5-0ubuntu0.10.10.0
* New upstream version (LP: #633468)

  - The --help command line option can now be used without being
    root (LP: #613256).

  - The client Unix sockets and symlinks are now cleaned up at shutdown.
    Without this cleaning, the client could refuse to start because of a PID
    collision (LP: #607747).

  - The network traffic plugin didn't use to take into account integer
    overflows. This would cause the plugin to send negative values
    sometimes (LP: #615371).

  - If a payload had many user activities in it, only the last one would be
    carried out (LP: #617624).

  - The Eucalyptus plugin was not enabled by default, which means the Cloud
    Topology feature of Landscape was not available (LP: #614493).

Show diffs side-by-side

added added

removed removed

Lines of Context:
10
10
        self.config = ManagerConfiguration()
11
11
 
12
12
    def test_plugin_factories(self):
13
 
        """
14
 
        By default all plugins are enabled.
15
 
        """
16
 
        self.assertEquals(self.config.plugin_factories, ALL_PLUGINS)
 
13
        """By default all plugins are enabled."""
 
14
        self.assertEqual(["ProcessKiller", "PackageManager", "UserManager",
 
15
                          "ShutdownManager", "Eucalyptus"],
 
16
                         ALL_PLUGINS)
 
17
        self.assertEqual(ALL_PLUGINS, self.config.plugin_factories)
17
18
 
18
19
    def test_plugin_factories_with_manager_plugins(self):
19
20
        """