Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
our_own_cloud_project
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Model registry
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
Repository analytics
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
die_coolen_jungs
our_own_cloud_project
Commits
fe2aca5a
Commit
fe2aca5a
authored
10 years ago
by
Roeland Jago Douma
Browse files
Options
Downloads
Patches
Plain Diff
Updated unit tests
parent
3be3e20c
No related branches found
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/capabilities.php
+123
-43
123 additions, 43 deletions
apps/files_sharing/tests/capabilities.php
with
123 additions
and
43 deletions
apps/files_sharing/tests/capabilities.php
+
123
−
43
View file @
fe2aca5a
...
...
@@ -17,19 +17,10 @@ class Test_Files_Sharing_Capabilities extends \Test\TestCase {
/**
* Test for the general part in each return statement and assert
*/
function
getFilesPart
(
$data
)
{
function
getFiles
Sharing
Part
(
$data
)
{
$this
->
assertArrayHasKey
(
'capabilities'
,
$data
);
$this
->
assertArrayHasKey
(
'files'
,
$data
[
'capabilities'
]);
return
$data
[
'capabilities'
][
'files'
];
}
/**
* Extract the sharing part and some asserts
*/
function
getSharing
(
$data
)
{
$this
->
assertCount
(
1
,
$data
);
$this
->
assertArrayHasKey
(
'sharing'
,
$data
);
return
$data
[
'sharing'
];
$this
->
assertArrayHasKey
(
'files_sharing'
,
$data
[
'capabilities'
]);
return
$data
[
'capabilities'
][
'files_sharing'
];
}
/**
...
...
@@ -41,7 +32,7 @@ class Test_Files_Sharing_Capabilities extends \Test\TestCase {
$stub
=
$this
->
getMockBuilder
(
'\OCP\IConfig'
)
->
disableOriginalConstructor
()
->
getMock
();
$stub
->
method
(
'getAppValue'
)
->
will
(
$this
->
returnValueMap
(
$map
));
$cap
=
new
\OCA\Files_Sharing\Capabilities
(
$stub
);
$result
=
$this
->
getFilesPart
(
$cap
->
getCaps
()
->
getData
());
$result
=
$this
->
getFiles
Sharing
Part
(
$cap
->
getCaps
()
->
getData
());
return
$result
;
}
...
...
@@ -50,10 +41,10 @@ class Test_Files_Sharing_Capabilities extends \Test\TestCase {
*/
public
function
test_no_link_sharing
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'no'
)
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'no'
)
,
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assert
Empty
(
$result
);
$this
->
assert
False
(
$result
[
'public'
]
);
}
/**
...
...
@@ -62,60 +53,149 @@ class Test_Files_Sharing_Capabilities extends \Test\TestCase {
public
function
test_only_link_sharing
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_enforce_links_password'
,
'yes'
,
'no'
),
array
(
'core'
,
'shareapi_allow_public_upload'
,
'yes'
,
'no'
)
);
$result
=
$this
->
getSharing
(
$this
->
getResults
(
$map
));
$this
->
assertCount
(
1
,
$result
);
$this
->
assertArrayHasKey
(
'allow_links'
,
$result
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertInternalType
(
'array'
,
$result
[
'public'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_link_
sharing_
password
()
{
public
function
test_link_password
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_enforce_links_password'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_allow_public_upload'
,
'yes'
,
'no'
)
);
$result
=
$this
->
getSharing
(
$this
->
getResults
(
$map
));
$this
->
assertCount
(
2
,
$result
);
$this
->
assertArrayHasKey
(
'allow_links'
,
$result
);
$this
->
assertArrayHasKey
(
'enforce_links_password'
,
$result
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertArrayHasKey
(
'password_enforced'
,
$result
[
'public'
]);
$this
->
assertTrue
(
$result
[
'public'
][
'password_enforced'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_link_
sharing_public_uploads
()
{
public
function
test_link_
no_password
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_enforce_links_password'
,
'yes'
,
'no'
),
array
(
'core'
,
'shareapi_allow_public_upload'
,
'yes'
,
'yes'
)
);
$result
=
$this
->
getSharing
(
$this
->
getResults
(
$map
));
$this
->
assertCount
(
2
,
$result
);
$this
->
assertArrayHasKey
(
'allow_links'
,
$result
);
$this
->
assertArrayHasKey
(
'allow_public_upload'
,
$result
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertArrayHasKey
(
'password_enforced'
,
$result
[
'public'
]);
$this
->
assertFalse
(
$result
[
'public'
][
'password_enforced'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_link_sharing_all
()
{
/*
* Test link sharing with all options on
*/
public
function
test_link_no_expire_date
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_enforce_links_password'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_allow_public_upload'
,
'yes'
,
'yes'
)
array
(
'core'
,
'shareapi_default_expire_date'
,
'yes'
,
'no'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertArrayHasKey
(
'expire_date'
,
$result
[
'public'
]);
$this
->
assertFalse
(
$result
[
'public'
][
'expire_date'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_link_expire_date
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_default_expire_date'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_expire_after_n_days'
,
false
,
0
),
array
(
'core'
,
'shareapi_enforce_expire_date'
,
'yes'
,
'no'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertArrayHasKey
(
'expire_date'
,
$result
[
'public'
]);
$this
->
assertInternalType
(
'array'
,
$result
[
'public'
][
'expire_date'
]);
$this
->
assertInternalType
(
'int'
,
$result
[
'public'
][
'expire_date'
][
'days'
]);
$this
->
assertFalse
(
$result
[
'public'
][
'expire_date'
][
'enforce'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_link_expire_date_enforced
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_default_expire_date'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_expire_after_n_days'
,
false
,
0
),
array
(
'core'
,
'shareapi_enforce_expire_date'
,
'yes'
,
'yes'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertArrayHasKey
(
'expire_date'
,
$result
[
'public'
]);
$this
->
assertInternalType
(
'array'
,
$result
[
'public'
][
'expire_date'
]);
$this
->
assertInternalType
(
'int'
,
$result
[
'public'
][
'expire_date'
][
'days'
]);
$this
->
assertTrue
(
$result
[
'public'
][
'expire_date'
][
'enforce'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_link_send_mail
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_allow_public_notification'
,
'yes'
,
'yes'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertTrue
(
$result
[
'public'
][
'send_mail'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_link_no_send_mail
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_links'
,
'yes'
,
'yes'
),
array
(
'core'
,
'shareapi_allow_public_notification'
,
'yes'
,
'no'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertFalse
(
$result
[
'public'
][
'send_mail'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_user_send_mail
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_mail_notification'
,
'yes'
,
'yes'
),
);
$result
=
$this
->
getSharing
(
$this
->
getResults
(
$map
));
$this
->
assertCount
(
3
,
$result
);
$this
->
assertArrayHasKey
(
'allow_links'
,
$result
);
$this
->
assertArrayHasKey
(
'enforce_links_password'
,
$result
);
$this
->
assertArrayHasKey
(
'allow_public_upload'
,
$result
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertTrue
(
$result
[
'user'
][
'send_mail'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_user_no_send_mail
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_mail_notification'
,
'yes'
,
'no'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertFalse
(
$result
[
'user'
][
'send_mail'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_resharing
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_resharing'
,
'yes'
,
'yes'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertTrue
(
$result
[
'resharing'
]);
}
/**
* @covers OCA\Files_Sharing\Capabilities::getCaps
*/
public
function
test_no_resharing
()
{
$map
=
array
(
array
(
'core'
,
'shareapi_allow_resharing'
,
'yes'
,
'no'
),
);
$result
=
$this
->
getResults
(
$map
);
$this
->
assertFalse
(
$result
[
'resharing'
]);
}
}
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