unofficial mirror of notmuch@notmuchmail.org
 help / color / mirror / code / Atom feed
blob c62aeb98da33ff0217252d20a5fd52f12159bb98 2078 bytes (raw)
name: bindings/python-cffi/tests/test_config.py 	 # note: path name is non-authoritative(*)

 1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
 
import collections.abc

import pytest

import notmuch2._database as dbmod

import notmuch2._config as config


class TestIter:

    @pytest.fixture
    def db(self, maildir):
        with dbmod.Database.create(maildir.path) as db:
            yield db

    def test_type(self, db):
        assert isinstance(db.config, collections.abc.MutableMapping)
        assert isinstance(db.config, config.ConfigMapping)

    def test_alive(self, db):
        assert db.config.alive

    def test_set_get(self, maildir):
        # Ensure get-set works from different db objects
        with dbmod.Database.create(maildir.path, config=dbmod.Database.CONFIG.EMPTY) as db0:
            db0.config['spam'] = 'ham'
        with dbmod.Database(maildir.path, config=dbmod.Database.CONFIG.EMPTY) as db1:
            assert db1.config['spam'] == 'ham'

    def test_get_keyerror(self, db):
        with pytest.raises(KeyError):
            val = db.config['not-a-key']
            print(repr(val))

    def test_iter(self, db):
        import re
        prefix = re.compile(r"^TEST[.]")
        assert [ x for x in list(db.config) if prefix.match(x) ] == []
        db.config['TEST.spam'] = 'TEST.ham'
        db.config['TEST.eggs'] = 'TEST.bacon'
        assert { x for x in set(db.config) if prefix.match(x) } == {'TEST.spam', 'TEST.eggs'}
        assert { x for x in set(db.config.keys()) if prefix.match (x) } == {'TEST.spam', 'TEST.eggs'}
        assert { x for x in set(db.config.values()) if prefix.match (x) } == {'TEST.ham', 'TEST.bacon'}
        assert { (x, y) for (x,y) in set(db.config.items()) if prefix.match(x) } == {('TEST.spam', 'TEST.ham'), ('TEST.eggs', 'TEST.bacon')}

    def test_len(self, db):
        defaults = len(db.config)
        db.config['spam'] = 'ham'
        assert len(db.config) == defaults + 1
        db.config['eggs'] = 'bacon'
        assert len(db.config) == defaults + 2

    def test_del(self, db):
        db.config['spam'] = 'ham'
        assert db.config.get('spam') == 'ham'
        del db.config['spam']
        assert db.config.get('spam') is None

debug log:

solving c62aeb98 ...
found c62aeb98 in https://yhetil.org/notmuch/20220211130412.1416990-3-david@tethera.net/
found 67b0dea4 in https://yhetil.org/notmuch.git/
preparing index
index prepared:
100644 67b0dea44ea99837f91a738b5236661dc7c9f7e3	bindings/python-cffi/tests/test_config.py

applying [1/1] https://yhetil.org/notmuch/20220211130412.1416990-3-david@tethera.net/
diff --git a/bindings/python-cffi/tests/test_config.py b/bindings/python-cffi/tests/test_config.py
index 67b0dea4..c62aeb98 100644

Checking patch bindings/python-cffi/tests/test_config.py...
Applied patch bindings/python-cffi/tests/test_config.py cleanly.

index at:
100644 c62aeb98da33ff0217252d20a5fd52f12159bb98	bindings/python-cffi/tests/test_config.py

(*) Git path names are given by the tree(s) the blob belongs to.
    Blobs themselves have no identifier aside from the hash of its contents.^

Code repositories for project(s) associated with this public inbox

	https://yhetil.org/notmuch.git/

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for read-only IMAP folder(s) and NNTP newsgroup(s).