diff mbox

[Branch,~linaro-validation/lava-test/trunk] Rev 116: New bluetooth enablement tests from rsalveti

Message ID 20120207231810.28766.75152.launchpad@ackee.canonical.com
State Accepted
Headers show

Commit Message

Paul Larson Feb. 7, 2012, 11:18 p.m. UTC
Merge authors:
  Ricardo Salveti (rsalveti)
Related merge proposals:
  https://code.launchpad.net/~linaro-foundations/lava-test/bluetooth-enablement/+merge/90644
  proposed by: Ricardo Salveti (rsalveti)
  review: Approve - Paul Larson (pwlars)
------------------------------------------------------------
revno: 116 [merge]
committer: Paul Larson <paul.larson@linaro.org>
branch nick: lava-test
timestamp: Tue 2012-02-07 15:13:34 -0800
message:
  New bluetooth enablement tests from rsalveti
added:
  lava_test/test_definitions/bluetooth-enablement.py
modified:
  doc/tests.rst
  lava_test/core/providers.py


--
lp:lava-test
https://code.launchpad.net/~linaro-validation/lava-test/trunk

You are subscribed to branch lp:lava-test.
To unsubscribe from this branch go to https://code.launchpad.net/~linaro-validation/lava-test/trunk/+edit-subscription
diff mbox

Patch

=== modified file 'doc/tests.rst'
--- doc/tests.rst	2012-02-07 23:12:00 +0000
+++ doc/tests.rst	2012-02-07 23:13:34 +0000
@@ -6,6 +6,7 @@ 
 
 The following tests are currently supported in LAVA Test:
 
+ * `bluetooth-enablement`_
  * `bootchart`_
  * `firefox`_
  * `glmemperf`_
@@ -26,6 +27,10 @@ 
  * `xrestop`_
  * `wifi-enablement`_
 
+bluetooth-enablement
++++++++++
+.. automodule:: lava_test.test_definitions.bluetooth-enablement
+
 bootchart
 +++++++++
 .. automodule:: lava_test.test_definitions.bootchart

=== modified file 'lava_test/core/providers.py'
--- lava_test/core/providers.py	2012-02-07 23:12:00 +0000
+++ lava_test/core/providers.py	2012-02-07 23:13:34 +0000
@@ -29,6 +29,7 @@ 
     """
 
     _builtin_tests = [
+        'bluetooth-enablement',
         'bootchart',
         'insanity',
         'firefox',

=== added file 'lava_test/test_definitions/bluetooth-enablement.py'
--- lava_test/test_definitions/bluetooth-enablement.py	1970-01-01 00:00:00 +0000
+++ lava_test/test_definitions/bluetooth-enablement.py	2012-02-07 23:13:34 +0000
@@ -0,0 +1,47 @@ 
+# Copyright (c) 2012 Linaro
+#
+# Author: Ricardo Salveti <rsalveti@linaro.org>
+#
+# This program is free software: you can redistribute it and/or modify
+# it under the terms of the GNU General Public License as published by
+# the Free Software Foundation, either version 3 of the License, or
+# (at your option) any later version.
+#
+# This program is distributed in the hope that it will be useful,
+# but WITHOUT ANY WARRANTY; without even the implied warranty of
+# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
+# GNU General Public License for more details.
+#
+# You should have received a copy of the GNU General Public License
+# along with this program.  If not, see <http://www.gnu.org/licenses/>.
+
+"""
+The Bluetooth Enablement test cases helps validating basic bluetooth
+functionality, like if the adapter is available, able to scan, pair with
+other device and such.
+
+**URL:** https://code.launchpad.net/~linaro-foundations/linaro-ubuntu/lava-test-bt-enablement
+
+**Default Options:** None
+"""
+
+from lava_test.core.installers import TestInstaller
+from lava_test.core.parsers import TestParser
+from lava_test.core.runners import TestRunner
+from lava_test.core.tests import Test
+
+DEFAULT_OPTIONS = ""
+INSTALLSTEPS = ["bzr branch lp:~linaro-foundations/linaro-ubuntu/lava-test-bt-enablement bluetooth-enablement"]
+DEPS = ["bzr", "bluez"]
+RUNSTEPS = ["cd bluetooth-enablement; sudo bash -x ./run-test.sh"]
+PATTERN = "(?P<test_case_id>[a-zA-Z0-9_-]+):\s(?P<result>\w+)"
+FIXUPS = {
+        "PASS": "pass",
+        "FAIL": "fail"
+        }
+
+testinst = TestInstaller(INSTALLSTEPS, deps=DEPS)
+testrun = TestRunner(RUNSTEPS, default_options=DEFAULT_OPTIONS)
+testparser = TestParser(PATTERN, fixupdict = FIXUPS)
+testobj = Test(test_id="bluetooth-enablement", installer=testinst,
+                          runner=testrun, parser=testparser)