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
314ca843
Commit
314ca843
authored
11 years ago
by
Thomas Tanghus
Browse files
Options
Downloads
Patches
Plain Diff
Updated method names and added a few more tests.
parent
76f8be3b
No related branches found
Branches containing commit
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
lib/public/itags.php
+3
-3
3 additions, 3 deletions
lib/public/itags.php
lib/tags.php
+6
-6
6 additions, 6 deletions
lib/tags.php
tests/lib/tags.php
+48
-11
48 additions, 11 deletions
tests/lib/tags.php
with
57 additions
and
20 deletions
lib/public/itags.php
+
3
−
3
View file @
314ca843
...
...
@@ -65,7 +65,7 @@ interface ITags {
*
* @returns array
*/
public
function
t
ags
();
public
function
getT
ags
();
/**
* Get the a list if items tagged with $tag.
...
...
@@ -75,7 +75,7 @@ interface ITags {
* @param string|integer $tag Tag id or name.
* @return array An array of object ids or false on error.
*/
public
function
i
dsForTag
(
$tag
);
public
function
getI
dsForTag
(
$tag
);
/**
* Checks whether a tag is already saved.
...
...
@@ -111,7 +111,7 @@ interface ITags {
* @param int|null $id int Optional object id to add to this|these tag(s)
* @return bool Returns false on error.
*/
public
function
addMulti
(
$names
,
$sync
=
false
,
$id
=
null
);
public
function
addMulti
ple
(
$names
,
$sync
=
false
,
$id
=
null
);
/**
* Delete tag/object relations from the db
...
...
This diff is collapsed.
Click to expand it.
lib/tags.php
+
6
−
6
View file @
314ca843
...
...
@@ -96,7 +96,7 @@ class Tags implements \OCP\ITags {
}
if
(
count
(
$defaultTags
)
>
0
&&
count
(
$this
->
tags
)
===
0
)
{
$this
->
addMulti
(
$defaultTags
,
true
);
$this
->
addMulti
ple
(
$defaultTags
,
true
);
}
\OCP\Util
::
writeLog
(
'core'
,
__METHOD__
.
', tags: '
.
print_r
(
$this
->
tags
,
true
),
\OCP\Util
::
DEBUG
);
...
...
@@ -119,7 +119,7 @@ class Tags implements \OCP\ITags {
\OCP\Util
::
writeLog
(
'core'
,
__METHOD__
.
', DB error: '
.
\OCP\DB
::
getErrorMessage
(
$result
),
\OCP\Util
::
ERROR
);
return
false
;
}
return
(
$result
->
numRows
()
===
0
);
return
(
(
int
)
$result
->
numRows
()
===
0
);
}
catch
(
\Exception
$e
)
{
\OCP\Util
::
writeLog
(
'core'
,
__METHOD__
.
', exception: '
.
$e
->
getMessage
(),
\OCP\Util
::
ERROR
);
...
...
@@ -138,7 +138,7 @@ class Tags implements \OCP\ITags {
*
* @return array
*/
public
function
t
ags
()
{
public
function
getT
ags
()
{
if
(
!
count
(
$this
->
tags
))
{
return
array
();
}
...
...
@@ -167,7 +167,7 @@ class Tags implements \OCP\ITags {
* @param string|integer $tag Tag id or name.
* @return array An array of object ids or false on error.
*/
public
function
i
dsForTag
(
$tag
)
{
public
function
getI
dsForTag
(
$tag
)
{
$result
=
null
;
if
(
is_numeric
(
$tag
))
{
$tagId
=
$tag
;
...
...
@@ -293,7 +293,7 @@ class Tags implements \OCP\ITags {
* @param int|null $id int Optional object id to add to this|these tag(s)
* @return bool Returns false on error.
*/
public
function
addMulti
(
$names
,
$sync
=
false
,
$id
=
null
)
{
public
function
addMulti
ple
(
$names
,
$sync
=
false
,
$id
=
null
)
{
if
(
!
is_array
(
$names
))
{
$names
=
array
(
$names
);
}
...
...
@@ -456,7 +456,7 @@ class Tags implements \OCP\ITags {
*/
public
function
getFavorites
()
{
try
{
return
$this
->
i
dsForTag
(
self
::
TAG_FAVORITE
);
return
$this
->
getI
dsForTag
(
self
::
TAG_FAVORITE
);
}
catch
(
\Exception
$e
)
{
\OCP\Util
::
writeLog
(
'core'
,
__METHOD__
.
', exception: '
.
$e
->
getMessage
(),
\OCP\Util
::
ERROR
);
...
...
This diff is collapsed.
Click to expand it.
tests/lib/tags.php
+
48
−
11
View file @
314ca843
...
...
@@ -48,7 +48,7 @@ class Test_Tags extends PHPUnit_Framework_TestCase {
$tagMgr
=
new
OC\Tags
(
$this
->
user
);
$tagMgr
->
loadTagsFor
(
$this
->
objectType
,
$defaultTags
);
$this
->
assertEquals
(
4
,
count
(
$tagMgr
->
t
ags
()));
$this
->
assertEquals
(
4
,
count
(
$tagMgr
->
getT
ags
()));
}
public
function
testAddTags
()
{
...
...
@@ -65,7 +65,37 @@ class Test_Tags extends PHPUnit_Framework_TestCase {
$this
->
assertFalse
(
$tagMgr
->
add
(
'Family'
));
$this
->
assertFalse
(
$tagMgr
->
add
(
'fAMILY'
));
$this
->
assertEquals
(
4
,
count
(
$tagMgr
->
tags
()));
$this
->
assertEquals
(
4
,
count
(
$tagMgr
->
getTags
()));
}
public
function
testAddMultiple
()
{
$tags
=
array
(
'Friends'
,
'Family'
,
'Work'
,
'Other'
);
$tagMgr
=
new
OC\Tags
(
$this
->
user
);
$tagMgr
->
loadTagsFor
(
$this
->
objectType
);
foreach
(
$tags
as
$tag
)
{
$this
->
assertFalse
(
$tagMgr
->
hasTag
(
$tag
));
}
$result
=
$tagMgr
->
addMultiple
(
$tags
);
$this
->
assertTrue
((
bool
)
$result
);
foreach
(
$tags
as
$tag
)
{
$this
->
assertTrue
(
$tagMgr
->
hasTag
(
$tag
));
}
$this
->
assertEquals
(
4
,
count
(
$tagMgr
->
getTags
()));
}
public
function
testIsEmpty
()
{
$tagMgr
=
new
OC\Tags
(
$this
->
user
);
$tagMgr
->
loadTagsFor
(
$this
->
objectType
);
$this
->
assertEquals
(
0
,
count
(
$tagMgr
->
getTags
()));
$this
->
assertTrue
(
$tagMgr
->
isEmpty
());
$tagMgr
->
add
(
'Tag'
);
$this
->
assertFalse
(
$tagMgr
->
isEmpty
());
}
public
function
testdeleteTags
()
{
...
...
@@ -73,13 +103,13 @@ class Test_Tags extends PHPUnit_Framework_TestCase {
$tagMgr
=
new
OC\Tags
(
$this
->
user
);
$tagMgr
->
loadTagsFor
(
$this
->
objectType
,
$defaultTags
);
$this
->
assertEquals
(
4
,
count
(
$tagMgr
->
t
ags
()));
$this
->
assertEquals
(
4
,
count
(
$tagMgr
->
getT
ags
()));
$tagMgr
->
delete
(
'family'
);
$this
->
assertEquals
(
3
,
count
(
$tagMgr
->
t
ags
()));
$this
->
assertEquals
(
3
,
count
(
$tagMgr
->
getT
ags
()));
$tagMgr
->
delete
(
array
(
'Friends'
,
'Work'
,
'Other'
));
$this
->
assertEquals
(
0
,
count
(
$tagMgr
->
t
ags
()));
$this
->
assertEquals
(
0
,
count
(
$tagMgr
->
getT
ags
()));
}
...
...
@@ -105,8 +135,8 @@ class Test_Tags extends PHPUnit_Framework_TestCase {
$tagMgr
->
tagAs
(
$id
,
'Family'
);
}
$this
->
assertEquals
(
1
,
count
(
$tagMgr
->
t
ags
()));
$this
->
assertEquals
(
9
,
count
(
$tagMgr
->
i
dsForTag
(
'Family'
)));
$this
->
assertEquals
(
1
,
count
(
$tagMgr
->
getT
ags
()));
$this
->
assertEquals
(
9
,
count
(
$tagMgr
->
getI
dsForTag
(
'Family'
)));
}
/**
...
...
@@ -121,13 +151,20 @@ class Test_Tags extends PHPUnit_Framework_TestCase {
$tagMgr
->
loadTagsFor
(
$this
->
objectType
);
foreach
(
$objIds
as
$id
)
{
$this
->
assertTrue
(
in_array
(
$id
,
$tagMgr
->
i
dsForTag
(
'Family'
)));
$this
->
assertTrue
(
in_array
(
$id
,
$tagMgr
->
getI
dsForTag
(
'Family'
)));
$tagMgr
->
unTag
(
$id
,
'Family'
);
$this
->
assertFalse
(
in_array
(
$id
,
$tagMgr
->
i
dsForTag
(
'Family'
)));
$this
->
assertFalse
(
in_array
(
$id
,
$tagMgr
->
getI
dsForTag
(
'Family'
)));
}
$this
->
assertEquals
(
1
,
count
(
$tagMgr
->
tags
()));
$this
->
assertEquals
(
0
,
count
(
$tagMgr
->
idsForTag
(
'Family'
)));
$this
->
assertEquals
(
1
,
count
(
$tagMgr
->
getTags
()));
$this
->
assertEquals
(
0
,
count
(
$tagMgr
->
getIdsForTag
(
'Family'
)));
}
public
function
testFavorite
()
{
$tagMgr
=
new
OC\Tags
(
$this
->
user
);
$tagMgr
->
loadTagsFor
(
$this
->
objectType
);
$this
->
assertTrue
(
$tagMgr
->
addToFavorites
(
1
));
$this
->
assertTrue
(
$tagMgr
->
removeFromFavorites
(
1
));
}
}
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