def test_wrap(test_root_entry_json, test_entry_json, test_child_entry_json):
    root_entry = RootEntry(**test_root_entry_json)
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    root_entry.wrap(entry)
    assert entry in root_entry.children
Example #2
0
def test_link(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    assert len(entry.children) == 1
    assert len(child.parents) == 1
    assert child in entry.children
    assert entry in child.parents
def test_wrap_should_not_add_additional_children(test_root_entry_json,
                                                 test_entry_json,
                                                 test_child_entry_json):
    root_entry = RootEntry(**test_root_entry_json)
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    root_entry.wrap(entry)
    assert len(root_entry.children) == 1
def test_items_should_not_contains_root_id(test_root_entry_json,
                                           test_entry_json,
                                           test_child_entry_json):
    root_entry = RootEntry(**test_root_entry_json)
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    root_entry.wrap(entry)
    root_items = root_entry.items()
    assert root_entry.id not in root_items
def test_items_should_not_contains_additional_item(test_root_entry_json,
                                                   test_entry_json,
                                                   test_child_entry_json):
    root_entry = RootEntry(**test_root_entry_json)
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    root_entry.wrap(entry)
    root_items = root_entry.items()
    assert len(root_items) == 2
def test_wrap_should_not_add_duplicate_child_ids(test_root_entry_json,
                                                 test_entry_json):
    root_entry = RootEntry(**test_root_entry_json)
    entry = Entry(None, **test_entry_json)
    root_entry.wrap(entry)
    root_entry.wrap(entry)
    assert len(root_entry.child_ids) == 1
Example #7
0
def test_entry_properties(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert entry.root_dir is None
    assert entry.id == test_entry_json['id']
    assert entry.name == test_entry_json['name']
    assert entry.description == test_entry_json['description']
    assert entry.citation_uri == test_entry_json['citation_uri']
    assert entry.positive_examples == test_entry_json['positive_examples']
    assert entry.child_ids == test_entry_json['child_ids']
    assert entry.restrictions == test_entry_json['restrictions']
Example #8
0
def test_items_should_contains_all_entries(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    items = entry.items()
    assert entry.id in items
    assert child.id in items
Example #9
0
def test_contains_with_entry(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    invalid = Entry(None, 'invalid_id', 'Test Child')
    entry.link(child)
    assert child in entry
    assert invalid not in entry
def test_items_should_contains_all_entries(test_root_entry_json,
                                           test_entry_json,
                                           test_child_entry_json):
    root_entry = RootEntry(**test_root_entry_json)
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    root_entry.wrap(entry)
    items = entry.items()
    root_items = root_entry.items()
    assert all(map(lambda item: item in root_items, items))
Example #11
0
def test_initial_parents(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert len(entry.parents) == 0
Example #12
0
def test_identifiers(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert entry.identifiers == (entry.id, entry.name, entry.slug_name)
Example #13
0
def test_proper_name(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert '.' not in entry.proper_name
Example #14
0
def test_slug_name_should_not_contains_leading_or_trailing_dashes(test_entry2_json):
    entry = Entry(None, **test_entry2_json)
    assert not (entry.slug_name.startswith('-') or entry.slug_name.endswith('-'))
Example #15
0
def test_link_with_intruder_child(test_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, 'invalid_id', 'Test Child')
    with pytest.raises(ValueError):
        entry.link(child)
Example #16
0
def test_string_representation_should_contains_id(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert entry.id in str(entry)
Example #17
0
def test_equality_against_str(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert entry == '/m/0dgw9r'
    assert entry == 'Human sounds'
    assert entry == 'human-sounds'
Example #18
0
def test_getitem(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    assert entry[child.id] == child
Example #19
0
def test_paths(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    assert os.path.join(entry.proper_name, child.proper_name) in child.paths
Example #20
0
def test_contains_with_invalid_type(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert 1 not in entry
Example #21
0
def test_contains_with_str(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    assert child.id in entry
    assert 'invalid_id' not in entry
Example #22
0
def test_link_already_linked_child(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    with pytest.raises(ValueError):
        entry.link(child)
Example #23
0
def test_initial_children(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert len(entry.children) == 0
Example #24
0
def test_getitem_with_invalid_type_key(test_entry_json):
    entry = Entry(None, **test_entry_json)
    with pytest.raises(KeyError):
        assert entry[1]
Example #25
0
def test_equality(test_entry_json):
    entry1 = Entry(None, **test_entry_json)
    entry2 = Entry(None, **test_entry_json)
    assert entry1 == entry2
Example #26
0
def test_items_should_not_contains_additional_item(test_entry_json, test_child_entry_json):
    entry = Entry(None, **test_entry_json)
    child = Entry(None, **test_child_entry_json)
    entry.link(child)
    items = entry.items()
    assert len(items) == 2
Example #27
0
def test_equality_with_invalid_type(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert entry != 1
Example #28
0
def test_slug_name(test_entry_json):
    entry = Entry(None, **test_entry_json)
    assert entry.slug_name == 'human-sounds'
Example #29
0
def test_dirs(test_root_dir, test_entry_json, test_child_entry_json):
    entry = Entry(root_dir=test_root_dir, **test_entry_json)
    child = Entry(root_dir=test_root_dir, **test_child_entry_json)
    entry.link(child)
    assert os.path.join(test_root_dir, entry.proper_name, child.proper_name) in child.dirs
Example #30
0
def test_link_with_invalid_type(test_entry_json):
    entry = Entry(None, **test_entry_json)
    with pytest.raises(TypeError):
        entry.link('child')