Import: Handle uploads with sha1 starting with 0 properly
[mediawiki.git] / tests / qunit / suites / resources / mediawiki.api / mediawiki.api.upload.test.js
blob10fcd5da68e4087cd1c127a97c9cf290ad6f7bc9
1 ( function ( mw, $ ) {
2         QUnit.module( 'mediawiki.api.upload', QUnit.newMwEnvironment( {} ) );
4         QUnit.test( 'Basic functionality', function ( assert ) {
5                 QUnit.expect( 2 );
6                 var api = new mw.Api();
7                 assert.ok( api.upload );
8                 assert.throws( function () {
9                         api.upload();
10                 } );
11         } );
13         QUnit.test( 'Set up iframe upload', function ( assert ) {
14                 QUnit.expect( 5 );
15                 var $iframe, $form, $input,
16                         api = new mw.Api();
18                 this.sandbox.stub( api, 'getEditToken', function () {
19                         return $.Deferred().promise();
20                 } );
22                 api.uploadWithIframe( $( '<input>' )[ 0 ], { filename: 'Testing API upload.jpg' } );
24                 $iframe = $( 'iframe' );
25                 $form = $( 'form.mw-api-upload-form' );
26                 $input = $form.find( 'input[name=filename]' );
28                 assert.ok( $form.length > 0 );
29                 assert.ok( $input.length > 0 );
30                 assert.ok( $iframe.length > 0 );
31                 assert.strictEqual( $form.prop( 'target' ), $iframe.prop( 'id' ) );
32                 assert.strictEqual( $input.val(), 'Testing API upload.jpg' );
33         } );
35 }( mediaWiki, jQuery ) );