Tue, 27 Sep 2022 02:44:13 -0500
Create PurplePerson.
This automatically manages the sorting of contacts and will report the highest
ranked one as the priority contact.
Testing Done:
Ran the unit tests
Bugs closed: PIDGIN-17668
Reviewed at https://reviews.imfreedom.org/r/1838/
PROGS = [ 'account_option', 'account_manager', 'authorization_request', 'circular_buffer', 'contact', 'credential_provider', 'history_adapter', 'history_manager', 'image', 'keyvaluepair', 'markup', 'menu', 'notification', 'notification_manager', 'person', 'protocol_action', 'protocol_xfer', 'purplepath', 'queued_output_stream', 'tags', 'util', 'whiteboard_manager', 'xmlnode', ] test_ui = static_library( 'test-ui', 'test_ui.c', 'test_ui.h', c_args: [ '-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir()), '-DG_LOG_USE_STRUCTURED', '-DG_LOG_DOMAIN="Purple-TestUI"', ], dependencies: [libpurple_dep, glib] ) testenv.set('XDG_CONFIG_HOME', meson.current_build_dir() / 'config') foreach prog : PROGS e = executable('test_' + prog, 'test_@0@.c'.format(prog), c_args : [ '-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir()) ], dependencies : [libpurple_dep, glib], link_with: test_ui, ) test(prog, e, env: testenv, ) endforeach e = executable('test_credential_manager', 'test_credential_manager.c', c_args : [ '-DTEST_DATA_DIR="@0@/data"'.format(meson.current_source_dir()) ], dependencies : [libpurple_dep, glib], link_with: test_ui, ) test('credential_manager', e, env: testenv, is_parallel : false)