blob: 3872776cb1ddac0a33ee8df3a7b2ec902b061bd8 [file] [log] [blame]
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08001/*
2 *
Craig Tiller06059952015-02-18 08:34:56 -08003 * Copyright 2015, Google Inc.
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -08004 * All rights reserved.
5 *
6 * Redistribution and use in source and binary forms, with or without
7 * modification, are permitted provided that the following conditions are
8 * met:
9 *
10 * * Redistributions of source code must retain the above copyright
11 * notice, this list of conditions and the following disclaimer.
12 * * Redistributions in binary form must reproduce the above
13 * copyright notice, this list of conditions and the following disclaimer
14 * in the documentation and/or other materials provided with the
15 * distribution.
16 * * Neither the name of Google Inc. nor the names of its
17 * contributors may be used to endorse or promote products derived from
18 * this software without specific prior written permission.
19 *
20 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
21 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
22 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
23 * A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE COPYRIGHT
24 * OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL,
25 * SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT
26 * LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
27 * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
28 * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
29 * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE
30 * OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
31 *
32 */
33
Nicolas "Pixel" Noble1ff52d52015-03-01 05:24:36 +010034#ifndef GRPC_TEST_CORE_UTIL_TEST_CONFIG_H
35#define GRPC_TEST_CORE_UTIL_TEST_CONFIG_H
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080036
Craig Tiller8ad8a412015-02-25 08:36:40 -080037#include <grpc/support/time.h>
38
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080039#ifdef __cplusplus
40extern "C" {
41#endif /* __cplusplus */
42
Craig Tillerf6901be2015-02-27 09:12:58 -080043#ifndef GRPC_TEST_SLOWDOWN_BUILD_FACTOR
44#define GRPC_TEST_SLOWDOWN_BUILD_FACTOR 1.0
Craig Tiller8ad8a412015-02-25 08:36:40 -080045#endif
46
Craig Tillerf6901be2015-02-27 09:12:58 -080047#ifndef GRPC_TEST_SLOWDOWN_MACHINE_FACTOR
48#define GRPC_TEST_SLOWDOWN_MACHINE_FACTOR 1.0
49#endif
50
Craig Tiller7b9ed352015-08-04 08:55:12 -070051extern double g_fixture_slowdown_factor;
52
53#define GRPC_TEST_SLOWDOWN_FACTOR \
54 (GRPC_TEST_SLOWDOWN_BUILD_FACTOR * GRPC_TEST_SLOWDOWN_MACHINE_FACTOR * \
55 g_fixture_slowdown_factor)
Craig Tillerf6901be2015-02-27 09:12:58 -080056
Craig Tiller6a6b36c2015-09-10 16:00:22 -070057#define GRPC_TIMEOUT_SECONDS_TO_DEADLINE(x) \
58 gpr_time_add( \
59 gpr_now(GPR_CLOCK_MONOTONIC), \
murgatroid99309830f2016-02-05 11:30:00 -080060 gpr_time_from_millis((int64_t)(GRPC_TEST_SLOWDOWN_FACTOR * 1e3 * (x)), \
Craig Tiller6a6b36c2015-09-10 16:00:22 -070061 GPR_TIMESPAN))
Craig Tiller8ad8a412015-02-25 08:36:40 -080062
Craig Tiller6a6b36c2015-09-10 16:00:22 -070063#define GRPC_TIMEOUT_MILLIS_TO_DEADLINE(x) \
64 gpr_time_add( \
65 gpr_now(GPR_CLOCK_MONOTONIC), \
murgatroid99309830f2016-02-05 11:30:00 -080066 gpr_time_from_micros((int64_t)(GRPC_TEST_SLOWDOWN_FACTOR * 1e3 * (x)), \
Craig Tiller6a6b36c2015-09-10 16:00:22 -070067 GPR_TIMESPAN))
Craig Tiller8ad8a412015-02-25 08:36:40 -080068
Yang Gao5a5032d2015-04-01 13:54:44 -070069#ifndef GRPC_TEST_CUSTOM_PICK_PORT
70#define GRPC_TEST_PICK_PORT
71#endif
72
Nicolas Nobleb7ebd3b2014-11-26 16:33:03 -080073void grpc_test_init(int argc, char **argv);
74
75#ifdef __cplusplus
76}
77#endif /* __cplusplus */
78
Craig Tillerf1bff012015-07-06 11:20:50 -070079#endif /* GRPC_TEST_CORE_UTIL_TEST_CONFIG_H */