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

Unified Diff: chrome/test/data/extensions/api_test/dial/experimental/fetch_device_description.js

Issue 2583853004: [chrome.dial] Adds chrome.dial.fetchDeviceDecription API. (Closed)
Patch Set: Rebase and fix typo. Created 3 years, 11 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
Index: chrome/test/data/extensions/api_test/dial/experimental/fetch_device_description.js
diff --git a/chrome/test/data/extensions/api_test/dial/experimental/fetch_device_description.js b/chrome/test/data/extensions/api_test/dial/experimental/fetch_device_description.js
new file mode 100644
index 0000000000000000000000000000000000000000..60792e265a3f0976006e4aaee40936d9751232f0
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/dial/experimental/fetch_device_description.js
@@ -0,0 +1,30 @@
+// Copyright (c) 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.
+
+onload = function() {
+ chrome.test.runTests([
+ function fetchDeviceDecription() {
+ const fetchDeviceDescriptionCallback = result => {
+ chrome.test.assertNoLastError();
+ chrome.test.assertEq('object', typeof(result));
+ chrome.test.assertEq('http://127.0.0.1/apps', result.appUrl);
+ chrome.test.assertEq('<xml>testDescription</xml>',
+ result.deviceDescription);
+ chrome.test.succeed();
+ };
+ chrome.dial.fetchDeviceDescription('testDevice',
+ fetchDeviceDescriptionCallback);
+ },
+ function fetchDeviceDecriptionFails() {
+ const fetchDeviceDescriptionCallbackFails = result => {
+ chrome.test.assertEq(undefined, result);
+ chrome.test.assertLastError('Device not found');
+ chrome.test.succeed();
+ };
+ chrome.dial.fetchDeviceDescription('unknownDevice',
+ fetchDeviceDescriptionCallbackFails);
+ }
+ // TODO(mfoltz): Test other fetch errors
+ ]);
+};

Powered by Google App Engine
This is Rietveld 408576698