Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
Nextcloud
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Container Registry
Model registry
Monitor
Service Desk
Analyze
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
TeDomum
Nextcloud
Commits
aaa8d6ec
Commit
aaa8d6ec
authored
11 years ago
by
Vincent Petry
Browse files
Options
Downloads
Patches
Plain Diff
Fixed broken delete file action
parent
27eff1ac
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
apps/files/js/fileactions.js
+1
-1
1 addition, 1 deletion
apps/files/js/fileactions.js
apps/files/tests/js/fileactionsSpec.js
+19
-7
19 additions, 7 deletions
apps/files/tests/js/fileactionsSpec.js
with
20 additions
and
8 deletions
apps/files/js/fileactions.js
+
1
−
1
View file @
aaa8d6ec
...
@@ -180,7 +180,7 @@ var FileActions = {
...
@@ -180,7 +180,7 @@ var FileActions = {
}
}
var
element
=
$
(
html
);
var
element
=
$
(
html
);
element
.
data
(
'
action
'
,
actions
[
'
Delete
'
]);
element
.
data
(
'
action
'
,
actions
[
'
Delete
'
]);
element
.
on
(
'
click
'
,
{
a
:
null
,
elem
:
parent
,
actionFunc
:
actions
[
'
Delete
'
]},
actionHandler
);
element
.
on
(
'
click
'
,
{
a
:
null
,
elem
:
parent
,
actionFunc
:
actions
[
'
Delete
'
]
.
action
},
actionHandler
);
parent
.
parent
().
children
().
last
().
append
(
element
);
parent
.
parent
().
children
().
last
().
append
(
element
);
}
}
...
...
This diff is collapsed.
Click to expand it.
apps/files/tests/js/fileactionsSpec.js
+
19
−
7
View file @
aaa8d6ec
...
@@ -38,15 +38,17 @@ describe('FileActions tests', function() {
...
@@ -38,15 +38,17 @@ describe('FileActions tests', function() {
var
$tr
=
FileList
.
addFile
(
'
testName.txt
'
,
1234
,
new
Date
(),
false
,
false
,
{
download_url
:
'
test/download/url
'
});
var
$tr
=
FileList
.
addFile
(
'
testName.txt
'
,
1234
,
new
Date
(),
false
,
false
,
{
download_url
:
'
test/download/url
'
});
// no actions before call
// no actions before call
expect
(
$tr
.
find
(
'
.action
[data-
action
=D
ownload
]
'
).
length
).
toEqual
(
0
);
expect
(
$tr
.
find
(
'
.action
.
action
-d
ownload
'
).
length
).
toEqual
(
0
);
expect
(
$tr
.
find
(
'
.action
[data-
action
=R
ename
]
'
).
length
).
toEqual
(
0
);
expect
(
$tr
.
find
(
'
.action
.
action
-r
ename
'
).
length
).
toEqual
(
0
);
expect
(
$tr
.
find
(
'
.action.delete
'
).
length
).
toEqual
(
0
);
expect
(
$tr
.
find
(
'
.action.delete
'
).
length
).
toEqual
(
0
);
FileActions
.
display
(
$tr
.
find
(
'
td.filename
'
),
true
);
FileActions
.
display
(
$tr
.
find
(
'
td.filename
'
),
true
);
// actions defined after cal
// actions defined after cal
expect
(
$tr
.
find
(
'
.action[data-action=Download]
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.action.action-download
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.nametext .action[data-action=Rename]
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.action.action-download
'
).
attr
(
'
data-action
'
)).
toEqual
(
'
Download
'
);
expect
(
$tr
.
find
(
'
.nametext .action.action-rename
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.nametext .action.action-rename
'
).
attr
(
'
data-action
'
)).
toEqual
(
'
Rename
'
);
expect
(
$tr
.
find
(
'
.action.delete
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.action.delete
'
).
length
).
toEqual
(
1
);
});
});
it
(
'
calling display() twice correctly replaces file actions
'
,
function
()
{
it
(
'
calling display() twice correctly replaces file actions
'
,
function
()
{
...
@@ -56,8 +58,8 @@ describe('FileActions tests', function() {
...
@@ -56,8 +58,8 @@ describe('FileActions tests', function() {
FileActions
.
display
(
$tr
.
find
(
'
td.filename
'
),
true
);
FileActions
.
display
(
$tr
.
find
(
'
td.filename
'
),
true
);
// actions defined after cal
// actions defined after cal
expect
(
$tr
.
find
(
'
.action
[data-
action
=D
ownload
]
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.action
.
action
-d
ownload
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.nametext .action
[data-
action
=R
ename
]
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.nametext .action
.
action
-r
ename
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.action.delete
'
).
length
).
toEqual
(
1
);
expect
(
$tr
.
find
(
'
.action.delete
'
).
length
).
toEqual
(
1
);
});
});
it
(
'
redirects to download URL when clicking download
'
,
function
()
{
it
(
'
redirects to download URL when clicking download
'
,
function
()
{
...
@@ -66,10 +68,20 @@ describe('FileActions tests', function() {
...
@@ -66,10 +68,20 @@ describe('FileActions tests', function() {
var
$tr
=
FileList
.
addFile
(
'
test download File.txt
'
,
1234
,
new
Date
(),
false
,
false
,
{
download_url
:
'
test/download/url
'
});
var
$tr
=
FileList
.
addFile
(
'
test download File.txt
'
,
1234
,
new
Date
(),
false
,
false
,
{
download_url
:
'
test/download/url
'
});
FileActions
.
display
(
$tr
.
find
(
'
td.filename
'
),
true
);
FileActions
.
display
(
$tr
.
find
(
'
td.filename
'
),
true
);
$tr
.
find
(
'
.action
[data-action=D
ownload
]
'
).
click
();
$tr
.
find
(
'
.action
-d
ownload
'
).
click
();
expect
(
redirectStub
.
calledOnce
).
toEqual
(
true
);
expect
(
redirectStub
.
calledOnce
).
toEqual
(
true
);
expect
(
redirectStub
.
getCall
(
0
).
args
[
0
]).
toEqual
(
OC
.
webroot
+
'
/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=test%20download%20File.txt
'
);
expect
(
redirectStub
.
getCall
(
0
).
args
[
0
]).
toEqual
(
OC
.
webroot
+
'
/index.php/apps/files/ajax/download.php?dir=%2Fsubdir&files=test%20download%20File.txt
'
);
redirectStub
.
restore
();
redirectStub
.
restore
();
});
});
it
(
'
deletes file when clicking delete
'
,
function
()
{
var
deleteStub
=
sinon
.
stub
(
FileList
,
'
do_delete
'
);
var
$tr
=
FileList
.
addFile
(
'
test delete File.txt
'
,
1234
,
new
Date
());
FileActions
.
display
(
$tr
.
find
(
'
td.filename
'
),
true
);
$tr
.
find
(
'
.action.delete
'
).
click
();
expect
(
deleteStub
.
calledOnce
).
toEqual
(
true
);
deleteStub
.
restore
();
});
});
});
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment