Skip to content
GitLab
Menu
Projects
Groups
Snippets
Loading...
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
Pôle IS
Bundles Symfony 2
file-upload-bundle
Commits
e121ca34
Commit
e121ca34
authored
Oct 20, 2017
by
Predhumeau Manon
Committed by
Guillaume Perréal
Jul 24, 2018
Browse files
CS.
parent
9b4f1673
Changes
1
Show whitespace changes
Inline
Side-by-side
Tests/Listener/VirusScannerListenerTest.php
View file @
e121ca34
...
...
@@ -8,9 +8,9 @@ namespace Irstea\FileUploadBundle\Tests\Listener;
use
Irstea\FileUploadBundle\Event\FileUploadCompleteEvent
;
use
Irstea\FileUploadBundle\Listener\VirusScannerListener
;
use
Irstea\FileUploadBundle\Model\UploadedFileInterface
;
use
PHPUnit_Framework_MockObject_MockObject
;
use
PHPUnit_Framework_TestCase
;
use
Irstea\FileUploadBundle\Model\UploadedFileInterface
;
use
Xenolope\Quahog\Client
;
use
Xenolope\Quahog\Exception\ConnectionException
;
...
...
@@ -55,13 +55,12 @@ class VirusScannerListenerTest extends PHPUnit_Framework_TestCase
$this
->
listener
=
new
VirusScannerListener
(
$this
->
client
);
}
public
function
testOnFileUploadCompletedResultOk
()
{
$result
=
[
'filename'
=>
'footpath'
,
'reason'
=>
null
,
'status'
=>
Client
::
RESULT_OK
'status'
=>
Client
::
RESULT_OK
,
];
$this
->
client
->
expects
(
$this
->
once
())
->
method
(
'scanFile'
)
->
with
(
'foopath'
)
->
willReturn
(
$result
);
...
...
@@ -76,9 +75,9 @@ class VirusScannerListenerTest extends PHPUnit_Framework_TestCase
public
function
testOnFileUploadCompletedVirusFound
()
{
$result
=
[
'filename'
=>
'foo
t
path'
,
'filename'
=>
'foopath'
,
'reason'
=>
'Terrible virus'
,
'status'
=>
Client
::
RESULT_FOUND
'status'
=>
Client
::
RESULT_FOUND
,
];
$this
->
client
->
expects
(
$this
->
once
())
...
...
@@ -102,7 +101,6 @@ class VirusScannerListenerTest extends PHPUnit_Framework_TestCase
$this
->
listener
->
onFileUploadCompleted
(
$this
->
event
);
}
public
function
testGetClientSucceed
()
{
$this
->
client
->
expects
(
$this
->
once
())
->
method
(
'ping'
)
->
willReturn
(
true
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
.
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment