Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
O
openbis
Manage
Activity
Members
Labels
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Model registry
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
sispub
openbis
Commits
5de19cfd
Commit
5de19cfd
authored
6 years ago
by
Swen Vermeul
Browse files
Options
Downloads
Patches
Plain Diff
more tag tests
parent
ffde6b1e
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
pybis/src/python/.gitignore
+1
-0
1 addition, 0 deletions
pybis/src/python/.gitignore
pybis/src/python/tests/test_tag.py
+23
-0
23 additions, 0 deletions
pybis/src/python/tests/test_tag.py
with
24 additions
and
0 deletions
pybis/src/python/.gitignore
+
1
−
0
View file @
5de19cfd
...
@@ -2,3 +2,4 @@
...
@@ -2,3 +2,4 @@
.*.sw?
.*.sw?
.ipynb_checkpoints/
.ipynb_checkpoints/
*.ipynb
*.ipynb
dist/*
This diff is collapsed.
Click to expand it.
pybis/src/python/tests/test_tag.py
+
23
−
0
View file @
5de19cfd
...
@@ -25,6 +25,10 @@ def test_crud_tag(openbis_instance):
...
@@ -25,6 +25,10 @@ def test_crud_tag(openbis_instance):
tag_exists
=
openbis_instance
.
get_tag
(
tag
.
permId
)
tag_exists
=
openbis_instance
.
get_tag
(
tag
.
permId
)
assert
tag_exists
is
not
None
assert
tag_exists
is
not
None
tag_by_code
=
openbis_instance
.
get_tag
(
tag
.
code
)
assert
tag_by_code
is
not
None
assert
tag_by_code
.
permId
==
tag_exists
.
permId
altered_description
=
'
altered description of tag
'
+
tag_name
altered_description
=
'
altered description of tag
'
+
tag_name
tag
.
description
=
altered_description
tag
.
description
=
altered_description
...
@@ -37,3 +41,22 @@ def test_crud_tag(openbis_instance):
...
@@ -37,3 +41,22 @@ def test_crud_tag(openbis_instance):
tag_does_not_exists
=
openbis_instance
.
get_tag
(
tag
.
permId
)
tag_does_not_exists
=
openbis_instance
.
get_tag
(
tag
.
permId
)
assert
"
deleted tag should no longer be present
"
is
None
assert
"
deleted tag should no longer be present
"
is
None
def
test_get_tags
(
openbis_instance
):
tags
=
openbis_instance
.
get_tags
()
assert
tags
is
not
None
assert
tags
.
__class__
.
__name__
==
'
Things
'
assert
tags
.
df
.
__class__
.
__name__
==
'
DataFrame
'
if
len
(
tags
)
>
0
:
assert
tags
[
0
].
__class__
.
__name__
==
'
Tag
'
if
len
(
tags
)
>
1
:
tag1
=
tags
[
0
]
tag2
=
tags
[
1
]
tag_coll
=
openbis_instance
.
get_tag
([
tag1
.
permId
,
tag2
.
permId
])
assert
len
(
tag_coll
)
==
2
assert
tag_coll
.
__class__
.
__name__
==
'
Things
'
assert
tag_coll
.
df
.
__class__
.
__name__
==
'
DataFrame
'
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