示例#1
0
def test_repr():
    v = Dictionary()
    assert repr(v) == "<Dictionary({})>"
    v = Dictionary({"a": 1, 2: "foo", 0.5: Vector2()})
    assert repr(v).startswith("<Dictionary({")
    for item in ["'a': 1", "2: 'foo'", "0.5: <Vector2(x=0.0, y=0.0)>"]:
        assert item in repr(v)
示例#2
0
def test_equal():
    arr = Dictionary()
    other = Dictionary()
    for key, value in [("a", 1), ("b", "foo"), ("c", OS), ("d", Vector2())]:
        other[key] = arr[key] = value
    assert arr == other
    bad = Dictionary({"a": 1})
    assert not arr == bad  # Force use of __eq__
示例#3
0
def test_hash():
    v = Dictionary({"a": 1, 2: "foo"})
    h1 = v.hash()
    h2 = v.hash()
    assert h1 == h2
    v["b"] = 42
    h3 = v.hash()
    assert h3 != h2
示例#4
0
def test_duplicate(deep):
    inner = Dictionary({0: 0})
    d1 = Dictionary({0: inner})
    d2 = d1.duplicate(deep)
    d1[0][1] = 1
    d2[0][2] = 2

    if deep:
        assert d1 == Dictionary({0: Dictionary({0: 0, 1: 1})})
        assert d2 == Dictionary({0: Dictionary({0: 0, 2: 2})})
    else:
        assert d1 == Dictionary({0: Dictionary({0: 0, 1: 1, 2: 2})})
        assert d2 == d1
示例#5
0
def test_getitem():
    v = Dictionary({"a": 1, 2: "foo", 0.5: Vector2()})
    assert v["a"] == 1
    assert v[0.5] == Vector2()
    # Missing items are stored as None
    assert v["dummy"] is None
    # Cannot store non Godot types
    with pytest.raises(TypeError):
        v[object()]
示例#6
0
def test_update():
    v = Dictionary({"a": 1, "b": 2, "c": 3})
    v.update({"a": "one", "d": "four"})
    v.update(Dictionary({"b": "two", "e": "five"}))
    assert list(v.keys()) == [
        GDString("a"),
        GDString("b"),
        GDString("c"),
        GDString("d"),
        GDString("e"),
    ]
    assert list(v.values()) == [
        GDString("one"),
        GDString("two"),
        3,
        GDString("four"),
        GDString("five"),
    ]
示例#7
0
def test_setitem():
    v = Dictionary({"a": 1, 2: "foo", 0.5: Vector2()})
    v[0] = GDString("bar")
    assert len(v) == 4
    assert v[0] == GDString("bar")
    v["a"] = 4
    assert len(v) == 4
    assert v["a"] == 4
    # Cannot store non Godot types
    with pytest.raises(TypeError):
        v[object()] = 4
    with pytest.raises(TypeError):
        v[4] = object()
示例#8
0
def test_delitem():
    v = Dictionary({"a": 1, 2: "foo", 0.5: Vector2()})
    del v["a"]
    assert len(v) == 2
    del v[0.5]
    assert len(v) == 1
    v[2] == GDString("foo")
    # Delete on missing items should raise error
    with pytest.raises(KeyError):
        del v["missing"]
    # Cannot store non Godot types
    with pytest.raises(TypeError):
        del v[object()]
示例#9
0
def test_base():
    v = Dictionary()
    assert type(v) == Dictionary
示例#10
0
def test_bad_instantiate(arg):
    with pytest.raises((TypeError, ValueError)):
        Dictionary(arg)
示例#11
0
def test_iter():
    v = Dictionary({"a": 1, 2: "foo", 0.5: Vector2()})
    items = [GDString("a"), 2, 0.5]
    items_from_v = [x for x in v]
    assert items_from_v == items
示例#12
0
def test_bad_equal(arg):
    arr = Dictionary({"a": 1})
    assert arr != arg
示例#13
0
def test_keys():
    v = Dictionary({"a": 1, 2: "foo", 0.5: Vector2()})
    keys = v.keys()
    assert list(keys) == [GDString("a"), 2, 0.5]
示例#14
0
def test_bad_update(arg):
    v = Dictionary()
    with pytest.raises(TypeError):
        v.update(arg)
示例#15
0
def test_update():
    v1 = Dictionary({"a": 1, "b": 2})
    v2 = Dictionary({"b": 3, "c": 4})
    v1.update(v2)
    assert v1 == Dictionary({"a": 1, "b": 3, "c": 4})
    assert v2 == Dictionary({"b": 3, "c": 4})

    v2.update({"d": 5, "e": 6})
    assert v1 == Dictionary({"a": 1, "b": 3, "c": 4})
    assert v2 == Dictionary({"b": 3, "c": 4, "d": 5, "e": 6})
示例#16
0
def test_values():
    v = Dictionary({"a": 1, 2: "foo"})
    values = v.values()
    assert list(values) == [1, GDString("foo")]
示例#17
0
def test_instantiate_from_copy(arg):
    arr = Dictionary(arg)
    if hasattr(arg, "_gd_ptr"):
        assert arr._gd_ptr != arg._gd_ptr
示例#18
0
def test_in():
    v = Dictionary({"a": 1, 2: "foo"})
    assert "a" in v
    assert 2 in v
    assert "dummy" not in v
示例#19
0
def test_empty_and_clear():
    v = Dictionary({"a": 1, 2: "foo"})
    assert not v.empty()
    v.clear()
    assert len(v) == 0
    assert v.empty()
示例#20
0
def test_items():
    v = Dictionary({"a": 1, 2: "foo"})
    items = v.items()
    assert list(items) == [(GDString("a"), 1), (2, GDString("foo"))]
示例#21
0
def test_len():
    v = Dictionary()
    assert len(v) == 0
    v["foo"] = "bar"
    assert len(v) == 1
示例#22
0
def test_has_all():
    v = Dictionary({"a": 1, 2: "foo", None: None})
    elems = Array(["a", None])
    assert v.has_all(elems)
    bad_elems = Array(["a", 42])
    assert not v.has_all(bad_elems)
示例#23
0
def test_to_json():
    v = Dictionary({"a": 1, "b": "foo"})
    jsoned = v.to_json()
    v2 = json.loads(str(jsoned))
    assert v2 == {"a": 1, "b": "foo"}
    assert json
示例#24
0
def test_equal():
    arr = Dictionary()
    other = Dictionary()
    for key, value in [("a", 1), ("b", "foo"), ("c", OS), ("d", Vector2())]:
        other[key] = arr[key] = value
    assert arr == other
    bad = Dictionary({"a": 1})
    assert not arr == bad  # Force use of __eq__


@pytest.mark.parametrize(
    "arg",
    [None, 0, "foo", Vector2(), {
        "a": 1
    }, Dictionary({"b": 2})])
def test_bad_equal(arg):
    arr = Dictionary({"a": 1})
    assert arr != arg


def test_repr():
    v = Dictionary()
    assert repr(v) == "<Dictionary({})>"
    v = Dictionary({"a": 1, 2: "foo", 0.5: Vector2()})
    assert repr(v).startswith("<Dictionary({")
    for item in ["'a': 1", "2: 'foo'", "0.5: <Vector2(x=0.0, y=0.0)>"]:
        assert item in repr(v)


@pytest.mark.parametrize(