2014-01-12 21:57:53 +04:00
/ * *
* ownCloud
*
* @ author Vincent Petry
* @ copyright 2014 Vincent Petry < pvince81 @ owncloud . com >
*
* This library is free software ; you can redistribute it and / or
* modify it under the terms of the GNU AFFERO GENERAL PUBLIC LICENSE
* License as published by the Free Software Foundation ; either
* version 3 of the License , or any later version .
*
* This library is distributed in the hope that it will be useful ,
* but WITHOUT ANY WARRANTY ; without even the implied warranty of
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE . See the
* GNU AFFERO GENERAL PUBLIC LICENSE for more details .
*
* You should have received a copy of the GNU Affero General Public
* License along with this library . If not , see < http : //www.gnu.org/licenses/>.
*
* /
2014-01-30 13:41:04 +04:00
2014-05-09 00:06:30 +04:00
describe ( 'OCA.Files.FileList tests' , function ( ) {
var testFiles , alertStub , notificationStub , fileList ;
var FileActions = OCA . Files . FileActions ;
2013-10-28 23:22:06 +04:00
2014-04-04 20:46:08 +04:00
/ * *
* Generate test file data
* /
function generateFiles ( startIndex , endIndex ) {
var files = [ ] ;
var name ;
for ( var i = startIndex ; i <= endIndex ; i ++ ) {
name = 'File with index ' ;
if ( i < 10 ) {
// do not rely on localeCompare here
// and make the sorting predictable
// cross-browser
name += '0' ;
}
name += i + '.txt' ;
files . push ( {
id : i ,
type : 'file' ,
name : name ,
mimetype : 'text/plain' ,
size : i * 2 ,
etag : 'abc'
} ) ;
}
return files ;
}
2014-01-12 21:57:53 +04:00
beforeEach ( function ( ) {
2013-10-28 23:22:06 +04:00
alertStub = sinon . stub ( OC . dialogs , 'alert' ) ;
notificationStub = sinon . stub ( OC . Notification , 'show' ) ;
// init parameters and test table elements
$ ( '#testArea' ) . append (
2014-05-09 00:06:30 +04:00
'<div id="app-content-files">' +
2014-05-12 21:54:20 +04:00
// init horrible parameters
2013-10-28 23:22:06 +04:00
'<input type="hidden" id="dir" value="/subdir"></input>' +
'<input type="hidden" id="permissions" value="31"></input>' +
// dummy controls
'<div id="controls">' +
' <div class="actions creatable"></div>' +
' <div class="notCreatable"></div>' +
'</div>' +
// dummy table
2014-05-09 00:06:30 +04:00
// TODO: at some point this will be rendered by the fileList class itself!
2013-10-28 23:22:06 +04:00
'<table id="filestable">' +
2014-04-03 22:57:06 +04:00
'<thead><tr>' +
'<th id="headerName" class="hidden column-name">' +
2014-05-12 21:54:20 +04:00
'<input type="checkbox" id="select_all_files" class="select-all">' +
2014-04-03 22:57:06 +04:00
'<a class="name columntitle" data-sort="name"><span>Name</span><span class="sort-indicator"></span></a>' +
2014-02-12 17:50:23 +04:00
'<span class="selectedActions hidden">' +
'<a href class="download">Download</a>' +
'<a href class="delete-selected">Delete</a></span>' +
2014-04-03 22:57:06 +04:00
'</th>' +
'<th class="hidden column-size"><a class="columntitle" data-sort="size"><span class="sort-indicator"></span></a></th>' +
'<th class="hidden column-mtime"><a class="columntitle" data-sort="mtime"><span class="sort-indicator"></span></a></th>' +
'</tr></thead>' +
2014-05-12 21:54:20 +04:00
'<tbody id="fileList"></tbody>' +
2014-02-11 19:52:56 +04:00
'<tfoot></tfoot>' +
2013-10-28 23:22:06 +04:00
'</table>' +
2014-05-09 00:06:30 +04:00
'<div id="emptycontent">Empty content message</div>' +
'</div>'
2013-10-28 23:22:06 +04:00
) ;
testFiles = [ {
id : 1 ,
type : 'file' ,
name : 'One.txt' ,
mimetype : 'text/plain' ,
2014-02-12 17:50:23 +04:00
size : 12 ,
etag : 'abc'
2013-10-28 23:22:06 +04:00
} , {
id : 2 ,
type : 'file' ,
name : 'Two.jpg' ,
mimetype : 'image/jpeg' ,
2014-02-12 17:50:23 +04:00
size : 12049 ,
etag : 'def' ,
2013-10-28 23:22:06 +04:00
} , {
id : 3 ,
type : 'file' ,
name : 'Three.pdf' ,
mimetype : 'application/pdf' ,
2014-02-12 17:50:23 +04:00
size : 58009 ,
etag : '123' ,
2013-10-28 23:22:06 +04:00
} , {
id : 4 ,
type : 'dir' ,
name : 'somedir' ,
mimetype : 'httpd/unix-directory' ,
2014-02-12 17:50:23 +04:00
size : 250 ,
etag : '456'
2013-10-28 23:22:06 +04:00
} ] ;
2014-05-09 00:06:30 +04:00
fileList = new OCA . Files . FileList ( $ ( '#app-content-files' ) ) ;
2014-05-12 21:54:20 +04:00
FileActions . clear ( ) ;
2014-05-09 00:06:30 +04:00
FileActions . registerDefaultActions ( fileList ) ;
fileList . setFileActions ( FileActions ) ;
2014-01-12 21:57:53 +04:00
} ) ;
afterEach ( function ( ) {
2013-10-28 23:22:06 +04:00
testFiles = undefined ;
2014-05-09 00:06:30 +04:00
fileList = undefined ;
2013-10-28 23:22:06 +04:00
2014-05-09 00:06:30 +04:00
FileActions . clear ( ) ;
2013-10-28 23:22:06 +04:00
notificationStub . restore ( ) ;
alertStub . restore ( ) ;
} ) ;
describe ( 'Getters' , function ( ) {
it ( 'Returns the current directory' , function ( ) {
$ ( '#dir' ) . val ( '/one/two/three' ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . getCurrentDirectory ( ) ) . toEqual ( '/one/two/three' ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'Returns the directory permissions as int' , function ( ) {
$ ( '#permissions' ) . val ( '23' ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . getDirectoryPermissions ( ) ) . toEqual ( 23 ) ;
2013-10-28 23:22:06 +04:00
} ) ;
} ) ;
describe ( 'Adding files' , function ( ) {
var clock , now ;
beforeEach ( function ( ) {
// to prevent date comparison issues
clock = sinon . useFakeTimers ( ) ;
now = new Date ( ) ;
} ) ;
afterEach ( function ( ) {
clock . restore ( ) ;
} ) ;
it ( 'generates file element with correct attributes when calling add() with file data' , function ( ) {
var fileData = {
id : 18 ,
type : 'file' ,
name : 'testName.txt' ,
2014-05-12 21:54:20 +04:00
mimetype : 'text/plain' ,
2013-10-28 23:22:06 +04:00
size : '1234' ,
etag : 'a01234c' ,
mtime : '123456'
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr ) . toBeDefined ( ) ;
expect ( $tr [ 0 ] . tagName . toLowerCase ( ) ) . toEqual ( 'tr' ) ;
expect ( $tr . attr ( 'data-id' ) ) . toEqual ( '18' ) ;
expect ( $tr . attr ( 'data-type' ) ) . toEqual ( 'file' ) ;
expect ( $tr . attr ( 'data-file' ) ) . toEqual ( 'testName.txt' ) ;
expect ( $tr . attr ( 'data-size' ) ) . toEqual ( '1234' ) ;
expect ( $tr . attr ( 'data-etag' ) ) . toEqual ( 'a01234c' ) ;
expect ( $tr . attr ( 'data-permissions' ) ) . toEqual ( '31' ) ;
2014-05-12 21:54:20 +04:00
expect ( $tr . attr ( 'data-mime' ) ) . toEqual ( 'text/plain' ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr . attr ( 'data-mtime' ) ) . toEqual ( '123456' ) ;
2014-05-12 21:54:20 +04:00
expect ( $tr . find ( 'a.name' ) . attr ( 'href' ) )
. toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=testName.txt' ) ;
expect ( $tr . find ( '.nametext' ) . text ( ) . trim ( ) ) . toEqual ( 'testName.txt' ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr . find ( '.filesize' ) . text ( ) ) . toEqual ( '1 kB' ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'testName.txt' ) [ 0 ] ) . toEqual ( $tr [ 0 ] ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'generates dir element with correct attributes when calling add() with dir data' , function ( ) {
var fileData = {
id : 19 ,
type : 'dir' ,
name : 'testFolder' ,
mimetype : 'httpd/unix-directory' ,
size : '1234' ,
etag : 'a01234c' ,
mtime : '123456'
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr ) . toBeDefined ( ) ;
expect ( $tr [ 0 ] . tagName . toLowerCase ( ) ) . toEqual ( 'tr' ) ;
expect ( $tr . attr ( 'data-id' ) ) . toEqual ( '19' ) ;
expect ( $tr . attr ( 'data-type' ) ) . toEqual ( 'dir' ) ;
expect ( $tr . attr ( 'data-file' ) ) . toEqual ( 'testFolder' ) ;
expect ( $tr . attr ( 'data-size' ) ) . toEqual ( '1234' ) ;
expect ( $tr . attr ( 'data-etag' ) ) . toEqual ( 'a01234c' ) ;
expect ( $tr . attr ( 'data-permissions' ) ) . toEqual ( '31' ) ;
expect ( $tr . attr ( 'data-mime' ) ) . toEqual ( 'httpd/unix-directory' ) ;
expect ( $tr . attr ( 'data-mtime' ) ) . toEqual ( '123456' ) ;
expect ( $tr . find ( '.filesize' ) . text ( ) ) . toEqual ( '1 kB' ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'testFolder' ) [ 0 ] ) . toEqual ( $tr [ 0 ] ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'generates file element with default attributes when calling add() with minimal data' , function ( ) {
var fileData = {
type : 'file' ,
name : 'testFile.txt'
} ;
2014-05-09 00:06:30 +04:00
clock . tick ( 123456 ) ;
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr ) . toBeDefined ( ) ;
expect ( $tr [ 0 ] . tagName . toLowerCase ( ) ) . toEqual ( 'tr' ) ;
expect ( $tr . attr ( 'data-id' ) ) . toEqual ( null ) ;
expect ( $tr . attr ( 'data-type' ) ) . toEqual ( 'file' ) ;
expect ( $tr . attr ( 'data-file' ) ) . toEqual ( 'testFile.txt' ) ;
expect ( $tr . attr ( 'data-size' ) ) . toEqual ( null ) ;
expect ( $tr . attr ( 'data-etag' ) ) . toEqual ( null ) ;
expect ( $tr . attr ( 'data-permissions' ) ) . toEqual ( '31' ) ;
expect ( $tr . attr ( 'data-mime' ) ) . toEqual ( null ) ;
expect ( $tr . attr ( 'data-mtime' ) ) . toEqual ( '123456' ) ;
expect ( $tr . find ( '.filesize' ) . text ( ) ) . toEqual ( 'Pending' ) ;
} ) ;
it ( 'generates dir element with default attributes when calling add() with minimal data' , function ( ) {
var fileData = {
type : 'dir' ,
name : 'testFolder'
} ;
2014-05-09 00:06:30 +04:00
clock . tick ( 123456 ) ;
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr ) . toBeDefined ( ) ;
expect ( $tr [ 0 ] . tagName . toLowerCase ( ) ) . toEqual ( 'tr' ) ;
expect ( $tr . attr ( 'data-id' ) ) . toEqual ( null ) ;
expect ( $tr . attr ( 'data-type' ) ) . toEqual ( 'dir' ) ;
expect ( $tr . attr ( 'data-file' ) ) . toEqual ( 'testFolder' ) ;
expect ( $tr . attr ( 'data-size' ) ) . toEqual ( null ) ;
expect ( $tr . attr ( 'data-etag' ) ) . toEqual ( null ) ;
expect ( $tr . attr ( 'data-permissions' ) ) . toEqual ( '31' ) ;
expect ( $tr . attr ( 'data-mime' ) ) . toEqual ( 'httpd/unix-directory' ) ;
expect ( $tr . attr ( 'data-mtime' ) ) . toEqual ( '123456' ) ;
expect ( $tr . find ( '.filesize' ) . text ( ) ) . toEqual ( 'Pending' ) ;
} ) ;
it ( 'generates file element with zero size when size is explicitly zero' , function ( ) {
var fileData = {
type : 'dir' ,
name : 'testFolder' ,
size : '0'
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr . find ( '.filesize' ) . text ( ) ) . toEqual ( '0 B' ) ;
} ) ;
2014-02-11 19:52:56 +04:00
it ( 'adds new file to the end of the list' , function ( ) {
2014-04-04 16:34:07 +04:00
var $tr ;
2013-10-28 23:22:06 +04:00
var fileData = {
type : 'file' ,
2014-04-04 18:11:31 +04:00
name : 'ZZZ.txt'
2013-10-28 23:22:06 +04:00
} ;
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
$tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr . index ( ) ) . toEqual ( 4 ) ;
} ) ;
2014-04-04 16:34:07 +04:00
it ( 'inserts files in a sorted manner when insert option is enabled' , function ( ) {
var $tr ;
for ( var i = 0 ; i < testFiles . length ; i ++ ) {
2014-05-09 00:06:30 +04:00
fileList . add ( testFiles [ i ] ) ;
2014-04-04 16:34:07 +04:00
}
2014-05-09 00:06:30 +04:00
expect ( fileList . files [ 0 ] . name ) . toEqual ( 'somedir' ) ;
expect ( fileList . files [ 1 ] . name ) . toEqual ( 'One.txt' ) ;
expect ( fileList . files [ 2 ] . name ) . toEqual ( 'Three.pdf' ) ;
expect ( fileList . files [ 3 ] . name ) . toEqual ( 'Two.jpg' ) ;
2014-04-04 16:34:07 +04:00
} ) ;
it ( 'inserts new file at correct position' , function ( ) {
var $tr ;
2013-10-28 23:22:06 +04:00
var fileData = {
type : 'file' ,
name : 'P comes after O.txt'
} ;
2014-04-04 16:34:07 +04:00
for ( var i = 0 ; i < testFiles . length ; i ++ ) {
2014-05-09 00:06:30 +04:00
fileList . add ( testFiles [ i ] ) ;
2014-04-04 16:34:07 +04:00
}
2014-05-09 00:06:30 +04:00
$tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
// after "One.txt"
2014-04-04 16:34:07 +04:00
expect ( $tr . index ( ) ) . toEqual ( 2 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . files [ 2 ] ) . toEqual ( fileData ) ;
2014-04-04 16:34:07 +04:00
} ) ;
it ( 'inserts new folder at correct position in insert mode' , function ( ) {
var $tr ;
var fileData = {
type : 'dir' ,
name : 'somedir2 comes after somedir'
} ;
for ( var i = 0 ; i < testFiles . length ; i ++ ) {
2014-05-09 00:06:30 +04:00
fileList . add ( testFiles [ i ] ) ;
2014-04-04 16:34:07 +04:00
}
2014-05-09 00:06:30 +04:00
$tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
expect ( $tr . index ( ) ) . toEqual ( 1 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . files [ 1 ] ) . toEqual ( fileData ) ;
2014-04-04 16:34:07 +04:00
} ) ;
it ( 'inserts new file at the end correctly' , function ( ) {
var $tr ;
var fileData = {
type : 'file' ,
name : 'zzz.txt'
} ;
for ( var i = 0 ; i < testFiles . length ; i ++ ) {
2014-05-09 00:06:30 +04:00
fileList . add ( testFiles [ i ] ) ;
2014-04-04 16:34:07 +04:00
}
2014-05-09 00:06:30 +04:00
$tr = fileList . add ( fileData ) ;
2014-04-04 16:34:07 +04:00
expect ( $tr . index ( ) ) . toEqual ( 4 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . files [ 4 ] ) . toEqual ( fileData ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'removes empty content message and shows summary when adding first file' , function ( ) {
2014-05-09 00:06:30 +04:00
var $summary ;
2013-10-28 23:22:06 +04:00
var fileData = {
type : 'file' ,
name : 'first file.txt' ,
size : 12
} ;
2014-05-09 00:06:30 +04:00
fileList . setFiles ( [ ] ) ;
expect ( fileList . isEmpty ) . toEqual ( true ) ;
fileList . add ( fileData ) ;
2014-02-11 19:52:56 +04:00
$summary = $ ( '#filestable .summary' ) ;
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
// yes, ugly...
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '0 folders and 1 file' ) ;
expect ( $summary . find ( '.dirinfo' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $summary . find ( '.fileinfo' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $summary . find ( '.filesize' ) . text ( ) ) . toEqual ( '12 B' ) ;
expect ( $ ( '#filestable thead th' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $ ( '#emptycontent' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . isEmpty ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
} ) ;
2014-01-12 21:57:53 +04:00
} ) ;
2013-10-28 23:22:06 +04:00
describe ( 'Removing files from the list' , function ( ) {
it ( 'Removes file from list when calling remove() and updates summary' , function ( ) {
2014-05-09 00:06:30 +04:00
var $summary ;
2013-10-28 23:22:06 +04:00
var $removedEl ;
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
$removedEl = fileList . remove ( 'One.txt' ) ;
2013-10-28 23:22:06 +04:00
expect ( $removedEl ) . toBeDefined ( ) ;
expect ( $removedEl . attr ( 'data-file' ) ) . toEqual ( 'One.txt' ) ;
2014-02-11 19:52:56 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 3 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . files . length ) . toEqual ( 3 ) ;
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
2013-10-28 23:22:06 +04:00
2014-02-11 19:52:56 +04:00
$summary = $ ( '#filestable .summary' ) ;
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '1 folder and 2 files' ) ;
expect ( $summary . find ( '.dirinfo' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $summary . find ( '.fileinfo' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $summary . find ( '.filesize' ) . text ( ) ) . toEqual ( '69 kB' ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . isEmpty ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'Shows empty content when removing last file' , function ( ) {
2014-05-09 00:06:30 +04:00
var $summary ;
fileList . setFiles ( [ testFiles [ 0 ] ] ) ;
fileList . remove ( 'One.txt' ) ;
2014-02-11 19:52:56 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 0 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . files . length ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
2013-10-28 23:22:06 +04:00
2014-02-11 19:52:56 +04:00
$summary = $ ( '#filestable .summary' ) ;
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable thead th' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $ ( '#emptycontent' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . isEmpty ) . toEqual ( true ) ;
2013-10-28 23:22:06 +04:00
} ) ;
2014-01-12 21:57:53 +04:00
} ) ;
2013-10-28 23:22:06 +04:00
describe ( 'Deleting files' , function ( ) {
function doDelete ( ) {
var request , query ;
// note: normally called from FileActions
2014-05-09 00:06:30 +04:00
fileList . do _delete ( [ 'One.txt' , 'Two.jpg' ] ) ;
2013-10-28 23:22:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
request = fakeServer . requests [ 0 ] ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/delete.php' ) ;
query = fakeServer . requests [ 0 ] . requestBody ;
expect ( OC . parseQueryString ( query ) ) . toEqual ( { 'dir' : '/subdir' , files : '["One.txt","Two.jpg"]' } ) ;
}
it ( 'calls delete.php, removes the deleted entries and updates summary' , function ( ) {
2014-05-09 00:06:30 +04:00
var $summary ;
fileList . setFiles ( testFiles ) ;
2013-10-28 23:22:06 +04:00
doDelete ( ) ;
fakeServer . requests [ 0 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( { status : 'success' } )
) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'Two.jpg' ) . length ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'Three.pdf' ) . length ) . toEqual ( 1 ) ;
expect ( fileList . $fileList . find ( 'tr' ) . length ) . toEqual ( 2 ) ;
2013-10-28 23:22:06 +04:00
2014-02-11 19:52:56 +04:00
$summary = $ ( '#filestable .summary' ) ;
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '1 folder and 1 file' ) ;
expect ( $summary . find ( '.dirinfo' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $summary . find ( '.fileinfo' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $summary . find ( '.filesize' ) . text ( ) ) . toEqual ( '57 kB' ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . isEmpty ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable thead th' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $ ( '#emptycontent' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( notificationStub . notCalled ) . toEqual ( true ) ;
} ) ;
2014-04-29 19:59:30 +04:00
it ( 'shows spinner on files to be deleted' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
2014-04-29 19:59:30 +04:00
doDelete ( ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . find ( '.progress-icon:not(.delete-icon)' ) . length ) . toEqual ( 1 ) ;
expect ( fileList . findFileEl ( 'Three.pdf' ) . find ( '.delete-icon:not(.progress-icon)' ) . length ) . toEqual ( 1 ) ;
2014-04-29 19:59:30 +04:00
} ) ;
it ( 'shows spinner on all files when deleting all' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
2014-04-29 19:59:30 +04:00
2014-05-09 00:06:30 +04:00
fileList . do _delete ( ) ;
2014-04-29 19:59:30 +04:00
2014-05-09 00:06:30 +04:00
expect ( fileList . $fileList . find ( 'tr .progress-icon:not(.delete-icon)' ) . length ) . toEqual ( 4 ) ;
2014-04-29 19:59:30 +04:00
} ) ;
2013-10-28 23:22:06 +04:00
it ( 'updates summary when deleting last file' , function ( ) {
2014-05-09 00:06:30 +04:00
var $summary ;
fileList . setFiles ( [ testFiles [ 0 ] , testFiles [ 1 ] ] ) ;
2013-10-28 23:22:06 +04:00
doDelete ( ) ;
fakeServer . requests [ 0 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( { status : 'success' } )
) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . $fileList . find ( 'tr' ) . length ) . toEqual ( 0 ) ;
2013-10-28 23:22:06 +04:00
2014-02-11 19:52:56 +04:00
$summary = $ ( '#filestable .summary' ) ;
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . isEmpty ) . toEqual ( true ) ;
expect ( fileList . files . length ) . toEqual ( 0 ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable thead th' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $ ( '#emptycontent' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
} ) ;
it ( 'bring back deleted item when delete call failed' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
2013-10-28 23:22:06 +04:00
doDelete ( ) ;
fakeServer . requests [ 0 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( { status : 'error' , data : { message : 'WOOT' } } )
) ;
// files are still in the list
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 1 ) ;
expect ( fileList . findFileEl ( 'Two.jpg' ) . length ) . toEqual ( 1 ) ;
expect ( fileList . $fileList . find ( 'tr' ) . length ) . toEqual ( 4 ) ;
2013-10-28 23:22:06 +04:00
expect ( notificationStub . calledOnce ) . toEqual ( true ) ;
} ) ;
} ) ;
describe ( 'Renaming files' , function ( ) {
2014-05-16 14:43:36 +04:00
function doCancelRename ( ) {
var $input ;
for ( var i = 0 ; i < testFiles . length ; i ++ ) {
fileList . add ( testFiles [ i ] ) ;
}
// trigger rename prompt
fileList . rename ( 'One.txt' ) ;
$input = fileList . $fileList . find ( 'input.filename' ) ;
// keep same name
$input . val ( 'One.txt' ) ;
// trigger submit because triggering blur doesn't work in all browsers
$input . closest ( 'form' ) . trigger ( 'submit' ) ;
expect ( fakeServer . requests . length ) . toEqual ( 0 ) ;
}
2013-10-28 23:22:06 +04:00
function doRename ( ) {
var $input , request ;
2014-04-04 16:34:07 +04:00
for ( var i = 0 ; i < testFiles . length ; i ++ ) {
2014-05-09 00:06:30 +04:00
fileList . add ( testFiles [ i ] ) ;
2014-04-04 16:34:07 +04:00
}
2013-10-28 23:22:06 +04:00
// trigger rename prompt
2014-05-09 00:06:30 +04:00
fileList . rename ( 'One.txt' ) ;
$input = fileList . $fileList . find ( 'input.filename' ) ;
2014-05-12 21:54:20 +04:00
$input . val ( 'Tu_after_three.txt' ) ;
// trigger submit because triggering blur doesn't work in all browsers
$input . closest ( 'form' ) . trigger ( 'submit' ) ;
2013-10-28 23:22:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
2014-02-12 17:50:23 +04:00
request = fakeServer . requests [ 0 ] ;
2013-10-28 23:22:06 +04:00
expect ( request . url . substr ( 0 , request . url . indexOf ( '?' ) ) ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/rename.php' ) ;
2014-04-04 16:34:07 +04:00
expect ( OC . parseQueryString ( request . url ) ) . toEqual ( { 'dir' : '/subdir' , newname : 'Tu_after_three.txt' , file : 'One.txt' } ) ;
2013-10-28 23:22:06 +04:00
}
2014-04-04 16:34:07 +04:00
it ( 'Inserts renamed file entry at correct position if rename ajax call suceeded' , function ( ) {
2013-10-28 23:22:06 +04:00
doRename ( ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'success' ,
data : {
2014-04-04 16:34:07 +04:00
name : 'Tu_after_three.txt' ,
type : 'file'
2013-10-28 23:22:06 +04:00
}
} ) ) ;
// element stays renamed
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'Tu_after_three.txt' ) . length ) . toEqual ( 1 ) ;
expect ( fileList . findFileEl ( 'Tu_after_three.txt' ) . index ( ) ) . toEqual ( 2 ) ; // after Two.txt
2013-10-28 23:22:06 +04:00
expect ( alertStub . notCalled ) . toEqual ( true ) ;
} ) ;
it ( 'Reverts file entry if rename ajax call failed' , function ( ) {
doRename ( ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'error' ,
data : {
message : 'Something went wrong'
}
} ) ) ;
// element was reverted
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 1 ) ;
expect ( fileList . findFileEl ( 'One.txt' ) . index ( ) ) . toEqual ( 1 ) ; // after somedir
expect ( fileList . findFileEl ( 'Tu_after_three.txt' ) . length ) . toEqual ( 0 ) ;
2013-10-28 23:22:06 +04:00
expect ( alertStub . calledOnce ) . toEqual ( true ) ;
} ) ;
it ( 'Correctly updates file link after rename' , function ( ) {
var $tr ;
doRename ( ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'success' ,
data : {
2014-04-04 16:34:07 +04:00
name : 'Tu_after_three.txt'
2013-10-28 23:22:06 +04:00
}
} ) ) ;
2014-05-09 00:06:30 +04:00
$tr = fileList . findFileEl ( 'Tu_after_three.txt' ) ;
2014-04-04 16:34:07 +04:00
expect ( $tr . find ( 'a.name' ) . attr ( 'href' ) ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=Tu_after_three.txt' ) ;
2013-10-28 23:22:06 +04:00
} ) ;
2014-05-16 14:43:36 +04:00
it ( 'Triggers "fileActionsReady" event after rename' , function ( ) {
var handler = sinon . stub ( ) ;
fileList . $fileList . on ( 'fileActionsReady' , handler ) ;
doRename ( ) ;
expect ( handler . notCalled ) . toEqual ( true ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'success' ,
data : {
name : 'Tu_after_three.txt'
}
} ) ) ;
expect ( handler . calledOnce ) . toEqual ( true ) ;
expect ( fileList . $fileList . find ( '.test' ) . length ) . toEqual ( 0 ) ;
} ) ;
it ( 'Leaves the summary alone when reinserting renamed element' , function ( ) {
var $summary = $ ( '#filestable .summary' ) ;
2013-10-28 23:22:06 +04:00
doRename ( ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'success' ,
data : {
2014-04-04 16:34:07 +04:00
name : 'Tu_after_three.txt'
2013-10-28 23:22:06 +04:00
}
} ) ) ;
2014-05-16 14:43:36 +04:00
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '1 folder and 3 files' ) ;
} ) ;
it ( 'Leaves the summary alone when cancel renaming' , function ( ) {
var $summary = $ ( '#filestable .summary' ) ;
doCancelRename ( ) ;
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '1 folder and 3 files' ) ;
} ) ;
it ( 'Hides actions while rename in progress' , function ( ) {
var $tr ;
doRename ( ) ;
2013-10-28 23:22:06 +04:00
2014-05-16 14:43:36 +04:00
// element is renamed before the request finishes
2014-05-09 00:06:30 +04:00
$tr = fileList . findFileEl ( 'Tu_after_three.txt' ) ;
2014-05-16 14:43:36 +04:00
expect ( $tr . length ) . toEqual ( 1 ) ;
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
// file actions are hidden
expect ( $tr . find ( '.action' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $tr . find ( '.fileactions' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
// input and form are gone
expect ( fileList . $fileList . find ( 'input.filename' ) . length ) . toEqual ( 0 ) ;
expect ( fileList . $fileList . find ( 'form' ) . length ) . toEqual ( 0 ) ;
2013-10-28 23:22:06 +04:00
} ) ;
} ) ;
2014-04-11 14:46:12 +04:00
describe ( 'Moving files' , function ( ) {
beforeEach ( function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
2014-04-11 14:46:12 +04:00
} ) ;
it ( 'Moves single file to target folder' , function ( ) {
var request ;
2014-05-09 00:06:30 +04:00
fileList . move ( 'One.txt' , '/somedir' ) ;
2014-04-11 14:46:12 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
request = fakeServer . requests [ 0 ] ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/move.php' ) ;
expect ( OC . parseQueryString ( request . requestBody ) ) . toEqual ( { dir : '/subdir' , file : 'One.txt' , target : '/somedir' } ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'success' ,
data : {
name : 'One.txt' ,
type : 'file'
}
} ) ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
2014-04-11 14:46:12 +04:00
// folder size has increased
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'somedir' ) . data ( 'size' ) ) . toEqual ( 262 ) ;
expect ( fileList . findFileEl ( 'somedir' ) . find ( '.filesize' ) . text ( ) ) . toEqual ( '262 B' ) ;
2014-04-11 14:46:12 +04:00
expect ( notificationStub . notCalled ) . toEqual ( true ) ;
} ) ;
it ( 'Moves list of files to target folder' , function ( ) {
var request ;
2014-05-09 00:06:30 +04:00
fileList . move ( [ 'One.txt' , 'Two.jpg' ] , '/somedir' ) ;
2014-04-11 14:46:12 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 2 ) ;
request = fakeServer . requests [ 0 ] ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/move.php' ) ;
expect ( OC . parseQueryString ( request . requestBody ) ) . toEqual ( { dir : '/subdir' , file : 'One.txt' , target : '/somedir' } ) ;
request = fakeServer . requests [ 1 ] ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/move.php' ) ;
expect ( OC . parseQueryString ( request . requestBody ) ) . toEqual ( { dir : '/subdir' , file : 'Two.jpg' , target : '/somedir' } ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'success' ,
data : {
name : 'One.txt' ,
type : 'file'
}
} ) ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
2014-04-11 14:46:12 +04:00
// folder size has increased
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'somedir' ) . data ( 'size' ) ) . toEqual ( 262 ) ;
expect ( fileList . findFileEl ( 'somedir' ) . find ( '.filesize' ) . text ( ) ) . toEqual ( '262 B' ) ;
2014-04-11 14:46:12 +04:00
fakeServer . requests [ 1 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'success' ,
data : {
name : 'Two.jpg' ,
type : 'file'
}
} ) ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'Two.jpg' ) . length ) . toEqual ( 0 ) ;
2014-04-11 14:46:12 +04:00
// folder size has increased
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'somedir' ) . data ( 'size' ) ) . toEqual ( 12311 ) ;
expect ( fileList . findFileEl ( 'somedir' ) . find ( '.filesize' ) . text ( ) ) . toEqual ( '12 kB' ) ;
2014-04-11 14:46:12 +04:00
expect ( notificationStub . notCalled ) . toEqual ( true ) ;
} ) ;
it ( 'Shows notification if a file could not be moved' , function ( ) {
var request ;
2014-05-09 00:06:30 +04:00
fileList . move ( 'One.txt' , '/somedir' ) ;
2014-04-11 14:46:12 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
request = fakeServer . requests [ 0 ] ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/move.php' ) ;
expect ( OC . parseQueryString ( request . requestBody ) ) . toEqual ( { dir : '/subdir' , file : 'One.txt' , target : '/somedir' } ) ;
fakeServer . requests [ 0 ] . respond ( 200 , { 'Content-Type' : 'application/json' } , JSON . stringify ( {
status : 'error' ,
data : {
message : 'Error while moving file' ,
}
} ) ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 1 ) ;
2014-04-11 14:46:12 +04:00
expect ( notificationStub . calledOnce ) . toEqual ( true ) ;
expect ( notificationStub . getCall ( 0 ) . args [ 0 ] ) . toEqual ( 'Error while moving file' ) ;
} ) ;
} ) ;
2013-10-28 23:22:06 +04:00
describe ( 'List rendering' , function ( ) {
it ( 'renders a list of files using add()' , function ( ) {
2014-05-09 00:06:30 +04:00
expect ( fileList . files . length ) . toEqual ( 0 ) ;
expect ( fileList . files ) . toEqual ( [ ] ) ;
fileList . setFiles ( testFiles ) ;
2014-02-11 19:52:56 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 4 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . files . length ) . toEqual ( 4 ) ;
expect ( fileList . files ) . toEqual ( testFiles ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'updates summary using the file sizes' , function ( ) {
var $summary ;
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
2014-02-11 19:52:56 +04:00
$summary = $ ( '#filestable .summary' ) ;
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '1 folder and 3 files' ) ;
expect ( $summary . find ( '.filesize' ) . text ( ) ) . toEqual ( '69 kB' ) ;
} ) ;
it ( 'shows headers, summary and hide empty content message after setting files' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable thead th' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $ ( '#emptycontent' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . $el . find ( '.summary' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'hides headers, summary and show empty content message after setting empty file list' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( [ ] ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable thead th' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $ ( '#emptycontent' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . $el . find ( '.summary' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'hides headers, empty content message, and summary when list is empty and user has no creation permission' , function ( ) {
$ ( '#permissions' ) . val ( 0 ) ;
2014-05-09 00:06:30 +04:00
fileList . setFiles ( [ ] ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable thead th' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $ ( '#emptycontent' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . $el . find ( '.summary' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'calling findFileEl() can find existing file element' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
expect ( fileList . findFileEl ( 'Two.jpg' ) . length ) . toEqual ( 1 ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'calling findFileEl() returns empty when file not found in file' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
expect ( fileList . findFileEl ( 'unexist.dat' ) . length ) . toEqual ( 0 ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'only add file if in same current directory' , function ( ) {
$ ( '#dir' ) . val ( '/current dir' ) ;
var fileData = {
type : 'file' ,
name : 'testFile.txt' ,
directory : '/current dir'
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
expect ( fileList . findFileEl ( 'testFile.txt' ) . length ) . toEqual ( 1 ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'triggers "fileActionsReady" event after update' , function ( ) {
var handler = sinon . stub ( ) ;
2014-05-09 00:06:30 +04:00
fileList . $fileList . on ( 'fileActionsReady' , handler ) ;
fileList . setFiles ( testFiles ) ;
2013-10-28 23:22:06 +04:00
expect ( handler . calledOnce ) . toEqual ( true ) ;
} ) ;
it ( 'triggers "updated" event after update' , function ( ) {
var handler = sinon . stub ( ) ;
2014-05-09 00:06:30 +04:00
fileList . $fileList . on ( 'updated' , handler ) ;
fileList . setFiles ( testFiles ) ;
2013-10-28 23:22:06 +04:00
expect ( handler . calledOnce ) . toEqual ( true ) ;
} ) ;
2014-02-12 17:50:23 +04:00
it ( 'does not update summary when removing non-existing files' , function ( ) {
2014-05-09 00:06:30 +04:00
var $summary ;
2014-02-12 17:50:23 +04:00
// single file
2014-05-09 00:06:30 +04:00
fileList . setFiles ( [ testFiles [ 0 ] ] ) ;
2014-02-12 17:50:23 +04:00
$summary = $ ( '#filestable .summary' ) ;
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '0 folders and 1 file' ) ;
2014-05-09 00:06:30 +04:00
fileList . remove ( 'unexist.txt' ) ;
2014-02-12 17:50:23 +04:00
expect ( $summary . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $summary . find ( '.info' ) . text ( ) ) . toEqual ( '0 folders and 1 file' ) ;
2014-04-04 18:11:31 +04:00
} ) ;
} ) ;
describe ( 'Rendering next page on scroll' , function ( ) {
beforeEach ( function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( generateFiles ( 0 , 64 ) ) ;
2014-04-04 18:11:31 +04:00
} ) ;
it ( 'renders only the first page' , function ( ) {
2014-05-09 00:06:30 +04:00
expect ( fileList . files . length ) . toEqual ( 65 ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 20 ) ;
} ) ;
it ( 'renders the second page when scrolling down (trigger nextPage)' , function ( ) {
// TODO: can't simulate scrolling here, so calling nextPage directly
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 40 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 60 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 65 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
// stays at 65
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 65 ) ;
} ) ;
it ( 'inserts into the DOM if insertion point is in the visible page ' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . add ( {
2014-04-04 18:11:31 +04:00
id : 2000 ,
type : 'file' ,
name : 'File with index 15b.txt'
} ) ;
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 21 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'File with index 15b.txt' ) . index ( ) ) . toEqual ( 16 ) ;
2014-04-04 18:11:31 +04:00
} ) ;
it ( 'does not inserts into the DOM if insertion point is not the visible page ' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . add ( {
2014-04-04 18:11:31 +04:00
id : 2000 ,
type : 'file' ,
name : 'File with index 28b.txt'
} ) ;
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 20 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'File with index 28b.txt' ) . length ) . toEqual ( 0 ) ;
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 40 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'File with index 28b.txt' ) . index ( ) ) . toEqual ( 29 ) ;
2014-04-04 18:11:31 +04:00
} ) ;
it ( 'appends into the DOM when inserting a file after the last visible element' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . add ( {
2014-04-04 18:11:31 +04:00
id : 2000 ,
type : 'file' ,
name : 'File with index 19b.txt'
} ) ;
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 21 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 41 ) ;
} ) ;
it ( 'appends into the DOM when inserting a file on the last page when visible' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 40 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 60 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 65 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
fileList . add ( {
2014-04-04 18:11:31 +04:00
id : 2000 ,
type : 'file' ,
name : 'File with index 88.txt'
} ) ;
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 66 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 66 ) ;
} ) ;
it ( 'shows additional page when appending a page of files and scrolling down' , function ( ) {
var newFiles = generateFiles ( 66 , 81 ) ;
for ( var i = 0 ; i < newFiles . length ; i ++ ) {
2014-05-09 00:06:30 +04:00
fileList . add ( newFiles [ i ] ) ;
2014-04-04 18:11:31 +04:00
}
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 20 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 40 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 60 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 80 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 81 ) ;
2014-05-09 00:06:30 +04:00
fileList . _nextPage ( true ) ;
2014-04-04 18:11:31 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 81 ) ;
2014-04-04 18:38:27 +04:00
} ) ;
it ( 'automatically renders next page when there are not enough elements visible' , function ( ) {
// delete the 15 first elements
for ( var i = 0 ; i < 15 ; i ++ ) {
2014-05-09 00:06:30 +04:00
fileList . remove ( fileList . files [ 0 ] . name ) ;
2014-04-04 18:38:27 +04:00
}
// still makes sure that there are 20 elements visible, if any
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 25 ) ;
2014-02-12 17:50:23 +04:00
} ) ;
2013-10-28 23:22:06 +04:00
} ) ;
describe ( 'file previews' , function ( ) {
var previewLoadStub ;
function getImageUrl ( $el ) {
// might be slightly different cross-browser
var url = $el . css ( 'background-image' ) ;
var r = url . match ( /url\(['"]?([^'")]*)['"]?\)/ ) ;
if ( ! r ) {
return url ;
}
return r [ 1 ] ;
}
beforeEach ( function ( ) {
2014-05-09 00:06:30 +04:00
previewLoadStub = sinon . stub ( OCA . Files . FileList . prototype , 'lazyLoadPreview' ) ;
2013-10-28 23:22:06 +04:00
} ) ;
afterEach ( function ( ) {
previewLoadStub . restore ( ) ;
} ) ;
it ( 'renders default icon for file when none provided and no preview is available' , function ( ) {
var fileData = {
type : 'file' ,
name : 'testFile.txt'
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
var $td = $tr . find ( 'td.filename' ) ;
expect ( getImageUrl ( $td ) ) . toEqual ( OC . webroot + '/core/img/filetypes/file.svg' ) ;
expect ( previewLoadStub . notCalled ) . toEqual ( true ) ;
} ) ;
it ( 'renders default icon for dir when none provided and no preview is available' , function ( ) {
var fileData = {
type : 'dir' ,
name : 'test dir'
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
var $td = $tr . find ( 'td.filename' ) ;
expect ( getImageUrl ( $td ) ) . toEqual ( OC . webroot + '/core/img/filetypes/folder.svg' ) ;
expect ( previewLoadStub . notCalled ) . toEqual ( true ) ;
} ) ;
it ( 'renders provided icon for file when provided' , function ( ) {
var fileData = {
type : 'file' ,
name : 'test dir' ,
icon : OC . webroot + '/core/img/filetypes/application-pdf.svg'
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
var $td = $tr . find ( 'td.filename' ) ;
expect ( getImageUrl ( $td ) ) . toEqual ( OC . webroot + '/core/img/filetypes/application-pdf.svg' ) ;
expect ( previewLoadStub . notCalled ) . toEqual ( true ) ;
} ) ;
it ( 'renders preview when no icon was provided and preview is available' , function ( ) {
var fileData = {
type : 'file' ,
name : 'test dir' ,
isPreviewAvailable : true
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
var $td = $tr . find ( 'td.filename' ) ;
expect ( getImageUrl ( $td ) ) . toEqual ( OC . webroot + '/core/img/filetypes/file.svg' ) ;
expect ( previewLoadStub . calledOnce ) . toEqual ( true ) ;
// third argument is callback
2014-05-09 00:06:30 +04:00
previewLoadStub . getCall ( 0 ) . args [ 0 ] . callback ( OC . webroot + '/somepath.png' ) ;
2013-10-28 23:22:06 +04:00
expect ( getImageUrl ( $td ) ) . toEqual ( OC . webroot + '/somepath.png' ) ;
} ) ;
it ( 'renders default file type icon when no icon was provided and no preview is available' , function ( ) {
var fileData = {
type : 'file' ,
name : 'test dir' ,
isPreviewAvailable : false
} ;
2014-05-09 00:06:30 +04:00
var $tr = fileList . add ( fileData ) ;
2013-10-28 23:22:06 +04:00
var $td = $tr . find ( 'td.filename' ) ;
expect ( getImageUrl ( $td ) ) . toEqual ( OC . webroot + '/core/img/filetypes/file.svg' ) ;
expect ( previewLoadStub . notCalled ) . toEqual ( true ) ;
} ) ;
} ) ;
describe ( 'viewer mode' , function ( ) {
it ( 'enabling viewer mode hides files table and action buttons' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setViewerMode ( true ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $ ( '.actions' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $ ( '.notCreatable' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
} ) ;
it ( 'disabling viewer mode restores files table and action buttons' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setViewerMode ( true ) ;
fileList . setViewerMode ( false ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $ ( '.actions' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $ ( '.notCreatable' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
} ) ;
it ( 'disabling viewer mode restores files table and action buttons with correct permissions' , function ( ) {
$ ( '#permissions' ) . val ( 0 ) ;
2014-05-09 00:06:30 +04:00
fileList . setViewerMode ( true ) ;
fileList . setViewerMode ( false ) ;
2013-10-28 23:22:06 +04:00
expect ( $ ( '#filestable' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
expect ( $ ( '.actions' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
expect ( $ ( '.notCreatable' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
} ) ;
2014-05-12 21:54:20 +04:00
it ( 'toggling viewer mode triggers event' , function ( ) {
var handler = sinon . stub ( ) ;
fileList . $el . on ( 'changeViewerMode' , handler ) ;
fileList . setViewerMode ( true ) ;
expect ( handler . calledOnce ) . toEqual ( true ) ;
expect ( handler . getCall ( 0 ) . args [ 0 ] . viewerModeEnabled ) . toEqual ( true ) ;
handler . reset ( ) ;
fileList . setViewerMode ( false ) ;
expect ( handler . calledOnce ) . toEqual ( true ) ;
expect ( handler . getCall ( 0 ) . args [ 0 ] . viewerModeEnabled ) . toEqual ( false ) ;
} ) ;
2013-10-28 23:22:06 +04:00
} ) ;
describe ( 'loading file list' , function ( ) {
beforeEach ( function ( ) {
var data = {
status : 'success' ,
data : {
files : testFiles ,
permissions : 31
}
} ;
fakeServer . respondWith ( /\/index\.php\/apps\/files\/ajax\/list.php\?dir=%2F(subdir|anothersubdir)/ , [
200 , {
"Content-Type" : "application/json"
} ,
JSON . stringify ( data )
] ) ;
} ) ;
it ( 'fetches file list from server and renders it when reload() is called' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . reload ( ) ;
2013-10-28 23:22:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
var url = fakeServer . requests [ 0 ] . url ;
var query = url . substr ( url . indexOf ( '?' ) + 1 ) ;
2014-04-03 22:57:06 +04:00
expect ( OC . parseQueryString ( query ) ) . toEqual ( { 'dir' : '/subdir' , sort : 'name' , sortdirection : 'asc' } ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
2014-02-11 19:52:56 +04:00
expect ( $ ( '#fileList tr' ) . length ) . toEqual ( 4 ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 1 ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'switches dir and fetches file list when calling changeDirectory()' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . changeDirectory ( '/anothersubdir' ) ;
expect ( fileList . getCurrentDirectory ( ) ) . toEqual ( '/anothersubdir' ) ;
2013-10-28 23:22:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
var url = fakeServer . requests [ 0 ] . url ;
var query = url . substr ( url . indexOf ( '?' ) + 1 ) ;
2014-04-03 22:57:06 +04:00
expect ( OC . parseQueryString ( query ) ) . toEqual ( { 'dir' : '/anothersubdir' , sort : 'name' , sortdirection : 'asc' } ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
} ) ;
it ( 'switches to root dir when current directory does not exist' , function ( ) {
fakeServer . respondWith ( /\/index\.php\/apps\/files\/ajax\/list.php\?dir=%2funexist/ , [
404 , {
"Content-Type" : "application/json"
} ,
''
] ) ;
2014-05-09 00:06:30 +04:00
fileList . changeDirectory ( '/unexist' ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . getCurrentDirectory ( ) ) . toEqual ( '/' ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'shows mask before loading file list then hides it at the end' , function ( ) {
2014-05-09 00:06:30 +04:00
var showMaskStub = sinon . stub ( fileList , 'showMask' ) ;
var hideMaskStub = sinon . stub ( fileList , 'hideMask' ) ;
fileList . changeDirectory ( '/anothersubdir' ) ;
2013-10-28 23:22:06 +04:00
expect ( showMaskStub . calledOnce ) . toEqual ( true ) ;
expect ( hideMaskStub . calledOnce ) . toEqual ( false ) ;
fakeServer . respond ( ) ;
expect ( showMaskStub . calledOnce ) . toEqual ( true ) ;
expect ( hideMaskStub . calledOnce ) . toEqual ( true ) ;
showMaskStub . restore ( ) ;
hideMaskStub . restore ( ) ;
} ) ;
2014-05-09 00:06:30 +04:00
it ( 'triggers "changeDirectory" event when changing directory' , function ( ) {
var handler = sinon . stub ( ) ;
$ ( '#app-content-files' ) . on ( 'changeDirectory' , handler ) ;
fileList . changeDirectory ( '/somedir' ) ;
expect ( handler . calledOnce ) . toEqual ( true ) ;
expect ( handler . getCall ( 0 ) . args [ 0 ] . dir ) . toEqual ( '/somedir' ) ;
} ) ;
it ( 'changes the directory when receiving "urlChanged" event' , function ( ) {
$ ( '#app-content-files' ) . trigger ( new $ . Event ( 'urlChanged' , { view : 'files' , dir : '/somedir' } ) ) ;
expect ( fileList . getCurrentDirectory ( ) ) . toEqual ( '/somedir' ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'refreshes breadcrumb after update' , function ( ) {
2014-05-09 00:06:30 +04:00
var setDirSpy = sinon . spy ( fileList . breadcrumb , 'setDirectory' ) ;
fileList . changeDirectory ( '/anothersubdir' ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . breadcrumb . setDirectory . calledOnce ) . toEqual ( true ) ;
expect ( fileList . breadcrumb . setDirectory . calledWith ( '/anothersubdir' ) ) . toEqual ( true ) ;
2013-10-28 23:22:06 +04:00
setDirSpy . restore ( ) ;
} ) ;
} ) ;
describe ( 'breadcrumb events' , function ( ) {
beforeEach ( function ( ) {
var data = {
status : 'success' ,
data : {
files : testFiles ,
permissions : 31
}
} ;
fakeServer . respondWith ( /\/index\.php\/apps\/files\/ajax\/list.php\?dir=%2Fsubdir/ , [
200 , {
"Content-Type" : "application/json"
} ,
JSON . stringify ( data )
] ) ;
} ) ;
it ( 'clicking on root breadcrumb changes directory to root' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . changeDirectory ( '/subdir/two/three with space/four/five' ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
2014-05-09 00:06:30 +04:00
var changeDirStub = sinon . stub ( fileList , 'changeDirectory' ) ;
fileList . breadcrumb . $el . find ( '.crumb:eq(0)' ) . click ( ) ;
2013-10-28 23:22:06 +04:00
expect ( changeDirStub . calledOnce ) . toEqual ( true ) ;
expect ( changeDirStub . getCall ( 0 ) . args [ 0 ] ) . toEqual ( '/' ) ;
changeDirStub . restore ( ) ;
} ) ;
it ( 'clicking on breadcrumb changes directory' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . changeDirectory ( '/subdir/two/three with space/four/five' ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
2014-05-09 00:06:30 +04:00
var changeDirStub = sinon . stub ( fileList , 'changeDirectory' ) ;
fileList . breadcrumb . $el . find ( '.crumb:eq(3)' ) . click ( ) ;
2013-10-28 23:22:06 +04:00
expect ( changeDirStub . calledOnce ) . toEqual ( true ) ;
expect ( changeDirStub . getCall ( 0 ) . args [ 0 ] ) . toEqual ( '/subdir/two/three with space' ) ;
changeDirStub . restore ( ) ;
} ) ;
it ( 'dropping files on breadcrumb calls move operation' , function ( ) {
var request , query , testDir = '/subdir/two/three with space/four/five' ;
2014-05-09 00:06:30 +04:00
fileList . changeDirectory ( testDir ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
2014-05-09 00:06:30 +04:00
var $crumb = fileList . breadcrumb . $el . find ( '.crumb:eq(3)' ) ;
2013-10-28 23:22:06 +04:00
// no idea what this is but is required by the handler
var ui = {
helper : {
find : sinon . stub ( )
}
} ;
// returns a list of tr that were dragged
ui . helper . find . returns ( [
2014-04-11 14:46:12 +04:00
$ ( '<tr data-file="One.txt" data-dir="' + testDir + '"></tr>' ) ,
$ ( '<tr data-file="Two.jpg" data-dir="' + testDir + '"></tr>' )
2013-10-28 23:22:06 +04:00
] ) ;
// simulate drop event
2014-05-09 00:06:30 +04:00
fileList . _onDropOnBreadCrumb ( new $ . Event ( 'drop' , { target : $crumb } ) , ui ) ;
2013-10-28 23:22:06 +04:00
// will trigger two calls to move.php (first one was previous list.php)
expect ( fakeServer . requests . length ) . toEqual ( 3 ) ;
request = fakeServer . requests [ 1 ] ;
expect ( request . method ) . toEqual ( 'POST' ) ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/move.php' ) ;
query = OC . parseQueryString ( request . requestBody ) ;
expect ( query ) . toEqual ( {
target : '/subdir/two/three with space' ,
dir : testDir ,
file : 'One.txt'
} ) ;
request = fakeServer . requests [ 2 ] ;
expect ( request . method ) . toEqual ( 'POST' ) ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/move.php' ) ;
query = OC . parseQueryString ( request . requestBody ) ;
expect ( query ) . toEqual ( {
target : '/subdir/two/three with space' ,
dir : testDir ,
file : 'Two.jpg'
} ) ;
} ) ;
it ( 'dropping files on same dir breadcrumb does nothing' , function ( ) {
2014-05-09 00:06:30 +04:00
var testDir = '/subdir/two/three with space/four/five' ;
fileList . changeDirectory ( testDir ) ;
2013-10-28 23:22:06 +04:00
fakeServer . respond ( ) ;
2014-05-09 00:06:30 +04:00
var $crumb = fileList . breadcrumb . $el . find ( '.crumb:last' ) ;
2013-10-28 23:22:06 +04:00
// no idea what this is but is required by the handler
var ui = {
helper : {
find : sinon . stub ( )
}
} ;
// returns a list of tr that were dragged
ui . helper . find . returns ( [
2014-04-11 14:46:12 +04:00
$ ( '<tr data-file="One.txt" data-dir="' + testDir + '"></tr>' ) ,
$ ( '<tr data-file="Two.jpg" data-dir="' + testDir + '"></tr>' )
2013-10-28 23:22:06 +04:00
] ) ;
// simulate drop event
2014-05-09 00:06:30 +04:00
fileList . _onDropOnBreadCrumb ( new $ . Event ( 'drop' , { target : $crumb } ) , ui ) ;
2013-10-28 23:22:06 +04:00
// no extra server request
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
} ) ;
2014-01-12 21:57:53 +04:00
} ) ;
2014-02-13 23:20:00 +04:00
describe ( 'Download Url' , function ( ) {
it ( 'returns correct download URL for single files' , function ( ) {
2014-05-09 00:06:30 +04:00
expect ( fileList . getDownloadUrl ( 'some file.txt' ) ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=some%20file.txt' ) ;
expect ( fileList . getDownloadUrl ( 'some file.txt' , '/anotherpath/abc' ) ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fanotherpath%2Fabc&files=some%20file.txt' ) ;
2014-02-13 23:20:00 +04:00
$ ( '#dir' ) . val ( '/' ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . getDownloadUrl ( 'some file.txt' ) ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2F&files=some%20file.txt' ) ;
2014-02-13 23:20:00 +04:00
} ) ;
it ( 'returns correct download URL for multiple files' , function ( ) {
2014-05-09 00:06:30 +04:00
expect ( fileList . getDownloadUrl ( [ 'a b c.txt' , 'd e f.txt' ] ) ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=%5B%22a%20b%20c.txt%22%2C%22d%20e%20f.txt%22%5D' ) ;
2013-10-28 23:22:06 +04:00
} ) ;
it ( 'returns the correct ajax URL' , function ( ) {
2014-05-09 00:06:30 +04:00
expect ( fileList . getAjaxUrl ( 'test' , { a : 1 , b : 'x y' } ) ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/test.php?a=1&b=x%20y' ) ;
2014-02-13 23:20:00 +04:00
} ) ;
2014-01-24 16:32:31 +04:00
} ) ;
2014-02-12 17:50:23 +04:00
describe ( 'File selection' , function ( ) {
beforeEach ( function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( testFiles ) ;
2014-02-12 17:50:23 +04:00
} ) ;
it ( 'Selects a file when clicking its checkbox' , function ( ) {
2014-05-09 00:06:30 +04:00
var $tr = fileList . findFileEl ( 'One.txt' ) ;
2014-02-12 17:50:23 +04:00
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
$tr . find ( 'td.filename input:checkbox' ) . click ( ) ;
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
} ) ;
2014-04-04 20:46:08 +04:00
it ( 'Selects/deselect a file when clicking on the name while holding Ctrl' , function ( ) {
2014-05-09 00:06:30 +04:00
var $tr = fileList . findFileEl ( 'One.txt' ) ;
var $tr2 = fileList . findFileEl ( 'Three.pdf' ) ;
2014-04-04 20:46:08 +04:00
var e ;
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
expect ( $tr2 . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
e = new $ . Event ( 'click' ) ;
e . ctrlKey = true ;
$tr . find ( 'td.filename .name' ) . trigger ( e ) ;
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
expect ( $tr2 . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
// click on second entry, does not clear the selection
e = new $ . Event ( 'click' ) ;
e . ctrlKey = true ;
$tr2 . find ( 'td.filename .name' ) . trigger ( e ) ;
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
expect ( $tr2 . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) ) . toEqual ( [ 'One.txt' , 'Three.pdf' ] ) ;
2014-04-04 20:46:08 +04:00
// deselect now
e = new $ . Event ( 'click' ) ;
e . ctrlKey = true ;
$tr2 . find ( 'td.filename .name' ) . trigger ( e ) ;
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
expect ( $tr2 . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) ) . toEqual ( [ 'One.txt' ] ) ;
2014-04-04 20:46:08 +04:00
} ) ;
it ( 'Selects a range when clicking on one file then Shift clicking on another one' , function ( ) {
2014-05-09 00:06:30 +04:00
var $tr = fileList . findFileEl ( 'One.txt' ) ;
var $tr2 = fileList . findFileEl ( 'Three.pdf' ) ;
2014-04-04 20:46:08 +04:00
var e ;
$tr . find ( 'td.filename input:checkbox' ) . click ( ) ;
e = new $ . Event ( 'click' ) ;
e . shiftKey = true ;
$tr2 . find ( 'td.filename .name' ) . trigger ( e ) ;
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
expect ( $tr2 . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'Two.jpg' ) . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
var selection = _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) ;
2014-04-04 20:46:08 +04:00
expect ( selection . length ) . toEqual ( 3 ) ;
expect ( selection ) . toContain ( 'One.txt' ) ;
expect ( selection ) . toContain ( 'Two.jpg' ) ;
expect ( selection ) . toContain ( 'Three.pdf' ) ;
} ) ;
it ( 'Selects a range when clicking on one file then Shift clicking on another one that is above the first one' , function ( ) {
2014-05-09 00:06:30 +04:00
var $tr = fileList . findFileEl ( 'One.txt' ) ;
var $tr2 = fileList . findFileEl ( 'Three.pdf' ) ;
2014-04-04 20:46:08 +04:00
var e ;
$tr2 . find ( 'td.filename input:checkbox' ) . click ( ) ;
e = new $ . Event ( 'click' ) ;
e . shiftKey = true ;
$tr . find ( 'td.filename .name' ) . trigger ( e ) ;
expect ( $tr . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
expect ( $tr2 . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'Two.jpg' ) . find ( 'input:checkbox' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
var selection = _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) ;
2014-04-04 20:46:08 +04:00
expect ( selection . length ) . toEqual ( 3 ) ;
expect ( selection ) . toContain ( 'One.txt' ) ;
expect ( selection ) . toContain ( 'Two.jpg' ) ;
expect ( selection ) . toContain ( 'Three.pdf' ) ;
} ) ;
2014-02-12 17:50:23 +04:00
it ( 'Selecting all files will automatically check "select all" checkbox' , function ( ) {
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-02-12 17:50:23 +04:00
$ ( '#fileList tr td.filename input:checkbox' ) . click ( ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-02-12 17:50:23 +04:00
} ) ;
2014-04-04 20:46:08 +04:00
it ( 'Selecting all files on the first visible page will not automatically check "select all" checkbox' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( generateFiles ( 0 , 41 ) ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-04-04 20:46:08 +04:00
$ ( '#fileList tr td.filename input:checkbox' ) . click ( ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-04-04 20:46:08 +04:00
} ) ;
2014-02-12 17:50:23 +04:00
it ( 'Clicking "select all" will select/deselect all files' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( generateFiles ( 0 , 41 ) ) ;
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-02-12 17:50:23 +04:00
$ ( '#fileList tr input:checkbox' ) . each ( function ( ) {
expect ( $ ( this ) . prop ( 'checked' ) ) . toEqual ( true ) ;
} ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 42 ) ;
2014-02-12 17:50:23 +04:00
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-02-12 17:50:23 +04:00
$ ( '#fileList tr input:checkbox' ) . each ( function ( ) {
expect ( $ ( this ) . prop ( 'checked' ) ) . toEqual ( false ) ;
} ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 0 ) ;
2014-02-12 17:50:23 +04:00
} ) ;
it ( 'Clicking "select all" then deselecting a file will uncheck "select all"' , function ( ) {
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-02-12 17:50:23 +04:00
2014-05-09 00:06:30 +04:00
var $tr = fileList . findFileEl ( 'One.txt' ) ;
2014-02-12 17:50:23 +04:00
$tr . find ( 'input:checkbox' ) . click ( ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 3 ) ;
2014-04-04 20:46:08 +04:00
} ) ;
2014-04-10 22:07:02 +04:00
it ( 'Updates the selection summary when doing a few manipulations with "Select all"' , function ( ) {
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-04-10 22:07:02 +04:00
2014-05-09 00:06:30 +04:00
var $tr = fileList . findFileEl ( 'One.txt' ) ;
2014-04-10 22:07:02 +04:00
// unselect one
$tr . find ( 'input:checkbox' ) . click ( ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 3 ) ;
2014-04-10 22:07:02 +04:00
// select all
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 4 ) ;
2014-04-10 22:07:02 +04:00
// unselect one
$tr . find ( 'input:checkbox' ) . click ( ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 3 ) ;
2014-04-10 22:07:02 +04:00
// re-select it
$tr . find ( 'input:checkbox' ) . click ( ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( true ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 4 ) ;
2014-04-10 22:07:02 +04:00
} ) ;
2014-04-04 20:46:08 +04:00
it ( 'Auto-selects files on next page when "select all" is checked' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . setFiles ( generateFiles ( 0 , 41 ) ) ;
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
2014-04-04 20:46:08 +04:00
2014-05-09 00:06:30 +04:00
expect ( fileList . $fileList . find ( 'tr input:checkbox:checked' ) . length ) . toEqual ( 20 ) ;
fileList . _nextPage ( true ) ;
expect ( fileList . $fileList . find ( 'tr input:checkbox:checked' ) . length ) . toEqual ( 40 ) ;
fileList . _nextPage ( true ) ;
expect ( fileList . $fileList . find ( 'tr input:checkbox:checked' ) . length ) . toEqual ( 42 ) ;
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) . length ) . toEqual ( 42 ) ;
2014-02-12 17:50:23 +04:00
} ) ;
it ( 'Selecting files updates selection summary' , function ( ) {
2014-04-03 22:57:06 +04:00
var $summary = $ ( '#headerName a.name>span:first' ) ;
2014-02-12 17:50:23 +04:00
expect ( $summary . text ( ) ) . toEqual ( 'Name' ) ;
2014-05-09 00:06:30 +04:00
fileList . findFileEl ( 'One.txt' ) . find ( 'input:checkbox' ) . click ( ) ;
fileList . findFileEl ( 'Three.pdf' ) . find ( 'input:checkbox' ) . click ( ) ;
fileList . findFileEl ( 'somedir' ) . find ( 'input:checkbox' ) . click ( ) ;
2014-02-12 17:50:23 +04:00
expect ( $summary . text ( ) ) . toEqual ( '1 folder & 2 files' ) ;
} ) ;
it ( 'Unselecting files hides selection summary' , function ( ) {
2014-04-03 22:57:06 +04:00
var $summary = $ ( '#headerName a.name>span:first' ) ;
2014-05-09 00:06:30 +04:00
fileList . findFileEl ( 'One.txt' ) . find ( 'input:checkbox' ) . click ( ) . click ( ) ;
2014-02-12 17:50:23 +04:00
expect ( $summary . text ( ) ) . toEqual ( 'Name' ) ;
} ) ;
it ( 'Select/deselect files shows/hides file actions' , function ( ) {
var $actions = $ ( '#headerName .selectedActions' ) ;
2014-05-09 00:06:30 +04:00
var $checkbox = fileList . findFileEl ( 'One.txt' ) . find ( 'input:checkbox' ) ;
2014-02-12 17:50:23 +04:00
expect ( $actions . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
$checkbox . click ( ) ;
expect ( $actions . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
$checkbox . click ( ) ;
expect ( $actions . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
} ) ;
it ( 'Selection is cleared when switching dirs' , function ( ) {
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
2014-02-12 17:50:23 +04:00
var data = {
status : 'success' ,
data : {
files : testFiles ,
permissions : 31
}
} ;
fakeServer . respondWith ( /\/index\.php\/apps\/files\/ajax\/list.php/ , [
200 , {
"Content-Type" : "application/json"
} ,
JSON . stringify ( data )
] ) ;
2014-05-09 00:06:30 +04:00
fileList . changeDirectory ( '/' ) ;
2014-02-12 17:50:23 +04:00
fakeServer . respond ( ) ;
2014-05-12 21:54:20 +04:00
expect ( $ ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) ) . toEqual ( [ ] ) ;
2014-04-04 20:46:08 +04:00
} ) ;
it ( 'getSelectedFiles returns the selected files even when they are on the next page' , function ( ) {
var selectedFiles ;
2014-05-09 00:06:30 +04:00
fileList . setFiles ( generateFiles ( 0 , 41 ) ) ;
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
2014-04-04 20:46:08 +04:00
// unselect one to not have the "allFiles" case
2014-05-09 00:06:30 +04:00
fileList . $fileList . find ( 'tr input:checkbox:first' ) . click ( ) ;
2014-04-04 20:46:08 +04:00
// only 20 files visible, must still return all the selected ones
2014-05-09 00:06:30 +04:00
selectedFiles = _ . pluck ( fileList . getSelectedFiles ( ) , 'name' ) ;
2014-04-04 20:46:08 +04:00
expect ( selectedFiles . length ) . toEqual ( 41 ) ;
2014-02-12 17:50:23 +04:00
} ) ;
2014-05-12 21:54:20 +04:00
describe ( 'Selection overlay' , function ( ) {
it ( 'show delete action according to directory permissions' , function ( ) {
fileList . setFiles ( testFiles ) ;
$ ( '#permissions' ) . val ( OC . PERMISSION _READ | OC . PERMISSION _DELETE ) ;
$ ( '.select-all' ) . click ( ) ;
expect ( fileList . $el . find ( '.delete-selected' ) . hasClass ( 'hidden' ) ) . toEqual ( false ) ;
$ ( '.select-all' ) . click ( ) ;
$ ( '#permissions' ) . val ( OC . PERMISSION _READ ) ;
$ ( '.select-all' ) . click ( ) ;
expect ( fileList . $el . find ( '.delete-selected' ) . hasClass ( 'hidden' ) ) . toEqual ( true ) ;
} ) ;
} ) ;
2014-02-12 17:50:23 +04:00
describe ( 'Actions' , function ( ) {
beforeEach ( function ( ) {
2014-05-09 00:06:30 +04:00
fileList . findFileEl ( 'One.txt' ) . find ( 'input:checkbox' ) . click ( ) ;
fileList . findFileEl ( 'Three.pdf' ) . find ( 'input:checkbox' ) . click ( ) ;
fileList . findFileEl ( 'somedir' ) . find ( 'input:checkbox' ) . click ( ) ;
2014-02-12 17:50:23 +04:00
} ) ;
2014-04-04 20:46:08 +04:00
it ( 'getSelectedFiles returns the selected file data' , function ( ) {
2014-05-09 00:06:30 +04:00
var files = fileList . getSelectedFiles ( ) ;
2014-02-12 17:50:23 +04:00
expect ( files . length ) . toEqual ( 3 ) ;
expect ( files [ 0 ] ) . toEqual ( {
id : 1 ,
name : 'One.txt' ,
mimetype : 'text/plain' ,
type : 'file' ,
size : 12 ,
2014-04-04 20:46:08 +04:00
etag : 'abc'
2014-02-12 17:50:23 +04:00
} ) ;
expect ( files [ 1 ] ) . toEqual ( {
id : 3 ,
type : 'file' ,
name : 'Three.pdf' ,
mimetype : 'application/pdf' ,
size : 58009 ,
2014-04-04 20:46:08 +04:00
etag : '123'
2014-02-12 17:50:23 +04:00
} ) ;
expect ( files [ 2 ] ) . toEqual ( {
id : 4 ,
type : 'dir' ,
name : 'somedir' ,
mimetype : 'httpd/unix-directory' ,
size : 250 ,
2014-04-04 20:46:08 +04:00
etag : '456'
} ) ;
} ) ;
it ( 'Removing a file removes it from the selection' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . remove ( 'Three.pdf' ) ;
var files = fileList . getSelectedFiles ( ) ;
2014-04-04 20:46:08 +04:00
expect ( files . length ) . toEqual ( 2 ) ;
expect ( files [ 0 ] ) . toEqual ( {
id : 1 ,
name : 'One.txt' ,
mimetype : 'text/plain' ,
type : 'file' ,
size : 12 ,
etag : 'abc'
} ) ;
expect ( files [ 1 ] ) . toEqual ( {
id : 4 ,
type : 'dir' ,
name : 'somedir' ,
mimetype : 'httpd/unix-directory' ,
size : 250 ,
etag : '456'
2014-02-12 17:50:23 +04:00
} ) ;
} ) ;
describe ( 'Download' , function ( ) {
it ( 'Opens download URL when clicking "Download"' , function ( ) {
var redirectStub = sinon . stub ( OC , 'redirect' ) ;
$ ( '.selectedActions .download' ) . click ( ) ;
expect ( redirectStub . calledOnce ) . toEqual ( true ) ;
expect ( redirectStub . getCall ( 0 ) . args [ 0 ] ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=%5B%22One.txt%22%2C%22Three.pdf%22%2C%22somedir%22%5D' ) ;
redirectStub . restore ( ) ;
} ) ;
it ( 'Downloads root folder when all selected in root folder' , function ( ) {
$ ( '#dir' ) . val ( '/' ) ;
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
2014-02-12 17:50:23 +04:00
var redirectStub = sinon . stub ( OC , 'redirect' ) ;
$ ( '.selectedActions .download' ) . click ( ) ;
expect ( redirectStub . calledOnce ) . toEqual ( true ) ;
expect ( redirectStub . getCall ( 0 ) . args [ 0 ] ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2F&files=' ) ;
redirectStub . restore ( ) ;
} ) ;
it ( 'Downloads parent folder when all selected in subfolder' , function ( ) {
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
2014-02-12 17:50:23 +04:00
var redirectStub = sinon . stub ( OC , 'redirect' ) ;
$ ( '.selectedActions .download' ) . click ( ) ;
expect ( redirectStub . calledOnce ) . toEqual ( true ) ;
expect ( redirectStub . getCall ( 0 ) . args [ 0 ] ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/download.php?dir=%2F&files=subdir' ) ;
redirectStub . restore ( ) ;
} ) ;
} ) ;
describe ( 'Delete' , function ( ) {
it ( 'Deletes selected files when "Delete" clicked' , function ( ) {
var request ;
$ ( '.selectedActions .delete-selected' ) . click ( ) ;
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
request = fakeServer . requests [ 0 ] ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/delete.php' ) ;
expect ( OC . parseQueryString ( request . requestBody ) )
. toEqual ( { 'dir' : '/subdir' , files : '["One.txt","Three.pdf","somedir"]' } ) ;
fakeServer . requests [ 0 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( { status : 'success' } )
) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . findFileEl ( 'One.txt' ) . length ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'Three.pdf' ) . length ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'somedir' ) . length ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'Two.jpg' ) . length ) . toEqual ( 1 ) ;
2014-02-12 17:50:23 +04:00
} ) ;
it ( 'Deletes all files when all selected when "Delete" clicked' , function ( ) {
var request ;
2014-05-12 21:54:20 +04:00
$ ( '.select-all' ) . click ( ) ;
2014-02-12 17:50:23 +04:00
$ ( '.selectedActions .delete-selected' ) . click ( ) ;
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
request = fakeServer . requests [ 0 ] ;
expect ( request . url ) . toEqual ( OC . webroot + '/index.php/apps/files/ajax/delete.php' ) ;
expect ( OC . parseQueryString ( request . requestBody ) )
. toEqual ( { 'dir' : '/subdir' , allfiles : 'true' } ) ;
fakeServer . requests [ 0 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( { status : 'success' } )
) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . isEmpty ) . toEqual ( true ) ;
2014-02-12 17:50:23 +04:00
} ) ;
} ) ;
} ) ;
2014-04-29 20:49:11 +04:00
it ( 'resets the file selection on reload' , function ( ) {
2014-05-12 21:54:20 +04:00
fileList . $el . find ( '.select-all' ) . click ( ) ;
2014-05-09 00:06:30 +04:00
fileList . reload ( ) ;
2014-05-12 21:54:20 +04:00
expect ( fileList . $el . find ( '.select-all' ) . prop ( 'checked' ) ) . toEqual ( false ) ;
2014-05-09 00:06:30 +04:00
expect ( fileList . getSelectedFiles ( ) ) . toEqual ( [ ] ) ;
2014-04-29 20:49:11 +04:00
} ) ;
2014-02-12 17:50:23 +04:00
} ) ;
2014-04-03 22:57:06 +04:00
describe ( 'Sorting files' , function ( ) {
it ( 'Sorts by name by default' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . reload ( ) ;
2014-04-03 22:57:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
var url = fakeServer . requests [ 0 ] . url ;
var query = OC . parseQueryString ( url . substr ( url . indexOf ( '?' ) + 1 ) ) ;
expect ( query . sort ) . toEqual ( 'name' ) ;
expect ( query . sortdirection ) . toEqual ( 'asc' ) ;
} ) ;
it ( 'Reloads file list with a different sort when clicking on column header of unsorted column' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
var url = fakeServer . requests [ 0 ] . url ;
var query = OC . parseQueryString ( url . substr ( url . indexOf ( '?' ) + 1 ) ) ;
expect ( query . sort ) . toEqual ( 'size' ) ;
expect ( query . sortdirection ) . toEqual ( 'asc' ) ;
} ) ;
it ( 'Toggles sort direction when clicking on already sorted column' , function ( ) {
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-name .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
var url = fakeServer . requests [ 0 ] . url ;
var query = OC . parseQueryString ( url . substr ( url . indexOf ( '?' ) + 1 ) ) ;
expect ( query . sort ) . toEqual ( 'name' ) ;
expect ( query . sortdirection ) . toEqual ( 'desc' ) ;
} ) ;
it ( 'Toggles the sort indicator when clicking on a column header' , function ( ) {
2014-05-09 00:06:30 +04:00
var ASC _CLASS = fileList . SORT _INDICATOR _ASC _CLASS ;
var DESC _CLASS = fileList . SORT _INDICATOR _DESC _CLASS ;
fileList . $el . find ( '.column-size .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
// moves triangle to size column
expect (
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-name .sort-indicator' ) . hasClass ( ASC _CLASS + ' ' + DESC _CLASS )
2014-04-03 22:57:06 +04:00
) . toEqual ( false ) ;
expect (
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .sort-indicator' ) . hasClass ( ASC _CLASS )
2014-04-03 22:57:06 +04:00
) . toEqual ( true ) ;
// click again on size column, reverses direction
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
expect (
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .sort-indicator' ) . hasClass ( DESC _CLASS )
2014-04-03 22:57:06 +04:00
) . toEqual ( true ) ;
// click again on size column, reverses direction
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
expect (
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .sort-indicator' ) . hasClass ( ASC _CLASS )
2014-04-03 22:57:06 +04:00
) . toEqual ( true ) ;
// click on mtime column, moves indicator there
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-mtime .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
expect (
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .sort-indicator' ) . hasClass ( ASC _CLASS + ' ' + DESC _CLASS )
2014-04-03 22:57:06 +04:00
) . toEqual ( false ) ;
expect (
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-mtime .sort-indicator' ) . hasClass ( ASC _CLASS )
2014-04-03 22:57:06 +04:00
) . toEqual ( true ) ;
} ) ;
it ( 'Uses correct sort comparator when inserting files' , function ( ) {
2014-05-09 00:06:30 +04:00
testFiles . sort ( OCA . Files . FileList . Comparators . size ) ;
2014-04-03 22:57:06 +04:00
// this will make it reload the testFiles with the correct sorting
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
fakeServer . requests [ 0 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( {
status : 'success' ,
data : {
files : testFiles ,
permissions : 31
}
} )
) ;
var newFileData = {
id : 999 ,
type : 'file' ,
name : 'new file.txt' ,
mimetype : 'text/plain' ,
size : 40001 ,
etag : '999'
} ;
2014-05-09 00:06:30 +04:00
fileList . add ( newFileData ) ;
expect ( fileList . files . length ) . toEqual ( 5 ) ;
expect ( fileList . $fileList . find ( 'tr' ) . length ) . toEqual ( 5 ) ;
expect ( fileList . findFileEl ( 'One.txt' ) . index ( ) ) . toEqual ( 0 ) ;
expect ( fileList . findFileEl ( 'somedir' ) . index ( ) ) . toEqual ( 1 ) ;
expect ( fileList . findFileEl ( 'Two.jpg' ) . index ( ) ) . toEqual ( 2 ) ;
expect ( fileList . findFileEl ( 'new file.txt' ) . index ( ) ) . toEqual ( 3 ) ;
expect ( fileList . findFileEl ( 'Three.pdf' ) . index ( ) ) . toEqual ( 4 ) ;
2014-04-03 22:57:06 +04:00
} ) ;
it ( 'Uses correct reversed sort comparator when inserting files' , function ( ) {
2014-05-09 00:06:30 +04:00
testFiles . sort ( OCA . Files . FileList . Comparators . size ) ;
2014-04-03 22:57:06 +04:00
testFiles . reverse ( ) ;
// this will make it reload the testFiles with the correct sorting
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
expect ( fakeServer . requests . length ) . toEqual ( 1 ) ;
fakeServer . requests [ 0 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( {
status : 'success' ,
data : {
files : testFiles ,
permissions : 31
}
} )
) ;
// reverse sort
2014-05-09 00:06:30 +04:00
fileList . $el . find ( '.column-size .columntitle' ) . click ( ) ;
2014-04-03 22:57:06 +04:00
fakeServer . requests [ 1 ] . respond (
200 ,
{ 'Content-Type' : 'application/json' } ,
JSON . stringify ( {
status : 'success' ,
data : {
files : testFiles ,
permissions : 31
}
} )
) ;
var newFileData = {
id : 999 ,
type : 'file' ,
name : 'new file.txt' ,
mimetype : 'text/plain' ,
size : 40001 ,
etag : '999'
} ;
2014-05-09 00:06:30 +04:00
fileList . add ( newFileData ) ;
expect ( fileList . files . length ) . toEqual ( 5 ) ;
expect ( fileList . $fileList . find ( 'tr' ) . length ) . toEqual ( 5 ) ;
expect ( fileList . findFileEl ( 'One.txt' ) . index ( ) ) . toEqual ( 4 ) ;
expect ( fileList . findFileEl ( 'somedir' ) . index ( ) ) . toEqual ( 3 ) ;
expect ( fileList . findFileEl ( 'Two.jpg' ) . index ( ) ) . toEqual ( 2 ) ;
expect ( fileList . findFileEl ( 'new file.txt' ) . index ( ) ) . toEqual ( 1 ) ;
expect ( fileList . findFileEl ( 'Three.pdf' ) . index ( ) ) . toEqual ( 0 ) ;
2014-04-03 22:57:06 +04:00
} ) ;
2014-02-12 17:50:23 +04:00
} ) ;
2014-01-12 21:57:53 +04:00
} ) ;