Chromium Code Reviews| 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..eb478852d4fa38c96bffefa128378032bfd1a795 |
| --- /dev/null |
| +++ b/chrome/test/data/extensions/api_test/log_private/dump_logs/test.js |
| @@ -0,0 +1,23 @@ |
| +// Copyright (c) 2014 The Chromium Authors. All rights reserved. |
|
Zachary Kuznia
2014/06/25 00:05:53
nit: no (c)
|
| +// Use of this source code is governed by a BSD-style license that can be |
| +// found in the LICENSE file. |
| + |
| +chrome.test.runTests([ |
| + function dumpLogsTest() { |
| + chrome.logPrivate.dumpLogs(function(fileEntry) { |
| + fileEntry.file(function(file) { |
| + var reader = new FileReader(); |
| + reader.onloadend = function(e) { |
| + if (this.result == 'log file content') |
| + chrome.test.succeed(); |
| + else |
| + chrome.test.fail('Invalid log file content'); |
| + }; |
| + reader.readAsText(file); |
| + }, |
| + function() { |
| + chrome.test.fail('File reading error'); |
| + }); |
| + }); |
| + } |
| +]); |