Skip to content
Snippets Groups Projects
Commit 5de19cfd authored by Swen Vermeul's avatar Swen Vermeul
Browse files

more tag tests

parent ffde6b1e
No related branches found
No related tags found
No related merge requests found
...@@ -2,3 +2,4 @@ ...@@ -2,3 +2,4 @@
.*.sw? .*.sw?
.ipynb_checkpoints/ .ipynb_checkpoints/
*.ipynb *.ipynb
dist/*
...@@ -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'
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment