mirror of
https://github.com/isc-projects/bind9.git
synced 2026-03-01 21:10:55 -05:00
when more than one event was scheduled in the isc_aysnc queue, they were executed in reverse order. we need to pull events off the back of queue instead the front, so that uv_loop will run them in the right order. note that isc_job_run() has the same behavior, because it calls uv_idle_start() directly. in that case we just document it so it'll be less surprising in the future.
114 lines
2.5 KiB
C
114 lines
2.5 KiB
C
/*
|
|
* Copyright (C) Internet Systems Consortium, Inc. ("ISC")
|
|
*
|
|
* SPDX-License-Identifier: MPL-2.0
|
|
*
|
|
* This Source Code Form is subject to the terms of the Mozilla Public
|
|
* License, v. 2.0. If a copy of the MPL was not distributed with this
|
|
* file, you can obtain one at https://mozilla.org/MPL/2.0/.
|
|
*
|
|
* See the COPYRIGHT file distributed with this work for additional
|
|
* information regarding copyright ownership.
|
|
*/
|
|
|
|
#include <sched.h> /* IWYU pragma: keep */
|
|
#include <setjmp.h>
|
|
#include <stdarg.h>
|
|
#include <stddef.h>
|
|
#include <stdlib.h>
|
|
#include <string.h>
|
|
#include <sys/types.h>
|
|
#include <unistd.h>
|
|
|
|
#define UNIT_TESTING
|
|
#include <cmocka.h>
|
|
|
|
#include <isc/atomic.h>
|
|
#include <isc/job.h>
|
|
#include <isc/loop.h>
|
|
#include <isc/os.h>
|
|
#include <isc/result.h>
|
|
#include <isc/util.h>
|
|
|
|
#include "job.c"
|
|
|
|
#include <tests/isc.h>
|
|
|
|
static atomic_uint scheduled;
|
|
static atomic_uint executed;
|
|
|
|
#define MAX_EXECUTED 1000000
|
|
|
|
static void
|
|
shutdown_cb(void *arg) {
|
|
UNUSED(arg);
|
|
|
|
isc_loopmgr_shutdown(loopmgr);
|
|
}
|
|
|
|
static void
|
|
job_cb(void *arg __attribute__((__unused__))) {
|
|
unsigned int n = atomic_fetch_add(&executed, 1);
|
|
|
|
if (n <= MAX_EXECUTED) {
|
|
atomic_fetch_add(&scheduled, 1);
|
|
isc_job_run(loopmgr, job_cb, loopmgr);
|
|
} else {
|
|
isc_job_run(loopmgr, shutdown_cb, loopmgr);
|
|
}
|
|
}
|
|
|
|
static void
|
|
job_run_cb(void *arg __attribute__((__unused__))) {
|
|
atomic_fetch_add(&scheduled, 1);
|
|
|
|
isc_job_run(loopmgr, job_cb, loopmgr);
|
|
}
|
|
|
|
ISC_RUN_TEST_IMPL(isc_job_run) {
|
|
atomic_init(&scheduled, 0);
|
|
atomic_init(&executed, 0);
|
|
|
|
isc_loopmgr_setup(loopmgr, job_run_cb, loopmgr);
|
|
|
|
isc_loopmgr_run(loopmgr);
|
|
|
|
assert_int_equal(atomic_load(&scheduled), atomic_load(&executed));
|
|
}
|
|
|
|
static char string[32] = "";
|
|
int n1 = 1, n2 = 2, n3 = 3, n4 = 4, n5 = 5;
|
|
|
|
static void
|
|
append(void *arg) {
|
|
char value[32];
|
|
sprintf(value, "%d", *(int *)arg);
|
|
strlcat(string, value, 10);
|
|
}
|
|
|
|
static void
|
|
job_multiple(void *arg) {
|
|
UNUSED(arg);
|
|
|
|
/* These will be processed in reverse order */
|
|
isc_job_run(loopmgr, append, &n1);
|
|
isc_job_run(loopmgr, append, &n2);
|
|
isc_job_run(loopmgr, append, &n3);
|
|
isc_job_run(loopmgr, append, &n4);
|
|
isc_job_run(loopmgr, append, &n5);
|
|
isc_loopmgr_shutdown(loopmgr);
|
|
}
|
|
|
|
ISC_RUN_TEST_IMPL(isc_job_multiple) {
|
|
string[0] = '\0';
|
|
isc_loop_setup(isc_loop_main(loopmgr), job_multiple, loopmgr);
|
|
isc_loopmgr_run(loopmgr);
|
|
assert_string_equal(string, "54321");
|
|
}
|
|
|
|
ISC_TEST_LIST_START
|
|
ISC_TEST_ENTRY_CUSTOM(isc_job_run, setup_loopmgr, teardown_loopmgr)
|
|
ISC_TEST_ENTRY_CUSTOM(isc_job_multiple, setup_loopmgr, teardown_loopmgr)
|
|
ISC_TEST_LIST_END
|
|
|
|
ISC_TEST_MAIN
|