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
9efc0669
Commit
9efc0669
authored
10 years ago
by
Elan Ruusamäe
Browse files
Options
Downloads
Patches
Plain Diff
run as much as possible (fill extensions conditionally), skip missing ext once
parent
56ecd4f4
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/tar.test.php
+14
-16
14 additions, 16 deletions
_test/tests/inc/tar.test.php
with
14 additions
and
16 deletions
_test/tests/inc/tar.test.php
+
14
−
16
View file @
9efc0669
...
...
@@ -4,7 +4,16 @@ class Tar_TestCase extends DokuWikiTest {
/**
* file extensions that several tests use
*/
protected
$extensions
=
array
(
'tar'
,
'tgz'
,
'tbz'
);
protected
$extensions
=
array
(
'tar'
);
public
function
setUp
()
{
if
(
extension_loaded
(
'zlib'
))
{
$this
->
extensions
[]
=
'tgz'
;
}
if
(
extension_loaded
(
'bz2'
))
{
$this
->
extensions
[]
=
'tbz'
;
}
}
/*
* dependency for tests needing zlib extension to pass
...
...
@@ -15,16 +24,12 @@ class Tar_TestCase extends DokuWikiTest {
}
}
/**
* dependency test to test available extensions
* fills $this->extensions array
/*
* dependency for tests needing zlib extension to pass
*/
public
function
test_extensions
()
{
if
(
!
extension_loaded
(
'zlib'
))
{
$this
->
markTestSkipped
(
'skipping all zlib tests. Need zlib extension'
);
}
public
function
test_ext_bz2
()
{
if
(
!
extension_loaded
(
'bz2'
))
{
$this
->
markTestSkipped
(
'skipping all bz2 tests. Need bz2 extension'
);
$this
->
markTestSkipped
(
'skipping all bz
ip
2 tests. Need bz2 extension'
);
}
}
...
...
@@ -109,7 +114,6 @@ class Tar_TestCase extends DokuWikiTest {
/**
* List the contents of the prebuilt TAR files
* @depends test_extensions
*/
public
function
test_tarcontent
()
{
$dir
=
dirname
(
__FILE__
)
.
'/tar'
;
...
...
@@ -132,7 +136,6 @@ class Tar_TestCase extends DokuWikiTest {
/**
* Extract the prebuilt tar files
* @depends test_extensions
*/
public
function
test_tarextract
()
{
$dir
=
dirname
(
__FILE__
)
.
'/tar'
;
...
...
@@ -159,7 +162,6 @@ class Tar_TestCase extends DokuWikiTest {
/**
* Extract the prebuilt tar files with component stripping
* @depends test_extensions
*/
public
function
test_compstripextract
()
{
$dir
=
dirname
(
__FILE__
)
.
'/tar'
;
...
...
@@ -186,7 +188,6 @@ class Tar_TestCase extends DokuWikiTest {
/**
* Extract the prebuilt tar files with prefix stripping
* @depends test_extensions
*/
public
function
test_prefixstripextract
()
{
$dir
=
dirname
(
__FILE__
)
.
'/tar'
;
...
...
@@ -213,7 +214,6 @@ class Tar_TestCase extends DokuWikiTest {
/**
* Extract the prebuilt tar files with include regex
* @depends test_extensions
*/
public
function
test_includeextract
()
{
$dir
=
dirname
(
__FILE__
)
.
'/tar'
;
...
...
@@ -239,7 +239,6 @@ class Tar_TestCase extends DokuWikiTest {
/**
* Extract the prebuilt tar files with exclude regex
* @depends test_extensions
*/
public
function
test_excludeextract
()
{
$dir
=
dirname
(
__FILE__
)
.
'/tar'
;
...
...
@@ -265,7 +264,6 @@ class Tar_TestCase extends DokuWikiTest {
/**
* Check the extension to compression guesser
* @depends test_extensions
*/
public
function
test_filetype
()
{
$tar
=
new
Tar
();
...
...
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