mirror of
https://gitlab.com/kicad/code/kicad.git
synced 2024-11-24 15:25:06 +00:00
60 lines
1.8 KiB
C
60 lines
1.8 KiB
C
#include "sentry_path.h"
|
|
#include "sentry_testsupport.h"
|
|
|
|
static void
|
|
init_consenting_sentry(void)
|
|
{
|
|
#ifdef __ANDROID__
|
|
# define PREFIX "/data/local/tmp/"
|
|
#else
|
|
# define PREFIX ""
|
|
#endif
|
|
sentry_options_t *opts = sentry_options_new();
|
|
sentry_options_set_database_path(opts, PREFIX ".test-db");
|
|
sentry_options_set_dsn(opts, "http://foo@127.0.0.1/42");
|
|
sentry_options_set_require_user_consent(opts, true);
|
|
sentry_init(opts);
|
|
}
|
|
|
|
SENTRY_TEST(basic_consent_tracking)
|
|
{
|
|
sentry_path_t *path = sentry__path_from_str(PREFIX ".test-db");
|
|
sentry__path_remove_all(path);
|
|
|
|
init_consenting_sentry();
|
|
TEST_CHECK_INT_EQUAL(
|
|
sentry_user_consent_get(), SENTRY_USER_CONSENT_UNKNOWN);
|
|
sentry_close();
|
|
|
|
init_consenting_sentry();
|
|
sentry_user_consent_give();
|
|
// testing correct options ref/decref during double
|
|
// `sentry_user_consent_give` call see
|
|
// https://github.com/getsentry/sentry-native/pull/922
|
|
sentry_user_consent_give();
|
|
TEST_CHECK_INT_EQUAL(sentry_user_consent_get(), SENTRY_USER_CONSENT_GIVEN);
|
|
sentry_close();
|
|
init_consenting_sentry();
|
|
TEST_CHECK_INT_EQUAL(sentry_user_consent_get(), SENTRY_USER_CONSENT_GIVEN);
|
|
|
|
sentry_user_consent_revoke();
|
|
TEST_CHECK_INT_EQUAL(
|
|
sentry_user_consent_get(), SENTRY_USER_CONSENT_REVOKED);
|
|
sentry_close();
|
|
init_consenting_sentry();
|
|
TEST_CHECK_INT_EQUAL(
|
|
sentry_user_consent_get(), SENTRY_USER_CONSENT_REVOKED);
|
|
|
|
sentry_user_consent_reset();
|
|
TEST_CHECK_INT_EQUAL(
|
|
sentry_user_consent_get(), SENTRY_USER_CONSENT_UNKNOWN);
|
|
sentry_close();
|
|
init_consenting_sentry();
|
|
TEST_CHECK_INT_EQUAL(
|
|
sentry_user_consent_get(), SENTRY_USER_CONSENT_UNKNOWN);
|
|
sentry_close();
|
|
|
|
sentry__path_remove_all(path);
|
|
sentry__path_free(path);
|
|
}
|