Newer
Older
import json
import random
import re
import pytest
import time
from pybis import DataSet
from pybis import Openbis
Swen Vermeul
committed
def test_create_delete_experiment(space):
o=space.openbis
timestamp = time.strftime('%a_%y%m%d_%H%M%S').upper()
new_code='test_experiment_'+timestamp
with pytest.raises(TypeError):
# experiments must be assigned to a project
e_new = o.new_experiment(
code=new_code,
type='UNKNOWN',
project = o.get_projects()[0]
project=project,
type='UNKNOWN',
assert e_new.permId == ''
e_exists = o.get_experiment(e_new.permId)
assert e_exists is not None
e_new.delete('delete test experiment '+new_code.upper())
with pytest.raises(ValueError):
e_no_longer_exists = o.get_experiment(e_exists.permId)
def test_get_experiments(space):
# test paging
o=space.openbis
current_datasets = o.get_experiments(start_with=1, count=1)
assert current_datasets is not None
# we cannot assert == 1, because search is delayed due to lucene search...
assert len(current_datasets) <= 1