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

Unified Diff: chrome/test/data/extensions/api_test/log_private/dump_logs/test.js

Issue 329853010: Additional methods for chrome.logPrivate API (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: rebase Created 6 years, 5 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/log_private/dump_logs/test.js
diff --git a/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js b/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js
new file mode 100644
index 0000000000000000000000000000000000000000..58d307fd7b321169321d778888c581409e6834d4
--- /dev/null
+++ b/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js
@@ -0,0 +1,53 @@
+// Copyright 2014 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.
+
+chrome.test.getConfig(function(config) {
+ runAllTests('http://www.test.com:' + config.testServer.port);
+});
+
+function runAllTests(testServerUrl) {
+ chrome.test.runTests([
+ function dumpLogsTest() {
+ chrome.logPrivate.dumpLogs(function(fileEntry) {
+ if (!fileEntry.name.match(/\.tar\.gz$/g)) {
+ chrome.test.fail('Invalid file type: '+ fileEntry.name);
+ return;
+ }
+
+ fileEntry.file(function(file) {
+ var reader = new FileReader();
+ reader.onloadend = function(e) {
+ if (this.result.byteLength > 0)
+ chrome.test.succeed();
+ else
+ chrome.test.fail('Invalid log file content');
+ };
+ reader.readAsArrayBuffer(file);
+ },
+ function() {
+ chrome.test.fail('File reading error');
+ });
+ });
+ },
+ function captureNetworkEvents() {
+ chrome.logPrivate.onCapturedEvents.addListener(function(entries) {
+ for (var i = 0; i < entries.length; i++) {
+ // Find our XHR request from below:
+ if (entries[i].params && entries[i].params.url &&
+ entries[i].params.url.match(/www\.test\.com/g)) {
+ chrome.logPrivate.stopEventRecorder('network', function() {
+ chrome.test.succeed();
+ });
+ }
+ }
+ });
+ chrome.logPrivate.startEventRecorder('network', 'capture', function() {
+ var req = new XMLHttpRequest();
+ req.onreadystatechange = function() {}
+ req.open('GET', testServerUrl, true);
+ req.send();
+ });
+ }
+ ]);
+}
« no previous file with comments | « chrome/test/data/extensions/api_test/log_private/dump_logs/manifest.json ('k') | chromeos/dbus/debug_daemon_client.h » ('j') | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698