Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(313)

Unified Diff: extensions/test/data/api_test/bluetooth/runtest.js

Issue 2819593003: Initialize BlueZ in app_shell on Linux (Closed)
Patch Set: rebase Created 3 years, 7 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
« no previous file with comments | « extensions/test/data/api_test/bluetooth/manifest.json ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: extensions/test/data/api_test/bluetooth/runtest.js
diff --git a/extensions/test/data/api_test/bluetooth/runtest.js b/extensions/test/data/api_test/bluetooth/runtest.js
new file mode 100644
index 0000000000000000000000000000000000000000..556e678d63f71c6578a4b8aa6478e4d5c9f58059
--- /dev/null
+++ b/extensions/test/data/api_test/bluetooth/runtest.js
@@ -0,0 +1,41 @@
+// Copyright 2017 The Chromium Authors. All rights reserved.
+// Use of this source code is governed by a BSD-style license that can be
+// found in the LICENSE file.
+
+/**
+ * @fileoverview Basic tests of API functions in a real (non-mocked) shell to
+ * ensure they can be called from a particular client or environment.
+ * Tests that verify specific behaviors should be in their own API tests.
+ */
+
+// Tests chrome.bluetooth availability.
+function bluetoothSanityCheck() {
+ chrome.test.assertTrue(
+ !!chrome.bluetooth, 'chrome.bluetooth should be available');
+
+ chrome.bluetooth.getAdapterState(chrome.test.callback());
+ chrome.bluetooth.getDevice(
+ 'AB:CD:EF:01:23:45', chrome.test.callbackFail('Invalid device'));
+ chrome.bluetooth.getDevices(chrome.test.callback());
+
+ // TODO(michaelpg): Re-enable on Chrome OS after crbug.com/711484 is fixed.
+ if (!/CrOS/.test(navigator.userAgent)) {
+ var startDiscoveryCallback = chrome.test.callbackAdded();
+ chrome.bluetooth.startDiscovery(function() {
+ // Ignore errors.
+ chrome.runtime.lastError;
+ startDiscoveryCallback();
+ });
+
+ var stopDiscoveryCallback = chrome.test.callbackAdded();
+ chrome.bluetooth.stopDiscovery(function() {
+ // Ignore errors.
+ chrome.runtime.lastError;
+ stopDiscoveryCallback();
+ });
+ }
+}
+
+chrome.app.runtime.onLaunched.addListener(function() {
+ chrome.test.runTests([bluetoothSanityCheck]);
+});
« no previous file with comments | « extensions/test/data/api_test/bluetooth/manifest.json ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698