from __future__ import print_function import pytest from deltachat import capi, Account def test_empty_context(): ctx = capi.lib.dc_context_new(capi.ffi.NULL, capi.ffi.NULL, capi.ffi.NULL) capi.lib.dc_close(ctx) def test_wrong_db(tmpdir): tmpdir.join("hello.db").write("123") with pytest.raises(ValueError): Account(db_path=tmpdir.strpath) def test_event_defines(): assert capi.lib.DC_EVENT_INFO == 100 assert capi.lib.DC_CONTACT_ID_SELF def test_sig(): sig = capi.lib.dc_get_event_signature_types assert sig(capi.lib.DC_EVENT_INFO) == 2 assert sig(capi.lib.DC_EVENT_WARNING) == 2 assert sig(capi.lib.DC_EVENT_ERROR) == 2 assert sig(capi.lib.DC_EVENT_SMTP_CONNECTED) == 2 assert sig(capi.lib.DC_EVENT_IMAP_CONNECTED) == 2 assert sig(capi.lib.DC_EVENT_SMTP_MESSAGE_SENT) == 2