Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dokuwiki
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Requirements
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Locked files
Build
Pipelines
Jobs
Pipeline schedules
Test cases
Artifacts
Deploy
Releases
Package Registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Code review analytics
Issue analytics
Insights
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
BRIC
dokuwiki
Commits
4def61cf
Commit
4def61cf
authored
12 years ago
by
Andreas Gohr
Browse files
Options
Downloads
Patches
Plain Diff
test for media downloading (related to FS#2675
parent
8b48b31f
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
_test/tests/inc/media_get_from_url.test.php
+80
-0
80 additions, 0 deletions
_test/tests/inc/media_get_from_url.test.php
with
80 additions
and
0 deletions
_test/tests/inc/media_get_from_url.test.php
0 → 100644
+
80
−
0
View file @
4def61cf
<?php
class
media_get_from_url_test
extends
DokuWikiTest
{
/**
* @group internet
*/
public
function
test_cache
(){
global
$conf
;
$conf
[
'fetchsize'
]
=
500
*
1024
;
//500kb
$local
=
media_get_from_URL
(
'http://www.google.com/images/srpr/logo3w.png'
,
'png'
,
-
1
);
$this
->
assertTrue
(
$local
!==
false
);
$this
->
assertFileExists
(
$local
);
// remember time stamp
$time
=
filemtime
(
$local
);
clearstatcache
(
false
,
$local
);
sleep
(
1
);
// fetch again and make sure we got a cache file
$local
=
media_get_from_URL
(
'http://www.google.com/images/srpr/logo3w.png'
,
'png'
,
-
1
);
clearstatcache
(
false
,
$local
);
$this
->
assertTrue
(
$local
!==
false
);
$this
->
assertFileExists
(
$local
);
$this
->
assertEquals
(
$time
,
filemtime
(
$local
));
unlink
(
$local
);
}
/**
* @group internet
*/
public
function
test_nocache
(){
global
$conf
;
$conf
[
'fetchsize'
]
=
500
*
1024
;
//500kb
$local
=
media_get_from_URL
(
'http://www.google.com/images/srpr/logo3w.png'
,
'png'
,
0
);
$this
->
assertFalse
(
$local
);
}
/**
* @group internet
* @group slow
*/
public
function
test_recache
(){
global
$conf
;
$conf
[
'fetchsize'
]
=
500
*
1024
;
//500kb
$local
=
media_get_from_URL
(
'http://www.google.com/images/srpr/logo3w.png'
,
'png'
,
5
);
$this
->
assertTrue
(
$local
!==
false
);
$this
->
assertFileExists
(
$local
);
// remember time stamp
$time
=
filemtime
(
$local
);
clearstatcache
(
false
,
$local
);
sleep
(
1
);
// fetch again and make sure we got a cache file
$local
=
media_get_from_URL
(
'http://www.google.com/images/srpr/logo3w.png'
,
'png'
,
5
);
clearstatcache
(
false
,
$local
);
$this
->
assertTrue
(
$local
!==
false
);
$this
->
assertFileExists
(
$local
);
$this
->
assertEquals
(
$time
,
filemtime
(
$local
));
clearstatcache
(
false
,
$local
);
sleep
(
6
);
// fetch again and make sure we got a new file
$local
=
media_get_from_URL
(
'http://www.google.com/images/srpr/logo3w.png'
,
'png'
,
5
);
clearstatcache
(
false
,
$local
);
$this
->
assertTrue
(
$local
!==
false
);
$this
->
assertFileExists
(
$local
);
$this
->
assertNotEquals
(
$time
,
filemtime
(
$local
));
unlink
(
$local
);
}
}
\ No newline at end of file
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