-
Notifications
You must be signed in to change notification settings - Fork 193
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Issue #1043. Add func test suite for image uploads that come from add…
…-ons.
- Loading branch information
Mike Taylor
committed
May 25, 2016
1 parent
007f3d0
commit 5ac47f8
Showing
3 changed files
with
76 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,73 @@ | ||
/* This Source Code Form is subject to the terms of the Mozilla Public | ||
* License, v. 2.0. If a copy of the MPL was not distributed with this | ||
* file, You can obtain one at http://mozilla.org/MPL/2.0/. */ | ||
|
||
define([ | ||
'intern', | ||
'intern!object', | ||
'intern/chai!assert', | ||
'require', | ||
'intern/node_modules/dojo/node!path', | ||
], function(intern, registerSuite, assert) { | ||
'use strict'; | ||
|
||
var url = intern.config.siteRoot; | ||
|
||
registerSuite({ | ||
name: 'Image Uploads (non-auth)', | ||
|
||
'postMessaged dataURI preview': function() { | ||
return this.remote | ||
.setFindTimeout(intern.config.wc.pageLoadTimeout) | ||
.get(require.toUrl(url + '?open=1')) | ||
// send a small base64 encoded green test square | ||
.execute('postMessage("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAIAAABLixI0AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH3gYSAig452t/EQAAAClJREFUOMvtzkENAAAMg0A25ZU+E032AQEXoNcApCGFLX5paWlpaWl9dqq9AS6CKROfAAAAAElFTkSuQmCC", "http://localhost:5000")') | ||
.sleep(1000) | ||
.findByCssSelector('.js-image-upload-label').getAttribute('style') | ||
.then(function(inlineStyle) { | ||
assert.include(inlineStyle, 'data:image/png;base64,iVBOR', 'Base64 data shown as preview background'); | ||
}) | ||
.end(); | ||
}, | ||
|
||
'postMessaged dataURI image upload worked': function() { | ||
return this.remote | ||
.setFindTimeout(intern.config.wc.pageLoadTimeout) | ||
.get(require.toUrl(url + '?open=1')) | ||
// send a small base64 encoded green test square | ||
.execute('postMessage("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAIAAABLixI0AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH3gYSAig452t/EQAAAClJREFUOMvtzkENAAAMg0A25ZU+E032AQEXoNcApCGFLX5paWlpaWl9dqq9AS6CKROfAAAAAElFTkSuQmCC", "http://localhost:5000")') | ||
.sleep(1000) | ||
.findByCssSelector('#description').getProperty('value') | ||
.then(function(val) { | ||
assert.include(val, '![Screenshot Description](http://localhost:5000/uploads/', 'The data URI was correctly uploaded and its URL was copied to the bug description.'); | ||
}) | ||
.end(); | ||
}, | ||
|
||
'postMessaged dataURI remove button': function() { | ||
return this.remote | ||
.setFindTimeout(intern.config.wc.pageLoadTimeout) | ||
.get(require.toUrl(url + '?open=1')) | ||
// send a small base64 encoded green test square | ||
.execute('postMessage("data:image/png;base64,iVBORw0KGgoAAAANSUhEUgAAABkAAAAZCAIAAABLixI0AAAACXBIWXMAAA7DAAAOwwHHb6hkAAAAB3RJTUUH3gYSAig452t/EQAAAClJREFUOMvtzkENAAAMg0A25ZU+E032AQEXoNcApCGFLX5paWlpaWl9dqq9AS6CKROfAAAAAElFTkSuQmCC", "http://localhost:5000")') | ||
.sleep(1000) | ||
.findByCssSelector('.js-image-upload-label .wc-UploadForm-button').isDisplayed() | ||
.then(function(isDisplayed) { | ||
assert.equal(isDisplayed, true, 'Remove button is displayed'); | ||
}) | ||
.end() | ||
.findByCssSelector('.js-image-upload-label .wc-UploadForm-button').click() | ||
.end() | ||
.findByCssSelector('.js-image-upload-label').getAttribute('style') | ||
.then(function(inlineStyle) { | ||
assert.notInclude(inlineStyle, 'data:image/png;base64,iVBOR', 'Preview was removed'); | ||
}) | ||
.end() | ||
.findByCssSelector('#description').getProperty('value') | ||
.then(function(val) { | ||
assert.notInclude(val, '![Screenshot Description](http://localhost:5000/uploads/', 'The data URI was correctly uploaded and its URL was copied to the bug description.'); | ||
}) | ||
.end(); | ||
} | ||
}); | ||
}); |