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

Unified Diff: chrome/test/data/chromeos/wallpaper_manager/unit_tests/event_page_unittest.js

Issue 642943002: Add tests for sync custom wallpaper feature (Closed) Base URL: https://chromium.googlesource.com/chromium/src.git@master
Patch Set: Merge to resolve conflict Created 6 years, 1 month 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 | « chrome/test/data/chromeos/wallpaper_manager/unit_tests/api_mock.js ('k') | no next file » | no next file with comments »
Expand Comments ('e') | Collapse Comments ('c') | Show Comments Hide Comments ('s')
Index: chrome/test/data/chromeos/wallpaper_manager/unit_tests/event_page_unittest.js
diff --git a/chrome/test/data/chromeos/wallpaper_manager/unit_tests/event_page_unittest.js b/chrome/test/data/chromeos/wallpaper_manager/unit_tests/event_page_unittest.js
index f836ad4b647548a06d2127b2db141ff1560eea27..dace7a6ac906b5a9434686b51583865b2249aafe 100644
--- a/chrome/test/data/chromeos/wallpaper_manager/unit_tests/event_page_unittest.js
+++ b/chrome/test/data/chromeos/wallpaper_manager/unit_tests/event_page_unittest.js
@@ -5,6 +5,14 @@
var mockController;
+WallpaperUtil.enabledExperimentalFeatureCallback = function(callback) {
+ callback();
+};
+
+WallpaperUtil.enabledSyncThemesCallback = function(callback) {
+ callback();
+};
+
function setUp() {
mockController = new MockController();
installMockXMLHttpRequest();
@@ -14,6 +22,63 @@ function tearDown() {
mockController.verifyMocks();
mockController.reset();
uninstallMockXMLHttpRequest();
+ mockSyncFS.reset();
+ mockLocalFS.reset();
+}
+
+// Test set custom wallpaper from syncFS. When local wallpaper name is different
+// with the name in server, wallpaper should use the one in server.
+function testSyncCustomWallpaperSet() {
+ var mockSetCustomWallpaper = mockController.createFunctionMock(
+ chrome.wallpaperPrivate, 'setCustomWallpaper');
+ mockSetCustomWallpaper.addExpectation(TestConstants.FILESTRING,
+ 'dummy',
+ true,
+ 'dummy');
+ var syncFSChanges = {};
+ syncFSChanges.status = 'synced';
+ syncFSChanges.direction = 'remote_to_local';
+ syncFSChanges.action = 'added';
+ syncFSChanges.fileEntry = mockSyncFS.mockTestFile('dummy');
+ chrome.syncFileSystem.onFileStatusChanged.dispatch(syncFSChanges);
+}
+
+// Test store historical custom wallpaper. When receive a historical wallpaper
+// from syncFS, we store it to local.
+function testSyncCustoWallpapermStore() {
+ var syncFSChanges = {};
+ syncFSChanges.status = 'synced';
+ syncFSChanges.direction = 'remote_to_local';
+ syncFSChanges.action = 'added';
+ syncFSChanges.fileEntry = mockSyncFS.mockTestFile('historicalwallpaper');
+
+ // TODO(ranj): support two callbacks with success and failure?
+ var mockWrite = mockController.createFunctionMock(mockWriter, 'write');
+ mockWrite.addExpectation(new Blob([new Int8Array(TestConstants.FILESTRING)]));
+ chrome.syncFileSystem.onFileStatusChanged.dispatch(syncFSChanges);
+}
+
+// Test delete custom wallpaper from local. When receive a syncFS delete file
+// event, delete the file in localFS as well.
+function testSyncCustomWallpaperDelete() {
+ var localOriginalPath = Constants.WallpaperDirNameEnum.ORIGINAL + '/' +
+ 'deletewallpapername';
+ var localThumbnailPath = Constants.WallpaperDirNameEnum.THUMBNAIL + '/' +
+ 'deletewallpapername';
+ var originalFE = mockLocalFS.mockTestFile(localOriginalPath);
+ var thumbnailFE = mockLocalFS.mockTestFile(localThumbnailPath);
+ var syncFSChanges = {};
+ syncFSChanges.status = 'synced';
+ syncFSChanges.direction = 'remote_to_local';
+ syncFSChanges.action = 'deleted';
+ syncFSChanges.fileEntry = new FileEntry('deletewallpapername');
+ var mockRemoveOriginal = mockController.createFunctionMock(originalFE,
+ 'remove');
+ mockRemoveOriginal.addExpectation(function() {}, null);
+ var mockRemoveThumbnail = mockController.createFunctionMock(thumbnailFE,
+ 'remove');
+ mockRemoveThumbnail.addExpectation(function() {}, null);
+ chrome.syncFileSystem.onFileStatusChanged.dispatch(syncFSChanges);
}
// Test sync online wallpaper. When the synced wallpaper info is not the same as
@@ -38,7 +103,7 @@ function testSyncOnlineWallpaper() {
var mockSetWallpaper = mockController.createFunctionMock(
chrome.wallpaperPrivate, 'setWallpaper');
mockSetWallpaper.addExpectation(
- TestConstants.image,
+ TestConstants.IMAGE,
changes[Constants.AccessSyncWallpaperInfoKey].newValue.layout,
changes[Constants.AccessSyncWallpaperInfoKey].newValue.url);
« no previous file with comments | « chrome/test/data/chromeos/wallpaper_manager/unit_tests/api_mock.js ('k') | no next file » | no next file with comments »

Powered by Google App Engine
This is Rietveld 408576698