src/tests/gui/t_pm_helpabout.py
changeset 2991 75e616731cc3
parent 2990 2cc6693a7d83
child 2992 e48a94cff862
--- a/src/tests/gui/t_pm_helpabout.py	Fri Sep 27 11:21:00 2013 -0700
+++ /dev/null	Thu Jan 01 00:00:00 1970 +0000
@@ -1,84 +0,0 @@
-#!/usr/bin/python
-#
-# CDDL HEADER START
-#
-# The contents of this file are subject to the terms of the
-# Common Development and Distribution License (the "License").
-# You may not use this file except in compliance with the License.
-#
-# You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE
-# or http://www.opensolaris.org/os/licensing.
-# See the License for the specific language governing permissions
-# and limitations under the License.
-#
-# When distributing Covered Code, include this CDDL HEADER in each
-# file and include the License file at usr/src/OPENSOLARIS.LICENSE.
-# If applicable, add the following below this CDDL HEADER, with the
-# fields enclosed by brackets "[]" replaced with your own identifying
-# information: Portions Copyright [yyyy] [name of copyright owner]
-#
-# CDDL HEADER END
-#
-
-# Copyright (c) 2009, 2011, Oracle and/or its affiliates. All rights reserved.
-
-import testutils
-if __name__ == "__main__":
-        testutils.setup_environment("../../../proto")
-import pkg5unittest
-import unittest
-
-try:
-        import ldtp
-        import ldtputils
-        if not "getmin" in dir(ldtp):
-            raise ImportError
-except ImportError:
-        raise ImportError, "ldtp 2.X package not installed."
-
-class TestPkgGuiHelp(pkg5unittest.SingleDepotTestCase):
-        # Only start/stop the depot once (instead of for every test)
-        persistent_setup = True
-
-        # pygtk requires unicode as the default encoding.
-        default_utf8 = True
-
-        foo10 = """
-            open [email protected],5.11-0
-            add set name="description" value="Some package1 description"
-            close """
-
-        def setUp(self, debug_features=None):
-                pkg5unittest.SingleDepotTestCase.setUp(self)
-                self.pkgsend_bulk(self.rurl, self.foo10)
-                self.image_create(self.rurl)
-                self.pm_str = "%s/usr/bin/packagemanager" % pkg5unittest.g_proto_area
-
-        def tearDown(self):
-                pkg5unittest.SingleDepotTestCase.tearDown(self)
-
-        def testPmHelp(self):
-                ldtp.launchapp(self.pm_str,["-R", self.get_img_path()])
-                ldtp.waittillguiexist('Package Manager', state = ldtp.state.ENABLED)
-
-                ldtp.selectmenuitem('Package Manager', 'mnuHelp;mnuContents')
-
-                # Verify result
-                ldtp.waittillguiexist('*Online Help')
-                self.assertEqual(ldtp.guiexist('*Online Help'), 1)
-
-                ldtp.selectmenuitem('*Online Help', 'mnuCloseWindow')
-
-                ldtp.selectmenuitem('Package Manager', 'mnuHelp;mnuAbout')
-
-                # Verify result
-                self.assertEqual(ldtp.guiexist('About Package Manager'), 1)
-
-                ldtp.waittillguiexist('dlgAboutPackageManager')
-                ldtp.click('dlgAboutPackageManager', 'btnClose')
-
-                # Quit Package Manager
-                ldtp.selectmenuitem('Package Manager', 'mnuFile;mnuQuit')
-
-if __name__ == "__main__":
-	unittest.main()