Beispiel #1
0
 def test_flush_invalid_key(self):
     DataBag._data = {'foo': 42}
     data = DataBag.flush('foo.a', 'invalid')
     assert data == 'invalid'
     assert DataBag._data == {'foo': 42}
Beispiel #2
0
 def test_add_item(self):
     DataBag.add('foo.bar.baz', 42)
     assert 'foo' in DataBag._data
     assert 'bar' in DataBag._data['foo']
     assert 'baz' in DataBag._data['foo']['bar']
     assert DataBag._data['foo']['bar']['baz'] is 42
Beispiel #3
0
 def test_flush_all(self):
     DataBag._data = {'foo': {'a': 1, 'b': 2}}
     data = DataBag.flush()
     assert data == {'foo': {'a': 1, 'b': 2}}
     assert DataBag._data == {}
Beispiel #4
0
 def test_flush_key(self):
     DataBag._data = {'foo': {'a': 1, 'b': 2}}
     data = DataBag.flush('foo.a')
     assert data is 1
     assert DataBag._data == {'foo': {'b': 2}}
Beispiel #5
0
 def test_get_all(self):
     DataBag._data = {'foo': {'a': 1, 'b': 2}}
     assert DataBag.all() == {'foo': {'a': 1, 'b': 2}}
Beispiel #6
0
 def test_clear(self):
     DataBag._data = {'foo': {'a': 1, 'b': 2}}
     DataBag.clear()
     assert DataBag._data == {}
Beispiel #7
0
 def test_merge_invalid(self):
     DataBag._data = {'foo': 1}
     DataBag.merge('foo', [2, 3])
     assert DataBag._data['foo'] == 1
Beispiel #8
0
 def test_append_item_to_list(self):
     DataBag.add('foo.bar.baz', [1, 2])
     DataBag.add('foo.bar.baz', 3)  # append
     assert DataBag._data['foo']['bar']['baz'] == [1, 2, 3]
Beispiel #9
0
 def test_merge_dicts(self):
     DataBag._data = {'foo': {'bar': {'a': 1, 'b': 2}}}
     DataBag.merge('foo.bar', {'a': 42, 'c': 3})
     assert DataBag._data['foo']['bar']['a'] is 42
     assert DataBag._data['foo']['bar']['b'] is 2
     assert DataBag._data['foo']['bar']['c'] is 3
Beispiel #10
0
 def test_merge_lists(self):
     DataBag._data = {'foo': {'bar': ['a', 'b', 'c']}}
     DataBag.merge('foo.bar', ['a', 'd', 'e'])
     assert DataBag._data['foo']['bar'] == ['a', 'b', 'c', 'a', 'd', 'e']
Beispiel #11
0
 def test_get_invalid_item_default(self):
     assert DataBag.get('foo.bar.baz', 'default') == 'default'
Beispiel #12
0
 def test_get_invalid_item(self):
     assert DataBag.get('foo.bar.baz') is None
Beispiel #13
0
 def test_get_item(self):
     DataBag._data = {'foo': {'bar': {'baz': 42}}}
     assert DataBag.get('foo.bar.baz') is 42
Beispiel #14
0
 def test_delete_key(self):
     DataBag._data = {'foo': {'a': 42, 'b': 2}}
     assert DataBag.delete('foo.a') is 1
     assert DataBag._data == {'foo': {'b': 2}}
Beispiel #15
0
 def test_merge_empty(self):
     DataBag._data = {'foo': 1}
     DataBag.merge('bar', [2, 3])
     assert DataBag._data == {'foo': 1}
Beispiel #16
0
 def test_delete_invalid_key(self, capsys):
     DataBag._data = {'foo': {'a': {}}}
     assert DataBag.delete('foo.a.baz') is -1
Beispiel #17
0
 def test_append_item(self):
     DataBag.add('foo.bar.baz', 42)
     DataBag.add('foo.bar.baz', True)  # append
     assert DataBag._data['foo']['bar']['baz'] == [42, True]