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
ff3f63fd
Unverified
Commit
ff3f63fd
authored
6 years ago
by
Roeland Jago Douma
Browse files
Options
Downloads
Patches
Plain Diff
Fix PublicPreviewControllerTests
Signed-off-by:
Roeland Jago Douma
<
roeland@famdouma.nl
>
parent
20e51469
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
apps/files_sharing/tests/Controller/PublicPreviewControllerTest.php
+10
-8
10 additions, 8 deletions
..._sharing/tests/Controller/PublicPreviewControllerTest.php
with
10 additions
and
8 deletions
apps/files_sharing/tests/Controller/PublicPreviewControllerTest.php
+
10
−
8
View file @
ff3f63fd
...
...
@@ -33,6 +33,7 @@ use OCP\Files\NotFoundException;
use
OCP\Files\SimpleFS\ISimpleFile
;
use
OCP\IPreview
;
use
OCP\IRequest
;
use
OCP\ISession
;
use
OCP\Share\Exceptions\ShareNotFound
;
use
OCP\Share\IManager
;
use
OCP\Share\IShare
;
...
...
@@ -60,26 +61,27 @@ class PublicPreviewControllerTest extends TestCase {
'files_sharing'
,
$this
->
createMock
(
IRequest
::
class
),
$this
->
shareManager
,
$this
->
createMock
(
ISession
::
class
),
$this
->
previewManager
);
}
public
function
testInvalidToken
()
{
$res
=
$this
->
controller
->
getPreview
(
'file'
,
10
,
10
,
''
);
$res
=
$this
->
controller
->
getPreview
(
''
,
'file'
,
10
,
10
,
''
);
$expected
=
new
DataResponse
([],
Http
::
STATUS_BAD_REQUEST
);
$this
->
assertEquals
(
$expected
,
$res
);
}
public
function
testInvalidWidth
()
{
$res
=
$this
->
controller
->
getPreview
(
'file'
,
0
);
$res
=
$this
->
controller
->
getPreview
(
'token'
,
'file'
,
0
);
$expected
=
new
DataResponse
([],
Http
::
STATUS_BAD_REQUEST
);
$this
->
assertEquals
(
$expected
,
$res
);
}
public
function
testInvalidHeight
()
{
$res
=
$this
->
controller
->
getPreview
(
'file'
,
10
,
0
);
$res
=
$this
->
controller
->
getPreview
(
'token'
,
'file'
,
10
,
0
);
$expected
=
new
DataResponse
([],
Http
::
STATUS_BAD_REQUEST
);
$this
->
assertEquals
(
$expected
,
$res
);
...
...
@@ -90,7 +92,7 @@ class PublicPreviewControllerTest extends TestCase {
->
with
(
$this
->
equalTo
(
'token'
))
->
willThrowException
(
new
ShareNotFound
());
$res
=
$this
->
controller
->
getPreview
(
'file'
,
10
,
10
,
'token'
);
$res
=
$this
->
controller
->
getPreview
(
'token'
,
'file'
,
10
,
10
);
$expected
=
new
DataResponse
([],
Http
::
STATUS_NOT_FOUND
);
$this
->
assertEquals
(
$expected
,
$res
);
...
...
@@ -105,7 +107,7 @@ class PublicPreviewControllerTest extends TestCase {
$share
->
method
(
'getPermissions'
)
->
willReturn
(
0
);
$res
=
$this
->
controller
->
getPreview
(
'file'
,
10
,
10
,
'token'
);
$res
=
$this
->
controller
->
getPreview
(
'token'
,
'file'
,
10
,
10
);
$expected
=
new
DataResponse
([],
Http
::
STATUS_FORBIDDEN
);
$this
->
assertEquals
(
$expected
,
$res
);
...
...
@@ -132,7 +134,7 @@ class PublicPreviewControllerTest extends TestCase {
$preview
->
method
(
'getMimeType'
)
->
willReturn
(
'myMime'
);
$res
=
$this
->
controller
->
getPreview
(
'file'
,
10
,
10
,
'token'
,
true
);
$res
=
$this
->
controller
->
getPreview
(
'token'
,
'file'
,
10
,
10
,
true
);
$expected
=
new
FileDisplayResponse
(
$preview
,
Http
::
STATUS_OK
,
[
'Content-Type'
=>
'myMime'
]);
$this
->
assertEquals
(
$expected
,
$res
);
}
...
...
@@ -154,7 +156,7 @@ class PublicPreviewControllerTest extends TestCase {
->
with
(
$this
->
equalTo
(
'file'
))
->
willThrowException
(
new
NotFoundException
());
$res
=
$this
->
controller
->
getPreview
(
'file'
,
10
,
10
,
'token'
,
true
);
$res
=
$this
->
controller
->
getPreview
(
'token'
,
'file'
,
10
,
10
,
true
);
$expected
=
new
DataResponse
([],
Http
::
STATUS_NOT_FOUND
);
$this
->
assertEquals
(
$expected
,
$res
);
}
...
...
@@ -186,7 +188,7 @@ class PublicPreviewControllerTest extends TestCase {
$preview
->
method
(
'getMimeType'
)
->
willReturn
(
'myMime'
);
$res
=
$this
->
controller
->
getPreview
(
'file'
,
10
,
10
,
'token'
,
true
);
$res
=
$this
->
controller
->
getPreview
(
'token'
,
'file'
,
10
,
10
,
true
);
$expected
=
new
FileDisplayResponse
(
$preview
,
Http
::
STATUS_OK
,
[
'Content-Type'
=>
'myMime'
]);
$this
->
assertEquals
(
$expected
,
$res
);
}
...
...
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