Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #1043. Add first parts of func test suite for image uploads. #1048

Merged
merged 1 commit into from
May 29, 2016
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion tests/functional-all.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,10 +16,11 @@ define([
'./functional/comments-non-auth.js',
'./functional/contributors-non-auth.js',
'./functional/comments-auth.js',
'./functional/history-navigation-non-auth.js',
'./functional/image-uploads-non-auth.js',
'./functional/index-non-auth.js',
'./functional/issue-list-non-auth.js',
'./functional/issues-non-auth.js',
'./functional/history-navigation-non-auth.js',
'./functional/search-non-auth.js',
'./functional/search-auth.js',
'./functional/issues-auth.js',
Expand Down
1 change: 1 addition & 0 deletions tests/functional-nonauth.js
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ define([
'./functional/reporting-non-auth.js',
'./functional/comments-non-auth.js',
'./functional/contributors-non-auth.js',
'./functional/image-uploads-non-auth.js',
'./functional/index-non-auth.js',
'./functional/issue-list-non-auth.js',
'./functional/issues-non-auth.js',
Expand Down
73 changes: 73 additions & 0 deletions tests/functional/image-uploads-non-auth.js
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();
}
});
});