Linux Audio

Check our new training course

Loading...
v6.2
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/*
   3 * Base unit test (KUnit) API.
   4 *
   5 * Copyright (C) 2019, Google LLC.
   6 * Author: Brendan Higgins <brendanhiggins@google.com>
   7 */
   8
   9#ifndef _KUNIT_TEST_H
  10#define _KUNIT_TEST_H
  11
  12#include <kunit/assert.h>
  13#include <kunit/try-catch.h>
  14
 
  15#include <linux/compiler.h>
  16#include <linux/container_of.h>
  17#include <linux/err.h>
  18#include <linux/init.h>
  19#include <linux/jump_label.h>
  20#include <linux/kconfig.h>
  21#include <linux/kref.h>
  22#include <linux/list.h>
  23#include <linux/module.h>
  24#include <linux/slab.h>
  25#include <linux/spinlock.h>
  26#include <linux/string.h>
  27#include <linux/types.h>
  28
  29#include <asm/rwonce.h>
  30
  31/* Static key: true if any KUnit tests are currently running */
  32DECLARE_STATIC_KEY_FALSE(kunit_running);
  33
  34struct kunit;
  35
  36/* Size of log associated with test. */
  37#define KUNIT_LOG_SIZE	512
  38
  39/* Maximum size of parameter description string. */
  40#define KUNIT_PARAM_DESC_SIZE 128
  41
  42/* Maximum size of a status comment. */
  43#define KUNIT_STATUS_COMMENT_SIZE 256
  44
  45/*
  46 * TAP specifies subtest stream indentation of 4 spaces, 8 spaces for a
  47 * sub-subtest.  See the "Subtests" section in
  48 * https://node-tap.org/tap-protocol/
  49 */
 
  50#define KUNIT_SUBTEST_INDENT		"    "
  51#define KUNIT_SUBSUBTEST_INDENT		"        "
  52
  53/**
  54 * enum kunit_status - Type of result for a test or test suite
  55 * @KUNIT_SUCCESS: Denotes the test suite has not failed nor been skipped
  56 * @KUNIT_FAILURE: Denotes the test has failed.
  57 * @KUNIT_SKIPPED: Denotes the test has been skipped.
  58 */
  59enum kunit_status {
  60	KUNIT_SUCCESS,
  61	KUNIT_FAILURE,
  62	KUNIT_SKIPPED,
  63};
  64
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
  65/**
  66 * struct kunit_case - represents an individual test case.
  67 *
  68 * @run_case: the function representing the actual test case.
  69 * @name:     the name of the test case.
  70 * @generate_params: the generator function for parameterized tests.
 
  71 *
  72 * A test case is a function with the signature,
  73 * ``void (*)(struct kunit *)``
  74 * that makes expectations and assertions (see KUNIT_EXPECT_TRUE() and
  75 * KUNIT_ASSERT_TRUE()) about code under test. Each test case is associated
  76 * with a &struct kunit_suite and will be run after the suite's init
  77 * function and followed by the suite's exit function.
  78 *
  79 * A test case should be static and should only be created with the
  80 * KUNIT_CASE() macro; additionally, every array of test cases should be
  81 * terminated with an empty test case.
  82 *
  83 * Example:
  84 *
  85 * .. code-block:: c
  86 *
  87 *	void add_test_basic(struct kunit *test)
  88 *	{
  89 *		KUNIT_EXPECT_EQ(test, 1, add(1, 0));
  90 *		KUNIT_EXPECT_EQ(test, 2, add(1, 1));
  91 *		KUNIT_EXPECT_EQ(test, 0, add(-1, 1));
  92 *		KUNIT_EXPECT_EQ(test, INT_MAX, add(0, INT_MAX));
  93 *		KUNIT_EXPECT_EQ(test, -1, add(INT_MAX, INT_MIN));
  94 *	}
  95 *
  96 *	static struct kunit_case example_test_cases[] = {
  97 *		KUNIT_CASE(add_test_basic),
  98 *		{}
  99 *	};
 100 *
 101 */
 102struct kunit_case {
 103	void (*run_case)(struct kunit *test);
 104	const char *name;
 105	const void* (*generate_params)(const void *prev, char *desc);
 
 106
 107	/* private: internal use only. */
 108	enum kunit_status status;
 109	char *log;
 
 110};
 111
 112static inline char *kunit_status_to_ok_not_ok(enum kunit_status status)
 113{
 114	switch (status) {
 115	case KUNIT_SKIPPED:
 116	case KUNIT_SUCCESS:
 117		return "ok";
 118	case KUNIT_FAILURE:
 119		return "not ok";
 120	}
 121	return "invalid";
 122}
 123
 124/**
 125 * KUNIT_CASE - A helper for creating a &struct kunit_case
 126 *
 127 * @test_name: a reference to a test case function.
 128 *
 129 * Takes a symbol for a function representing a test case and creates a
 130 * &struct kunit_case object from it. See the documentation for
 131 * &struct kunit_case for an example on how to use it.
 132 */
 133#define KUNIT_CASE(test_name) { .run_case = test_name, .name = #test_name }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 134
 135/**
 136 * KUNIT_CASE_PARAM - A helper for creation a parameterized &struct kunit_case
 137 *
 138 * @test_name: a reference to a test case function.
 139 * @gen_params: a reference to a parameter generator function.
 140 *
 141 * The generator function::
 142 *
 143 *	const void* gen_params(const void *prev, char *desc)
 144 *
 145 * is used to lazily generate a series of arbitrarily typed values that fit into
 146 * a void*. The argument @prev is the previously returned value, which should be
 147 * used to derive the next value; @prev is set to NULL on the initial generator
 148 * call. When no more values are available, the generator must return NULL.
 149 * Optionally write a string into @desc (size of KUNIT_PARAM_DESC_SIZE)
 150 * describing the parameter.
 151 */
 152#define KUNIT_CASE_PARAM(test_name, gen_params)			\
 153		{ .run_case = test_name, .name = #test_name,	\
 154		  .generate_params = gen_params }
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 155
 156/**
 157 * struct kunit_suite - describes a related collection of &struct kunit_case
 158 *
 159 * @name:	the name of the test. Purely informational.
 160 * @suite_init:	called once per test suite before the test cases.
 161 * @suite_exit:	called once per test suite after all test cases.
 162 * @init:	called before every test case.
 163 * @exit:	called after every test case.
 164 * @test_cases:	a null terminated array of test cases.
 
 165 *
 166 * A kunit_suite is a collection of related &struct kunit_case s, such that
 167 * @init is called before every test case and @exit is called after every
 168 * test case, similar to the notion of a *test fixture* or a *test class*
 169 * in other unit testing frameworks like JUnit or Googletest.
 170 *
 
 
 
 171 * Every &struct kunit_case must be associated with a kunit_suite for KUnit
 172 * to run it.
 173 */
 174struct kunit_suite {
 175	const char name[256];
 176	int (*suite_init)(struct kunit_suite *suite);
 177	void (*suite_exit)(struct kunit_suite *suite);
 178	int (*init)(struct kunit *test);
 179	void (*exit)(struct kunit *test);
 180	struct kunit_case *test_cases;
 
 181
 182	/* private: internal use only */
 183	char status_comment[KUNIT_STATUS_COMMENT_SIZE];
 184	struct dentry *debugfs;
 185	char *log;
 186	int suite_init_err;
 
 
 
 
 
 
 
 187};
 188
 189/**
 190 * struct kunit - represents a running instance of a test.
 191 *
 192 * @priv: for user to store arbitrary data. Commonly used to pass data
 193 *	  created in the init function (see &struct kunit_suite).
 194 *
 195 * Used to store information about the current context under which the test
 196 * is running. Most of this data is private and should only be accessed
 197 * indirectly via public functions; the one exception is @priv which can be
 198 * used by the test writer to store arbitrary data.
 199 */
 200struct kunit {
 201	void *priv;
 202
 203	/* private: internal use only. */
 204	const char *name; /* Read only after initialization! */
 205	char *log; /* Points at case log after initialization */
 206	struct kunit_try_catch try_catch;
 207	/* param_value is the current parameter value for a test case. */
 208	const void *param_value;
 209	/* param_index stores the index of the parameter in parameterized tests. */
 210	int param_index;
 211	/*
 212	 * success starts as true, and may only be set to false during a
 213	 * test case; thus, it is safe to update this across multiple
 214	 * threads using WRITE_ONCE; however, as a consequence, it may only
 215	 * be read after the test case finishes once all threads associated
 216	 * with the test case have terminated.
 217	 */
 218	spinlock_t lock; /* Guards all mutable test state. */
 219	enum kunit_status status; /* Read only after test_case finishes! */
 220	/*
 221	 * Because resources is a list that may be updated multiple times (with
 222	 * new resources) from any thread associated with a test case, we must
 223	 * protect it with some type of lock.
 224	 */
 225	struct list_head resources; /* Protected by lock. */
 226
 227	char status_comment[KUNIT_STATUS_COMMENT_SIZE];
 228};
 229
 230static inline void kunit_set_failure(struct kunit *test)
 231{
 232	WRITE_ONCE(test->status, KUNIT_FAILURE);
 233}
 234
 235bool kunit_enabled(void);
 
 
 
 
 236
 237void kunit_init_test(struct kunit *test, const char *name, char *log);
 238
 239int kunit_run_tests(struct kunit_suite *suite);
 240
 241size_t kunit_suite_num_test_cases(struct kunit_suite *suite);
 242
 243unsigned int kunit_test_case_num(struct kunit_suite *suite,
 244				 struct kunit_case *test_case);
 245
 
 
 
 
 
 
 
 
 246int __kunit_test_suites_init(struct kunit_suite * const * const suites, int num_suites);
 247
 248void __kunit_test_suites_exit(struct kunit_suite **suites, int num_suites);
 249
 
 
 
 
 
 
 250#if IS_BUILTIN(CONFIG_KUNIT)
 251int kunit_run_all_tests(void);
 252#else
 253static inline int kunit_run_all_tests(void)
 254{
 255	return 0;
 256}
 257#endif /* IS_BUILTIN(CONFIG_KUNIT) */
 258
 259#define __kunit_test_suites(unique_array, ...)				       \
 260	static struct kunit_suite *unique_array[]			       \
 261	__aligned(sizeof(struct kunit_suite *))				       \
 262	__used __section(".kunit_test_suites") = { __VA_ARGS__ }
 263
 264/**
 265 * kunit_test_suites() - used to register one or more &struct kunit_suite
 266 *			 with KUnit.
 267 *
 268 * @__suites: a statically allocated list of &struct kunit_suite.
 269 *
 270 * Registers @suites with the test framework.
 271 * This is done by placing the array of struct kunit_suite * in the
 272 * .kunit_test_suites ELF section.
 273 *
 274 * When builtin, KUnit tests are all run via the executor at boot, and when
 275 * built as a module, they run on module load.
 276 *
 277 */
 278#define kunit_test_suites(__suites...)						\
 279	__kunit_test_suites(__UNIQUE_ID(array),				\
 280			    ##__suites)
 281
 282#define kunit_test_suite(suite)	kunit_test_suites(&suite)
 283
 
 
 
 
 
 284/**
 285 * kunit_test_init_section_suites() - used to register one or more &struct
 286 *				      kunit_suite containing init functions or
 287 *				      init data.
 288 *
 289 * @__suites: a statically allocated list of &struct kunit_suite.
 290 *
 291 * This functions identically as kunit_test_suites() except that it suppresses
 292 * modpost warnings for referencing functions marked __init or data marked
 293 * __initdata; this is OK because currently KUnit only runs tests upon boot
 294 * during the init phase or upon loading a module during the init phase.
 295 *
 296 * NOTE TO KUNIT DEVS: If we ever allow KUnit tests to be run after boot, these
 297 * tests must be excluded.
 298 *
 299 * The only thing this macro does that's different from kunit_test_suites is
 300 * that it suffixes the array and suite declarations it makes with _probe;
 301 * modpost suppresses warnings about referencing init data for symbols named in
 302 * this manner.
 303 */
 304#define kunit_test_init_section_suites(__suites...)			\
 305	__kunit_test_suites(CONCATENATE(__UNIQUE_ID(array), _probe),	\
 306			    ##__suites)
 307
 308#define kunit_test_init_section_suite(suite)	\
 309	kunit_test_init_section_suites(&suite)
 310
 311#define kunit_suite_for_each_test_case(suite, test_case)		\
 312	for (test_case = suite->test_cases; test_case->run_case; test_case++)
 313
 314enum kunit_status kunit_suite_has_succeeded(struct kunit_suite *suite);
 315
 316/**
 317 * kunit_kmalloc_array() - Like kmalloc_array() except the allocation is *test managed*.
 318 * @test: The test context object.
 319 * @n: number of elements.
 320 * @size: The size in bytes of the desired memory.
 321 * @gfp: flags passed to underlying kmalloc().
 322 *
 323 * Just like `kmalloc_array(...)`, except the allocation is managed by the test case
 324 * and is automatically cleaned up after the test case concludes. See &struct
 325 * kunit_resource for more information.
 
 
 
 326 */
 327void *kunit_kmalloc_array(struct kunit *test, size_t n, size_t size, gfp_t gfp);
 328
 329/**
 330 * kunit_kmalloc() - Like kmalloc() except the allocation is *test managed*.
 331 * @test: The test context object.
 332 * @size: The size in bytes of the desired memory.
 333 * @gfp: flags passed to underlying kmalloc().
 334 *
 335 * See kmalloc() and kunit_kmalloc_array() for more information.
 
 
 
 336 */
 337static inline void *kunit_kmalloc(struct kunit *test, size_t size, gfp_t gfp)
 338{
 339	return kunit_kmalloc_array(test, 1, size, gfp);
 340}
 341
 342/**
 343 * kunit_kfree() - Like kfree except for allocations managed by KUnit.
 344 * @test: The test case to which the resource belongs.
 345 * @ptr: The memory allocation to free.
 346 */
 347void kunit_kfree(struct kunit *test, const void *ptr);
 348
 349/**
 350 * kunit_kzalloc() - Just like kunit_kmalloc(), but zeroes the allocation.
 351 * @test: The test context object.
 352 * @size: The size in bytes of the desired memory.
 353 * @gfp: flags passed to underlying kmalloc().
 354 *
 355 * See kzalloc() and kunit_kmalloc_array() for more information.
 356 */
 357static inline void *kunit_kzalloc(struct kunit *test, size_t size, gfp_t gfp)
 358{
 359	return kunit_kmalloc(test, size, gfp | __GFP_ZERO);
 360}
 361
 362/**
 363 * kunit_kcalloc() - Just like kunit_kmalloc_array(), but zeroes the allocation.
 364 * @test: The test context object.
 365 * @n: number of elements.
 366 * @size: The size in bytes of the desired memory.
 367 * @gfp: flags passed to underlying kmalloc().
 368 *
 369 * See kcalloc() and kunit_kmalloc_array() for more information.
 370 */
 371static inline void *kunit_kcalloc(struct kunit *test, size_t n, size_t size, gfp_t gfp)
 372{
 373	return kunit_kmalloc_array(test, n, size, gfp | __GFP_ZERO);
 374}
 375
 376void kunit_cleanup(struct kunit *test);
 377
 378void __printf(2, 3) kunit_log_append(char *log, const char *fmt, ...);
 379
 380/**
 381 * kunit_mark_skipped() - Marks @test_or_suite as skipped
 382 *
 383 * @test_or_suite: The test context object.
 384 * @fmt:  A printk() style format string.
 385 *
 386 * Marks the test as skipped. @fmt is given output as the test status
 387 * comment, typically the reason the test was skipped.
 388 *
 389 * Test execution continues after kunit_mark_skipped() is called.
 390 */
 391#define kunit_mark_skipped(test_or_suite, fmt, ...)			\
 392	do {								\
 393		WRITE_ONCE((test_or_suite)->status, KUNIT_SKIPPED);	\
 394		scnprintf((test_or_suite)->status_comment,		\
 395			  KUNIT_STATUS_COMMENT_SIZE,			\
 396			  fmt, ##__VA_ARGS__);				\
 397	} while (0)
 398
 399/**
 400 * kunit_skip() - Marks @test_or_suite as skipped
 401 *
 402 * @test_or_suite: The test context object.
 403 * @fmt:  A printk() style format string.
 404 *
 405 * Skips the test. @fmt is given output as the test status
 406 * comment, typically the reason the test was skipped.
 407 *
 408 * Test execution is halted after kunit_skip() is called.
 409 */
 410#define kunit_skip(test_or_suite, fmt, ...)				\
 411	do {								\
 412		kunit_mark_skipped((test_or_suite), fmt, ##__VA_ARGS__);\
 413		kunit_try_catch_throw(&((test_or_suite)->try_catch));	\
 414	} while (0)
 415
 416/*
 417 * printk and log to per-test or per-suite log buffer.  Logging only done
 418 * if CONFIG_KUNIT_DEBUGFS is 'y'; if it is 'n', no log is allocated/used.
 419 */
 420#define kunit_log(lvl, test_or_suite, fmt, ...)				\
 421	do {								\
 422		printk(lvl fmt, ##__VA_ARGS__);				\
 423		kunit_log_append((test_or_suite)->log,	fmt "\n",	\
 424				 ##__VA_ARGS__);			\
 425	} while (0)
 426
 427#define kunit_printk(lvl, test, fmt, ...)				\
 428	kunit_log(lvl, test, KUNIT_SUBTEST_INDENT "# %s: " fmt,		\
 429		  (test)->name,	##__VA_ARGS__)
 430
 431/**
 432 * kunit_info() - Prints an INFO level message associated with @test.
 433 *
 434 * @test: The test context object.
 435 * @fmt:  A printk() style format string.
 436 *
 437 * Prints an info level message associated with the test suite being run.
 438 * Takes a variable number of format parameters just like printk().
 439 */
 440#define kunit_info(test, fmt, ...) \
 441	kunit_printk(KERN_INFO, test, fmt, ##__VA_ARGS__)
 442
 443/**
 444 * kunit_warn() - Prints a WARN level message associated with @test.
 445 *
 446 * @test: The test context object.
 447 * @fmt:  A printk() style format string.
 448 *
 449 * Prints a warning level message.
 450 */
 451#define kunit_warn(test, fmt, ...) \
 452	kunit_printk(KERN_WARNING, test, fmt, ##__VA_ARGS__)
 453
 454/**
 455 * kunit_err() - Prints an ERROR level message associated with @test.
 456 *
 457 * @test: The test context object.
 458 * @fmt:  A printk() style format string.
 459 *
 460 * Prints an error level message.
 461 */
 462#define kunit_err(test, fmt, ...) \
 463	kunit_printk(KERN_ERR, test, fmt, ##__VA_ARGS__)
 464
 465/**
 466 * KUNIT_SUCCEED() - A no-op expectation. Only exists for code clarity.
 467 * @test: The test context object.
 468 *
 469 * The opposite of KUNIT_FAIL(), it is an expectation that cannot fail. In other
 470 * words, it does nothing and only exists for code clarity. See
 471 * KUNIT_EXPECT_TRUE() for more information.
 472 */
 473#define KUNIT_SUCCEED(test) do {} while (0)
 474
 475void kunit_do_failed_assertion(struct kunit *test,
 
 
 476			       const struct kunit_loc *loc,
 477			       enum kunit_assert_type type,
 478			       const struct kunit_assert *assert,
 479			       assert_format_t assert_format,
 480			       const char *fmt, ...);
 481
 482#define _KUNIT_FAILED(test, assert_type, assert_class, assert_format, INITIALIZER, fmt, ...) do { \
 483	static const struct kunit_loc __loc = KUNIT_CURRENT_LOC;	       \
 484	const struct assert_class __assertion = INITIALIZER;		       \
 485	kunit_do_failed_assertion(test,					       \
 486				  &__loc,				       \
 487				  assert_type,				       \
 488				  &__assertion.assert,			       \
 489				  assert_format,			       \
 490				  fmt,					       \
 491				  ##__VA_ARGS__);			       \
 
 
 492} while (0)
 493
 494
 495#define KUNIT_FAIL_ASSERTION(test, assert_type, fmt, ...)		       \
 496	_KUNIT_FAILED(test,						       \
 497		      assert_type,					       \
 498		      kunit_fail_assert,				       \
 499		      kunit_fail_assert_format,				       \
 500		      {},						       \
 501		      fmt,						       \
 502		      ##__VA_ARGS__)
 503
 504/**
 505 * KUNIT_FAIL() - Always causes a test to fail when evaluated.
 506 * @test: The test context object.
 507 * @fmt: an informational message to be printed when the assertion is made.
 508 * @...: string format arguments.
 509 *
 510 * The opposite of KUNIT_SUCCEED(), it is an expectation that always fails. In
 511 * other words, it always results in a failed expectation, and consequently
 512 * always causes the test case to fail when evaluated. See KUNIT_EXPECT_TRUE()
 513 * for more information.
 514 */
 515#define KUNIT_FAIL(test, fmt, ...)					       \
 516	KUNIT_FAIL_ASSERTION(test,					       \
 517			     KUNIT_EXPECTATION,				       \
 518			     fmt,					       \
 519			     ##__VA_ARGS__)
 520
 521/* Helper to safely pass around an initializer list to other macros. */
 522#define KUNIT_INIT_ASSERT(initializers...) { initializers }
 523
 524#define KUNIT_UNARY_ASSERTION(test,					       \
 525			      assert_type,				       \
 526			      condition_,				       \
 527			      expected_true_,				       \
 528			      fmt,					       \
 529			      ...)					       \
 530do {									       \
 531	if (likely(!!(condition_) == !!expected_true_))			       \
 532		break;							       \
 533									       \
 534	_KUNIT_FAILED(test,						       \
 535		      assert_type,					       \
 536		      kunit_unary_assert,				       \
 537		      kunit_unary_assert_format,			       \
 538		      KUNIT_INIT_ASSERT(.condition = #condition_,	       \
 539					.expected_true = expected_true_),      \
 540		      fmt,						       \
 541		      ##__VA_ARGS__);					       \
 542} while (0)
 543
 544#define KUNIT_TRUE_MSG_ASSERTION(test, assert_type, condition, fmt, ...)       \
 545	KUNIT_UNARY_ASSERTION(test,					       \
 546			      assert_type,				       \
 547			      condition,				       \
 548			      true,					       \
 549			      fmt,					       \
 550			      ##__VA_ARGS__)
 551
 552#define KUNIT_FALSE_MSG_ASSERTION(test, assert_type, condition, fmt, ...)      \
 553	KUNIT_UNARY_ASSERTION(test,					       \
 554			      assert_type,				       \
 555			      condition,				       \
 556			      false,					       \
 557			      fmt,					       \
 558			      ##__VA_ARGS__)
 559
 560/*
 561 * A factory macro for defining the assertions and expectations for the basic
 562 * comparisons defined for the built in types.
 563 *
 564 * Unfortunately, there is no common type that all types can be promoted to for
 565 * which all the binary operators behave the same way as for the actual types
 566 * (for example, there is no type that long long and unsigned long long can
 567 * both be cast to where the comparison result is preserved for all values). So
 568 * the best we can do is do the comparison in the original types and then coerce
 569 * everything to long long for printing; this way, the comparison behaves
 570 * correctly and the printed out value usually makes sense without
 571 * interpretation, but can always be interpreted to figure out the actual
 572 * value.
 573 */
 574#define KUNIT_BASE_BINARY_ASSERTION(test,				       \
 575				    assert_class,			       \
 576				    format_func,			       \
 577				    assert_type,			       \
 578				    left,				       \
 579				    op,					       \
 580				    right,				       \
 581				    fmt,				       \
 582				    ...)				       \
 583do {									       \
 584	const typeof(left) __left = (left);				       \
 585	const typeof(right) __right = (right);				       \
 586	static const struct kunit_binary_assert_text __text = {		       \
 587		.operation = #op,					       \
 588		.left_text = #left,					       \
 589		.right_text = #right,					       \
 590	};								       \
 591									       \
 592	if (likely(__left op __right))					       \
 593		break;							       \
 594									       \
 595	_KUNIT_FAILED(test,						       \
 596		      assert_type,					       \
 597		      assert_class,					       \
 598		      format_func,					       \
 599		      KUNIT_INIT_ASSERT(.text = &__text,		       \
 600					.left_value = __left,		       \
 601					.right_value = __right),	       \
 602		      fmt,						       \
 603		      ##__VA_ARGS__);					       \
 604} while (0)
 605
 606#define KUNIT_BINARY_INT_ASSERTION(test,				       \
 607				   assert_type,				       \
 608				   left,				       \
 609				   op,					       \
 610				   right,				       \
 611				   fmt,					       \
 612				    ...)				       \
 613	KUNIT_BASE_BINARY_ASSERTION(test,				       \
 614				    kunit_binary_assert,		       \
 615				    kunit_binary_assert_format,		       \
 616				    assert_type,			       \
 617				    left, op, right,			       \
 618				    fmt,				       \
 619				    ##__VA_ARGS__)
 620
 621#define KUNIT_BINARY_PTR_ASSERTION(test,				       \
 622				   assert_type,				       \
 623				   left,				       \
 624				   op,					       \
 625				   right,				       \
 626				   fmt,					       \
 627				    ...)				       \
 628	KUNIT_BASE_BINARY_ASSERTION(test,				       \
 629				    kunit_binary_ptr_assert,		       \
 630				    kunit_binary_ptr_assert_format,	       \
 631				    assert_type,			       \
 632				    left, op, right,			       \
 633				    fmt,				       \
 634				    ##__VA_ARGS__)
 635
 636#define KUNIT_BINARY_STR_ASSERTION(test,				       \
 637				   assert_type,				       \
 638				   left,				       \
 639				   op,					       \
 640				   right,				       \
 641				   fmt,					       \
 642				   ...)					       \
 643do {									       \
 644	const char *__left = (left);					       \
 645	const char *__right = (right);					       \
 646	static const struct kunit_binary_assert_text __text = {		       \
 647		.operation = #op,					       \
 648		.left_text = #left,					       \
 649		.right_text = #right,					       \
 650	};								       \
 651									       \
 652	if (likely(strcmp(__left, __right) op 0))			       \
 653		break;							       \
 654									       \
 655									       \
 656	_KUNIT_FAILED(test,						       \
 657		      assert_type,					       \
 658		      kunit_binary_str_assert,				       \
 659		      kunit_binary_str_assert_format,			       \
 660		      KUNIT_INIT_ASSERT(.text = &__text,		       \
 661					.left_value = __left,		       \
 662					.right_value = __right),	       \
 663		      fmt,						       \
 664		      ##__VA_ARGS__);					       \
 665} while (0)
 666
 667#define KUNIT_MEM_ASSERTION(test,					       \
 668			    assert_type,				       \
 669			    left,					       \
 670			    op,						       \
 671			    right,					       \
 672			    size_,					       \
 673			    fmt,					       \
 674			    ...)					       \
 675do {									       \
 676	const void *__left = (left);					       \
 677	const void *__right = (right);					       \
 678	const size_t __size = (size_);					       \
 679	static const struct kunit_binary_assert_text __text = {		       \
 680		.operation = #op,					       \
 681		.left_text = #left,					       \
 682		.right_text = #right,					       \
 683	};								       \
 684									       \
 685	if (likely(__left && __right))					       \
 686		if (likely(memcmp(__left, __right, __size) op 0))	       \
 687			break;						       \
 688									       \
 689	_KUNIT_FAILED(test,						       \
 690		      assert_type,					       \
 691		      kunit_mem_assert,					       \
 692		      kunit_mem_assert_format,				       \
 693		      KUNIT_INIT_ASSERT(.text = &__text,		       \
 694					.left_value = __left,		       \
 695					.right_value = __right,		       \
 696					.size = __size),		       \
 697		      fmt,						       \
 698		      ##__VA_ARGS__);					       \
 699} while (0)
 700
 701#define KUNIT_PTR_NOT_ERR_OR_NULL_MSG_ASSERTION(test,			       \
 702						assert_type,		       \
 703						ptr,			       \
 704						fmt,			       \
 705						...)			       \
 706do {									       \
 707	const typeof(ptr) __ptr = (ptr);				       \
 708									       \
 709	if (!IS_ERR_OR_NULL(__ptr))					       \
 710		break;							       \
 711									       \
 712	_KUNIT_FAILED(test,						       \
 713		      assert_type,					       \
 714		      kunit_ptr_not_err_assert,				       \
 715		      kunit_ptr_not_err_assert_format,			       \
 716		      KUNIT_INIT_ASSERT(.text = #ptr, .value = __ptr),	       \
 717		      fmt,						       \
 718		      ##__VA_ARGS__);					       \
 719} while (0)
 720
 721/**
 722 * KUNIT_EXPECT_TRUE() - Causes a test failure when the expression is not true.
 723 * @test: The test context object.
 724 * @condition: an arbitrary boolean expression. The test fails when this does
 725 * not evaluate to true.
 726 *
 727 * This and expectations of the form `KUNIT_EXPECT_*` will cause the test case
 728 * to fail when the specified condition is not met; however, it will not prevent
 729 * the test case from continuing to run; this is otherwise known as an
 730 * *expectation failure*.
 731 */
 732#define KUNIT_EXPECT_TRUE(test, condition) \
 733	KUNIT_EXPECT_TRUE_MSG(test, condition, NULL)
 734
 735#define KUNIT_EXPECT_TRUE_MSG(test, condition, fmt, ...)		       \
 736	KUNIT_TRUE_MSG_ASSERTION(test,					       \
 737				 KUNIT_EXPECTATION,			       \
 738				 condition,				       \
 739				 fmt,					       \
 740				 ##__VA_ARGS__)
 741
 742/**
 743 * KUNIT_EXPECT_FALSE() - Makes a test failure when the expression is not false.
 744 * @test: The test context object.
 745 * @condition: an arbitrary boolean expression. The test fails when this does
 746 * not evaluate to false.
 747 *
 748 * Sets an expectation that @condition evaluates to false. See
 749 * KUNIT_EXPECT_TRUE() for more information.
 750 */
 751#define KUNIT_EXPECT_FALSE(test, condition) \
 752	KUNIT_EXPECT_FALSE_MSG(test, condition, NULL)
 753
 754#define KUNIT_EXPECT_FALSE_MSG(test, condition, fmt, ...)		       \
 755	KUNIT_FALSE_MSG_ASSERTION(test,					       \
 756				  KUNIT_EXPECTATION,			       \
 757				  condition,				       \
 758				  fmt,					       \
 759				  ##__VA_ARGS__)
 760
 761/**
 762 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
 763 * @test: The test context object.
 764 * @left: an arbitrary expression that evaluates to a primitive C type.
 765 * @right: an arbitrary expression that evaluates to a primitive C type.
 766 *
 767 * Sets an expectation that the values that @left and @right evaluate to are
 768 * equal. This is semantically equivalent to
 769 * KUNIT_EXPECT_TRUE(@test, (@left) == (@right)). See KUNIT_EXPECT_TRUE() for
 770 * more information.
 771 */
 772#define KUNIT_EXPECT_EQ(test, left, right) \
 773	KUNIT_EXPECT_EQ_MSG(test, left, right, NULL)
 774
 775#define KUNIT_EXPECT_EQ_MSG(test, left, right, fmt, ...)		       \
 776	KUNIT_BINARY_INT_ASSERTION(test,				       \
 777				   KUNIT_EXPECTATION,			       \
 778				   left, ==, right,			       \
 779				   fmt,					       \
 780				    ##__VA_ARGS__)
 781
 782/**
 783 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
 784 * @test: The test context object.
 785 * @left: an arbitrary expression that evaluates to a pointer.
 786 * @right: an arbitrary expression that evaluates to a pointer.
 787 *
 788 * Sets an expectation that the values that @left and @right evaluate to are
 789 * equal. This is semantically equivalent to
 790 * KUNIT_EXPECT_TRUE(@test, (@left) == (@right)). See KUNIT_EXPECT_TRUE() for
 791 * more information.
 792 */
 793#define KUNIT_EXPECT_PTR_EQ(test, left, right)				       \
 794	KUNIT_EXPECT_PTR_EQ_MSG(test, left, right, NULL)
 795
 796#define KUNIT_EXPECT_PTR_EQ_MSG(test, left, right, fmt, ...)		       \
 797	KUNIT_BINARY_PTR_ASSERTION(test,				       \
 798				   KUNIT_EXPECTATION,			       \
 799				   left, ==, right,			       \
 800				   fmt,					       \
 801				   ##__VA_ARGS__)
 802
 803/**
 804 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
 805 * @test: The test context object.
 806 * @left: an arbitrary expression that evaluates to a primitive C type.
 807 * @right: an arbitrary expression that evaluates to a primitive C type.
 808 *
 809 * Sets an expectation that the values that @left and @right evaluate to are not
 810 * equal. This is semantically equivalent to
 811 * KUNIT_EXPECT_TRUE(@test, (@left) != (@right)). See KUNIT_EXPECT_TRUE() for
 812 * more information.
 813 */
 814#define KUNIT_EXPECT_NE(test, left, right) \
 815	KUNIT_EXPECT_NE_MSG(test, left, right, NULL)
 816
 817#define KUNIT_EXPECT_NE_MSG(test, left, right, fmt, ...)		       \
 818	KUNIT_BINARY_INT_ASSERTION(test,				       \
 819				   KUNIT_EXPECTATION,			       \
 820				   left, !=, right,			       \
 821				   fmt,					       \
 822				    ##__VA_ARGS__)
 823
 824/**
 825 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
 826 * @test: The test context object.
 827 * @left: an arbitrary expression that evaluates to a pointer.
 828 * @right: an arbitrary expression that evaluates to a pointer.
 829 *
 830 * Sets an expectation that the values that @left and @right evaluate to are not
 831 * equal. This is semantically equivalent to
 832 * KUNIT_EXPECT_TRUE(@test, (@left) != (@right)). See KUNIT_EXPECT_TRUE() for
 833 * more information.
 834 */
 835#define KUNIT_EXPECT_PTR_NE(test, left, right)				       \
 836	KUNIT_EXPECT_PTR_NE_MSG(test, left, right, NULL)
 837
 838#define KUNIT_EXPECT_PTR_NE_MSG(test, left, right, fmt, ...)		       \
 839	KUNIT_BINARY_PTR_ASSERTION(test,				       \
 840				   KUNIT_EXPECTATION,			       \
 841				   left, !=, right,			       \
 842				   fmt,					       \
 843				   ##__VA_ARGS__)
 844
 845/**
 846 * KUNIT_EXPECT_LT() - An expectation that @left is less than @right.
 847 * @test: The test context object.
 848 * @left: an arbitrary expression that evaluates to a primitive C type.
 849 * @right: an arbitrary expression that evaluates to a primitive C type.
 850 *
 851 * Sets an expectation that the value that @left evaluates to is less than the
 852 * value that @right evaluates to. This is semantically equivalent to
 853 * KUNIT_EXPECT_TRUE(@test, (@left) < (@right)). See KUNIT_EXPECT_TRUE() for
 854 * more information.
 855 */
 856#define KUNIT_EXPECT_LT(test, left, right) \
 857	KUNIT_EXPECT_LT_MSG(test, left, right, NULL)
 858
 859#define KUNIT_EXPECT_LT_MSG(test, left, right, fmt, ...)		       \
 860	KUNIT_BINARY_INT_ASSERTION(test,				       \
 861				   KUNIT_EXPECTATION,			       \
 862				   left, <, right,			       \
 863				   fmt,					       \
 864				    ##__VA_ARGS__)
 865
 866/**
 867 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
 868 * @test: The test context object.
 869 * @left: an arbitrary expression that evaluates to a primitive C type.
 870 * @right: an arbitrary expression that evaluates to a primitive C type.
 871 *
 872 * Sets an expectation that the value that @left evaluates to is less than or
 873 * equal to the value that @right evaluates to. Semantically this is equivalent
 874 * to KUNIT_EXPECT_TRUE(@test, (@left) <= (@right)). See KUNIT_EXPECT_TRUE() for
 875 * more information.
 876 */
 877#define KUNIT_EXPECT_LE(test, left, right) \
 878	KUNIT_EXPECT_LE_MSG(test, left, right, NULL)
 879
 880#define KUNIT_EXPECT_LE_MSG(test, left, right, fmt, ...)		       \
 881	KUNIT_BINARY_INT_ASSERTION(test,				       \
 882				   KUNIT_EXPECTATION,			       \
 883				   left, <=, right,			       \
 884				   fmt,					       \
 885				    ##__VA_ARGS__)
 886
 887/**
 888 * KUNIT_EXPECT_GT() - An expectation that @left is greater than @right.
 889 * @test: The test context object.
 890 * @left: an arbitrary expression that evaluates to a primitive C type.
 891 * @right: an arbitrary expression that evaluates to a primitive C type.
 892 *
 893 * Sets an expectation that the value that @left evaluates to is greater than
 894 * the value that @right evaluates to. This is semantically equivalent to
 895 * KUNIT_EXPECT_TRUE(@test, (@left) > (@right)). See KUNIT_EXPECT_TRUE() for
 896 * more information.
 897 */
 898#define KUNIT_EXPECT_GT(test, left, right) \
 899	KUNIT_EXPECT_GT_MSG(test, left, right, NULL)
 900
 901#define KUNIT_EXPECT_GT_MSG(test, left, right, fmt, ...)		       \
 902	KUNIT_BINARY_INT_ASSERTION(test,				       \
 903				   KUNIT_EXPECTATION,			       \
 904				   left, >, right,			       \
 905				   fmt,					       \
 906				    ##__VA_ARGS__)
 907
 908/**
 909 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
 910 * @test: The test context object.
 911 * @left: an arbitrary expression that evaluates to a primitive C type.
 912 * @right: an arbitrary expression that evaluates to a primitive C type.
 913 *
 914 * Sets an expectation that the value that @left evaluates to is greater than
 915 * the value that @right evaluates to. This is semantically equivalent to
 916 * KUNIT_EXPECT_TRUE(@test, (@left) >= (@right)). See KUNIT_EXPECT_TRUE() for
 917 * more information.
 918 */
 919#define KUNIT_EXPECT_GE(test, left, right) \
 920	KUNIT_EXPECT_GE_MSG(test, left, right, NULL)
 921
 922#define KUNIT_EXPECT_GE_MSG(test, left, right, fmt, ...)		       \
 923	KUNIT_BINARY_INT_ASSERTION(test,				       \
 924				   KUNIT_EXPECTATION,			       \
 925				   left, >=, right,			       \
 926				   fmt,					       \
 927				    ##__VA_ARGS__)
 928
 929/**
 930 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
 931 * @test: The test context object.
 932 * @left: an arbitrary expression that evaluates to a null terminated string.
 933 * @right: an arbitrary expression that evaluates to a null terminated string.
 934 *
 935 * Sets an expectation that the values that @left and @right evaluate to are
 936 * equal. This is semantically equivalent to
 937 * KUNIT_EXPECT_TRUE(@test, !strcmp((@left), (@right))). See KUNIT_EXPECT_TRUE()
 938 * for more information.
 939 */
 940#define KUNIT_EXPECT_STREQ(test, left, right) \
 941	KUNIT_EXPECT_STREQ_MSG(test, left, right, NULL)
 942
 943#define KUNIT_EXPECT_STREQ_MSG(test, left, right, fmt, ...)		       \
 944	KUNIT_BINARY_STR_ASSERTION(test,				       \
 945				   KUNIT_EXPECTATION,			       \
 946				   left, ==, right,			       \
 947				   fmt,					       \
 948				   ##__VA_ARGS__)
 949
 950/**
 951 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
 952 * @test: The test context object.
 953 * @left: an arbitrary expression that evaluates to a null terminated string.
 954 * @right: an arbitrary expression that evaluates to a null terminated string.
 955 *
 956 * Sets an expectation that the values that @left and @right evaluate to are
 957 * not equal. This is semantically equivalent to
 958 * KUNIT_EXPECT_TRUE(@test, strcmp((@left), (@right))). See KUNIT_EXPECT_TRUE()
 959 * for more information.
 960 */
 961#define KUNIT_EXPECT_STRNEQ(test, left, right) \
 962	KUNIT_EXPECT_STRNEQ_MSG(test, left, right, NULL)
 963
 964#define KUNIT_EXPECT_STRNEQ_MSG(test, left, right, fmt, ...)		       \
 965	KUNIT_BINARY_STR_ASSERTION(test,				       \
 966				   KUNIT_EXPECTATION,			       \
 967				   left, !=, right,			       \
 968				   fmt,					       \
 969				   ##__VA_ARGS__)
 970
 971/**
 972 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
 973 * @test: The test context object.
 974 * @left: An arbitrary expression that evaluates to the specified size.
 975 * @right: An arbitrary expression that evaluates to the specified size.
 976 * @size: Number of bytes compared.
 977 *
 978 * Sets an expectation that the values that @left and @right evaluate to are
 979 * equal. This is semantically equivalent to
 980 * KUNIT_EXPECT_TRUE(@test, !memcmp((@left), (@right), (@size))). See
 981 * KUNIT_EXPECT_TRUE() for more information.
 982 *
 983 * Although this expectation works for any memory block, it is not recommended
 984 * for comparing more structured data, such as structs. This expectation is
 985 * recommended for comparing, for example, data arrays.
 986 */
 987#define KUNIT_EXPECT_MEMEQ(test, left, right, size) \
 988	KUNIT_EXPECT_MEMEQ_MSG(test, left, right, size, NULL)
 989
 990#define KUNIT_EXPECT_MEMEQ_MSG(test, left, right, size, fmt, ...)	       \
 991	KUNIT_MEM_ASSERTION(test,					       \
 992			    KUNIT_EXPECTATION,				       \
 993			    left, ==, right,				       \
 994			    size,					       \
 995			    fmt,					       \
 996			    ##__VA_ARGS__)
 997
 998/**
 999 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1000 * @test: The test context object.
1001 * @left: An arbitrary expression that evaluates to the specified size.
1002 * @right: An arbitrary expression that evaluates to the specified size.
1003 * @size: Number of bytes compared.
1004 *
1005 * Sets an expectation that the values that @left and @right evaluate to are
1006 * not equal. This is semantically equivalent to
1007 * KUNIT_EXPECT_TRUE(@test, memcmp((@left), (@right), (@size))). See
1008 * KUNIT_EXPECT_TRUE() for more information.
1009 *
1010 * Although this expectation works for any memory block, it is not recommended
1011 * for comparing more structured data, such as structs. This expectation is
1012 * recommended for comparing, for example, data arrays.
1013 */
1014#define KUNIT_EXPECT_MEMNEQ(test, left, right, size) \
1015	KUNIT_EXPECT_MEMNEQ_MSG(test, left, right, size, NULL)
1016
1017#define KUNIT_EXPECT_MEMNEQ_MSG(test, left, right, size, fmt, ...)	       \
1018	KUNIT_MEM_ASSERTION(test,					       \
1019			    KUNIT_EXPECTATION,				       \
1020			    left, !=, right,				       \
1021			    size,					       \
1022			    fmt,					       \
1023			    ##__VA_ARGS__)
1024
1025/**
1026 * KUNIT_EXPECT_NULL() - Expects that @ptr is null.
1027 * @test: The test context object.
1028 * @ptr: an arbitrary pointer.
1029 *
1030 * Sets an expectation that the value that @ptr evaluates to is null. This is
1031 * semantically equivalent to KUNIT_EXPECT_PTR_EQ(@test, ptr, NULL).
1032 * See KUNIT_EXPECT_TRUE() for more information.
1033 */
1034#define KUNIT_EXPECT_NULL(test, ptr)				               \
1035	KUNIT_EXPECT_NULL_MSG(test,					       \
1036			      ptr,					       \
1037			      NULL)
1038
1039#define KUNIT_EXPECT_NULL_MSG(test, ptr, fmt, ...)	                       \
1040	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1041				   KUNIT_EXPECTATION,			       \
1042				   ptr, ==, NULL,			       \
1043				   fmt,					       \
1044				   ##__VA_ARGS__)
1045
1046/**
1047 * KUNIT_EXPECT_NOT_NULL() - Expects that @ptr is not null.
1048 * @test: The test context object.
1049 * @ptr: an arbitrary pointer.
1050 *
1051 * Sets an expectation that the value that @ptr evaluates to is not null. This
1052 * is semantically equivalent to KUNIT_EXPECT_PTR_NE(@test, ptr, NULL).
1053 * See KUNIT_EXPECT_TRUE() for more information.
1054 */
1055#define KUNIT_EXPECT_NOT_NULL(test, ptr)			               \
1056	KUNIT_EXPECT_NOT_NULL_MSG(test,					       \
1057				  ptr,					       \
1058				  NULL)
1059
1060#define KUNIT_EXPECT_NOT_NULL_MSG(test, ptr, fmt, ...)	                       \
1061	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1062				   KUNIT_EXPECTATION,			       \
1063				   ptr, !=, NULL,			       \
1064				   fmt,					       \
1065				   ##__VA_ARGS__)
1066
1067/**
1068 * KUNIT_EXPECT_NOT_ERR_OR_NULL() - Expects that @ptr is not null and not err.
1069 * @test: The test context object.
1070 * @ptr: an arbitrary pointer.
1071 *
1072 * Sets an expectation that the value that @ptr evaluates to is not null and not
1073 * an errno stored in a pointer. This is semantically equivalent to
1074 * KUNIT_EXPECT_TRUE(@test, !IS_ERR_OR_NULL(@ptr)). See KUNIT_EXPECT_TRUE() for
1075 * more information.
1076 */
1077#define KUNIT_EXPECT_NOT_ERR_OR_NULL(test, ptr) \
1078	KUNIT_EXPECT_NOT_ERR_OR_NULL_MSG(test, ptr, NULL)
1079
1080#define KUNIT_EXPECT_NOT_ERR_OR_NULL_MSG(test, ptr, fmt, ...)		       \
1081	KUNIT_PTR_NOT_ERR_OR_NULL_MSG_ASSERTION(test,			       \
1082						KUNIT_EXPECTATION,	       \
1083						ptr,			       \
1084						fmt,			       \
1085						##__VA_ARGS__)
1086
1087#define KUNIT_ASSERT_FAILURE(test, fmt, ...) \
1088	KUNIT_FAIL_ASSERTION(test, KUNIT_ASSERTION, fmt, ##__VA_ARGS__)
1089
1090/**
1091 * KUNIT_ASSERT_TRUE() - Sets an assertion that @condition is true.
1092 * @test: The test context object.
1093 * @condition: an arbitrary boolean expression. The test fails and aborts when
1094 * this does not evaluate to true.
1095 *
1096 * This and assertions of the form `KUNIT_ASSERT_*` will cause the test case to
1097 * fail *and immediately abort* when the specified condition is not met. Unlike
1098 * an expectation failure, it will prevent the test case from continuing to run;
1099 * this is otherwise known as an *assertion failure*.
1100 */
1101#define KUNIT_ASSERT_TRUE(test, condition) \
1102	KUNIT_ASSERT_TRUE_MSG(test, condition, NULL)
1103
1104#define KUNIT_ASSERT_TRUE_MSG(test, condition, fmt, ...)		       \
1105	KUNIT_TRUE_MSG_ASSERTION(test,					       \
1106				 KUNIT_ASSERTION,			       \
1107				 condition,				       \
1108				 fmt,					       \
1109				 ##__VA_ARGS__)
1110
1111/**
1112 * KUNIT_ASSERT_FALSE() - Sets an assertion that @condition is false.
1113 * @test: The test context object.
1114 * @condition: an arbitrary boolean expression.
1115 *
1116 * Sets an assertion that the value that @condition evaluates to is false. This
1117 * is the same as KUNIT_EXPECT_FALSE(), except it causes an assertion failure
1118 * (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1119 */
1120#define KUNIT_ASSERT_FALSE(test, condition) \
1121	KUNIT_ASSERT_FALSE_MSG(test, condition, NULL)
1122
1123#define KUNIT_ASSERT_FALSE_MSG(test, condition, fmt, ...)		       \
1124	KUNIT_FALSE_MSG_ASSERTION(test,					       \
1125				  KUNIT_ASSERTION,			       \
1126				  condition,				       \
1127				  fmt,					       \
1128				  ##__VA_ARGS__)
1129
1130/**
1131 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1132 * @test: The test context object.
1133 * @left: an arbitrary expression that evaluates to a primitive C type.
1134 * @right: an arbitrary expression that evaluates to a primitive C type.
1135 *
1136 * Sets an assertion that the values that @left and @right evaluate to are
1137 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1138 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1139 */
1140#define KUNIT_ASSERT_EQ(test, left, right) \
1141	KUNIT_ASSERT_EQ_MSG(test, left, right, NULL)
1142
1143#define KUNIT_ASSERT_EQ_MSG(test, left, right, fmt, ...)		       \
1144	KUNIT_BINARY_INT_ASSERTION(test,				       \
1145				   KUNIT_ASSERTION,			       \
1146				   left, ==, right,			       \
1147				   fmt,					       \
1148				    ##__VA_ARGS__)
1149
1150/**
1151 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1152 * @test: The test context object.
1153 * @left: an arbitrary expression that evaluates to a pointer.
1154 * @right: an arbitrary expression that evaluates to a pointer.
1155 *
1156 * Sets an assertion that the values that @left and @right evaluate to are
1157 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1158 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1159 */
1160#define KUNIT_ASSERT_PTR_EQ(test, left, right) \
1161	KUNIT_ASSERT_PTR_EQ_MSG(test, left, right, NULL)
1162
1163#define KUNIT_ASSERT_PTR_EQ_MSG(test, left, right, fmt, ...)		       \
1164	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1165				   KUNIT_ASSERTION,			       \
1166				   left, ==, right,			       \
1167				   fmt,					       \
1168				   ##__VA_ARGS__)
1169
1170/**
1171 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1172 * @test: The test context object.
1173 * @left: an arbitrary expression that evaluates to a primitive C type.
1174 * @right: an arbitrary expression that evaluates to a primitive C type.
1175 *
1176 * Sets an assertion that the values that @left and @right evaluate to are not
1177 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1178 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1179 */
1180#define KUNIT_ASSERT_NE(test, left, right) \
1181	KUNIT_ASSERT_NE_MSG(test, left, right, NULL)
1182
1183#define KUNIT_ASSERT_NE_MSG(test, left, right, fmt, ...)		       \
1184	KUNIT_BINARY_INT_ASSERTION(test,				       \
1185				   KUNIT_ASSERTION,			       \
1186				   left, !=, right,			       \
1187				   fmt,					       \
1188				    ##__VA_ARGS__)
1189
1190/**
1191 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1192 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1193 * @test: The test context object.
1194 * @left: an arbitrary expression that evaluates to a pointer.
1195 * @right: an arbitrary expression that evaluates to a pointer.
1196 *
1197 * Sets an assertion that the values that @left and @right evaluate to are not
1198 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1199 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1200 */
1201#define KUNIT_ASSERT_PTR_NE(test, left, right) \
1202	KUNIT_ASSERT_PTR_NE_MSG(test, left, right, NULL)
1203
1204#define KUNIT_ASSERT_PTR_NE_MSG(test, left, right, fmt, ...)		       \
1205	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1206				   KUNIT_ASSERTION,			       \
1207				   left, !=, right,			       \
1208				   fmt,					       \
1209				   ##__VA_ARGS__)
1210/**
1211 * KUNIT_ASSERT_LT() - An assertion that @left is less than @right.
1212 * @test: The test context object.
1213 * @left: an arbitrary expression that evaluates to a primitive C type.
1214 * @right: an arbitrary expression that evaluates to a primitive C type.
1215 *
1216 * Sets an assertion that the value that @left evaluates to is less than the
1217 * value that @right evaluates to. This is the same as KUNIT_EXPECT_LT(), except
1218 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1219 * is not met.
1220 */
1221#define KUNIT_ASSERT_LT(test, left, right) \
1222	KUNIT_ASSERT_LT_MSG(test, left, right, NULL)
1223
1224#define KUNIT_ASSERT_LT_MSG(test, left, right, fmt, ...)		       \
1225	KUNIT_BINARY_INT_ASSERTION(test,				       \
1226				   KUNIT_ASSERTION,			       \
1227				   left, <, right,			       \
1228				   fmt,					       \
1229				    ##__VA_ARGS__)
1230/**
1231 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1232 * @test: The test context object.
1233 * @left: an arbitrary expression that evaluates to a primitive C type.
1234 * @right: an arbitrary expression that evaluates to a primitive C type.
1235 *
1236 * Sets an assertion that the value that @left evaluates to is less than or
1237 * equal to the value that @right evaluates to. This is the same as
1238 * KUNIT_EXPECT_LE(), except it causes an assertion failure (see
1239 * KUNIT_ASSERT_TRUE()) when the assertion is not met.
1240 */
1241#define KUNIT_ASSERT_LE(test, left, right) \
1242	KUNIT_ASSERT_LE_MSG(test, left, right, NULL)
1243
1244#define KUNIT_ASSERT_LE_MSG(test, left, right, fmt, ...)		       \
1245	KUNIT_BINARY_INT_ASSERTION(test,				       \
1246				   KUNIT_ASSERTION,			       \
1247				   left, <=, right,			       \
1248				   fmt,					       \
1249				    ##__VA_ARGS__)
1250
1251/**
1252 * KUNIT_ASSERT_GT() - An assertion that @left is greater than @right.
1253 * @test: The test context object.
1254 * @left: an arbitrary expression that evaluates to a primitive C type.
1255 * @right: an arbitrary expression that evaluates to a primitive C type.
1256 *
1257 * Sets an assertion that the value that @left evaluates to is greater than the
1258 * value that @right evaluates to. This is the same as KUNIT_EXPECT_GT(), except
1259 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1260 * is not met.
1261 */
1262#define KUNIT_ASSERT_GT(test, left, right) \
1263	KUNIT_ASSERT_GT_MSG(test, left, right, NULL)
1264
1265#define KUNIT_ASSERT_GT_MSG(test, left, right, fmt, ...)		       \
1266	KUNIT_BINARY_INT_ASSERTION(test,				       \
1267				   KUNIT_ASSERTION,			       \
1268				   left, >, right,			       \
1269				   fmt,					       \
1270				    ##__VA_ARGS__)
1271
1272/**
1273 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1274 * @test: The test context object.
1275 * @left: an arbitrary expression that evaluates to a primitive C type.
1276 * @right: an arbitrary expression that evaluates to a primitive C type.
1277 *
1278 * Sets an assertion that the value that @left evaluates to is greater than the
1279 * value that @right evaluates to. This is the same as KUNIT_EXPECT_GE(), except
1280 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1281 * is not met.
1282 */
1283#define KUNIT_ASSERT_GE(test, left, right) \
1284	KUNIT_ASSERT_GE_MSG(test, left, right, NULL)
1285
1286#define KUNIT_ASSERT_GE_MSG(test, left, right, fmt, ...)		       \
1287	KUNIT_BINARY_INT_ASSERTION(test,				       \
1288				   KUNIT_ASSERTION,			       \
1289				   left, >=, right,			       \
1290				   fmt,					       \
1291				    ##__VA_ARGS__)
1292
1293/**
1294 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1295 * @test: The test context object.
1296 * @left: an arbitrary expression that evaluates to a null terminated string.
1297 * @right: an arbitrary expression that evaluates to a null terminated string.
1298 *
1299 * Sets an assertion that the values that @left and @right evaluate to are
1300 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1301 * assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1302 */
1303#define KUNIT_ASSERT_STREQ(test, left, right) \
1304	KUNIT_ASSERT_STREQ_MSG(test, left, right, NULL)
1305
1306#define KUNIT_ASSERT_STREQ_MSG(test, left, right, fmt, ...)		       \
1307	KUNIT_BINARY_STR_ASSERTION(test,				       \
1308				   KUNIT_ASSERTION,			       \
1309				   left, ==, right,			       \
1310				   fmt,					       \
1311				   ##__VA_ARGS__)
1312
1313/**
1314 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.
1315 * @test: The test context object.
1316 * @left: an arbitrary expression that evaluates to a null terminated string.
1317 * @right: an arbitrary expression that evaluates to a null terminated string.
1318 *
1319 * Sets an expectation that the values that @left and @right evaluate to are
1320 * not equal. This is semantically equivalent to
1321 * KUNIT_ASSERT_TRUE(@test, strcmp((@left), (@right))). See KUNIT_ASSERT_TRUE()
1322 * for more information.
1323 */
1324#define KUNIT_ASSERT_STRNEQ(test, left, right) \
1325	KUNIT_ASSERT_STRNEQ_MSG(test, left, right, NULL)
1326
1327#define KUNIT_ASSERT_STRNEQ_MSG(test, left, right, fmt, ...)		       \
1328	KUNIT_BINARY_STR_ASSERTION(test,				       \
1329				   KUNIT_ASSERTION,			       \
1330				   left, !=, right,			       \
1331				   fmt,					       \
1332				   ##__VA_ARGS__)
1333
1334/**
1335 * KUNIT_ASSERT_NULL() - Asserts that pointers @ptr is null.
1336 * @test: The test context object.
1337 * @ptr: an arbitrary pointer.
1338 *
1339 * Sets an assertion that the values that @ptr evaluates to is null. This is
1340 * the same as KUNIT_EXPECT_NULL(), except it causes an assertion
1341 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1342 */
1343#define KUNIT_ASSERT_NULL(test, ptr) \
1344	KUNIT_ASSERT_NULL_MSG(test,					       \
1345			      ptr,					       \
1346			      NULL)
1347
1348#define KUNIT_ASSERT_NULL_MSG(test, ptr, fmt, ...) \
1349	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1350				   KUNIT_ASSERTION,			       \
1351				   ptr, ==, NULL,			       \
1352				   fmt,					       \
1353				   ##__VA_ARGS__)
1354
1355/**
1356 * KUNIT_ASSERT_NOT_NULL() - Asserts that pointers @ptr is not null.
1357 * @test: The test context object.
1358 * @ptr: an arbitrary pointer.
1359 *
1360 * Sets an assertion that the values that @ptr evaluates to is not null. This
1361 * is the same as KUNIT_EXPECT_NOT_NULL(), except it causes an assertion
1362 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1363 */
1364#define KUNIT_ASSERT_NOT_NULL(test, ptr) \
1365	KUNIT_ASSERT_NOT_NULL_MSG(test,					       \
1366				  ptr,					       \
1367				  NULL)
1368
1369#define KUNIT_ASSERT_NOT_NULL_MSG(test, ptr, fmt, ...) \
1370	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1371				   KUNIT_ASSERTION,			       \
1372				   ptr, !=, NULL,			       \
1373				   fmt,					       \
1374				   ##__VA_ARGS__)
1375
1376/**
1377 * KUNIT_ASSERT_NOT_ERR_OR_NULL() - Assertion that @ptr is not null and not err.
1378 * @test: The test context object.
1379 * @ptr: an arbitrary pointer.
1380 *
1381 * Sets an assertion that the value that @ptr evaluates to is not null and not
1382 * an errno stored in a pointer. This is the same as
1383 * KUNIT_EXPECT_NOT_ERR_OR_NULL(), except it causes an assertion failure (see
1384 * KUNIT_ASSERT_TRUE()) when the assertion is not met.
1385 */
1386#define KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr) \
1387	KUNIT_ASSERT_NOT_ERR_OR_NULL_MSG(test, ptr, NULL)
1388
1389#define KUNIT_ASSERT_NOT_ERR_OR_NULL_MSG(test, ptr, fmt, ...)		       \
1390	KUNIT_PTR_NOT_ERR_OR_NULL_MSG_ASSERTION(test,			       \
1391						KUNIT_ASSERTION,	       \
1392						ptr,			       \
1393						fmt,			       \
1394						##__VA_ARGS__)
1395
1396/**
1397 * KUNIT_ARRAY_PARAM() - Define test parameter generator from an array.
1398 * @name:  prefix for the test parameter generator function.
1399 * @array: array of test parameters.
1400 * @get_desc: function to convert param to description; NULL to use default
1401 *
1402 * Define function @name_gen_params which uses @array to generate parameters.
1403 */
1404#define KUNIT_ARRAY_PARAM(name, array, get_desc)						\
1405	static const void *name##_gen_params(const void *prev, char *desc)			\
1406	{											\
1407		typeof((array)[0]) *__next = prev ? ((typeof(__next)) prev) + 1 : (array);	\
1408		if (__next - (array) < ARRAY_SIZE((array))) {					\
1409			void (*__get_desc)(typeof(__next), char *) = get_desc;			\
1410			if (__get_desc)								\
1411				__get_desc(__next, desc);					\
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1412			return __next;								\
1413		}										\
1414		return NULL;									\
1415	}
1416
1417// TODO(dlatypov@google.com): consider eventually migrating users to explicitly
1418// include resource.h themselves if they need it.
1419#include <kunit/resource.h>
1420
1421#endif /* _KUNIT_TEST_H */
v6.8
   1/* SPDX-License-Identifier: GPL-2.0 */
   2/*
   3 * Base unit test (KUnit) API.
   4 *
   5 * Copyright (C) 2019, Google LLC.
   6 * Author: Brendan Higgins <brendanhiggins@google.com>
   7 */
   8
   9#ifndef _KUNIT_TEST_H
  10#define _KUNIT_TEST_H
  11
  12#include <kunit/assert.h>
  13#include <kunit/try-catch.h>
  14
  15#include <linux/args.h>
  16#include <linux/compiler.h>
  17#include <linux/container_of.h>
  18#include <linux/err.h>
  19#include <linux/init.h>
  20#include <linux/jump_label.h>
  21#include <linux/kconfig.h>
  22#include <linux/kref.h>
  23#include <linux/list.h>
  24#include <linux/module.h>
  25#include <linux/slab.h>
  26#include <linux/spinlock.h>
  27#include <linux/string.h>
  28#include <linux/types.h>
  29
  30#include <asm/rwonce.h>
  31
  32/* Static key: true if any KUnit tests are currently running */
  33DECLARE_STATIC_KEY_FALSE(kunit_running);
  34
  35struct kunit;
  36struct string_stream;
 
 
  37
  38/* Maximum size of parameter description string. */
  39#define KUNIT_PARAM_DESC_SIZE 128
  40
  41/* Maximum size of a status comment. */
  42#define KUNIT_STATUS_COMMENT_SIZE 256
  43
  44/*
  45 * TAP specifies subtest stream indentation of 4 spaces, 8 spaces for a
  46 * sub-subtest.  See the "Subtests" section in
  47 * https://node-tap.org/tap-protocol/
  48 */
  49#define KUNIT_INDENT_LEN		4
  50#define KUNIT_SUBTEST_INDENT		"    "
  51#define KUNIT_SUBSUBTEST_INDENT		"        "
  52
  53/**
  54 * enum kunit_status - Type of result for a test or test suite
  55 * @KUNIT_SUCCESS: Denotes the test suite has not failed nor been skipped
  56 * @KUNIT_FAILURE: Denotes the test has failed.
  57 * @KUNIT_SKIPPED: Denotes the test has been skipped.
  58 */
  59enum kunit_status {
  60	KUNIT_SUCCESS,
  61	KUNIT_FAILURE,
  62	KUNIT_SKIPPED,
  63};
  64
  65/* Attribute struct/enum definitions */
  66
  67/*
  68 * Speed Attribute is stored as an enum and separated into categories of
  69 * speed: very_slowm, slow, and normal. These speeds are relative to
  70 * other KUnit tests.
  71 *
  72 * Note: unset speed attribute acts as default of KUNIT_SPEED_NORMAL.
  73 */
  74enum kunit_speed {
  75	KUNIT_SPEED_UNSET,
  76	KUNIT_SPEED_VERY_SLOW,
  77	KUNIT_SPEED_SLOW,
  78	KUNIT_SPEED_NORMAL,
  79	KUNIT_SPEED_MAX = KUNIT_SPEED_NORMAL,
  80};
  81
  82/* Holds attributes for each test case and suite */
  83struct kunit_attributes {
  84	enum kunit_speed speed;
  85};
  86
  87/**
  88 * struct kunit_case - represents an individual test case.
  89 *
  90 * @run_case: the function representing the actual test case.
  91 * @name:     the name of the test case.
  92 * @generate_params: the generator function for parameterized tests.
  93 * @attr:     the attributes associated with the test
  94 *
  95 * A test case is a function with the signature,
  96 * ``void (*)(struct kunit *)``
  97 * that makes expectations and assertions (see KUNIT_EXPECT_TRUE() and
  98 * KUNIT_ASSERT_TRUE()) about code under test. Each test case is associated
  99 * with a &struct kunit_suite and will be run after the suite's init
 100 * function and followed by the suite's exit function.
 101 *
 102 * A test case should be static and should only be created with the
 103 * KUNIT_CASE() macro; additionally, every array of test cases should be
 104 * terminated with an empty test case.
 105 *
 106 * Example:
 107 *
 108 * .. code-block:: c
 109 *
 110 *	void add_test_basic(struct kunit *test)
 111 *	{
 112 *		KUNIT_EXPECT_EQ(test, 1, add(1, 0));
 113 *		KUNIT_EXPECT_EQ(test, 2, add(1, 1));
 114 *		KUNIT_EXPECT_EQ(test, 0, add(-1, 1));
 115 *		KUNIT_EXPECT_EQ(test, INT_MAX, add(0, INT_MAX));
 116 *		KUNIT_EXPECT_EQ(test, -1, add(INT_MAX, INT_MIN));
 117 *	}
 118 *
 119 *	static struct kunit_case example_test_cases[] = {
 120 *		KUNIT_CASE(add_test_basic),
 121 *		{}
 122 *	};
 123 *
 124 */
 125struct kunit_case {
 126	void (*run_case)(struct kunit *test);
 127	const char *name;
 128	const void* (*generate_params)(const void *prev, char *desc);
 129	struct kunit_attributes attr;
 130
 131	/* private: internal use only. */
 132	enum kunit_status status;
 133	char *module_name;
 134	struct string_stream *log;
 135};
 136
 137static inline char *kunit_status_to_ok_not_ok(enum kunit_status status)
 138{
 139	switch (status) {
 140	case KUNIT_SKIPPED:
 141	case KUNIT_SUCCESS:
 142		return "ok";
 143	case KUNIT_FAILURE:
 144		return "not ok";
 145	}
 146	return "invalid";
 147}
 148
 149/**
 150 * KUNIT_CASE - A helper for creating a &struct kunit_case
 151 *
 152 * @test_name: a reference to a test case function.
 153 *
 154 * Takes a symbol for a function representing a test case and creates a
 155 * &struct kunit_case object from it. See the documentation for
 156 * &struct kunit_case for an example on how to use it.
 157 */
 158#define KUNIT_CASE(test_name)			\
 159		{ .run_case = test_name, .name = #test_name,	\
 160		  .module_name = KBUILD_MODNAME}
 161
 162/**
 163 * KUNIT_CASE_ATTR - A helper for creating a &struct kunit_case
 164 * with attributes
 165 *
 166 * @test_name: a reference to a test case function.
 167 * @attributes: a reference to a struct kunit_attributes object containing
 168 * test attributes
 169 */
 170#define KUNIT_CASE_ATTR(test_name, attributes)			\
 171		{ .run_case = test_name, .name = #test_name,	\
 172		  .attr = attributes, .module_name = KBUILD_MODNAME}
 173
 174/**
 175 * KUNIT_CASE_SLOW - A helper for creating a &struct kunit_case
 176 * with the slow attribute
 177 *
 178 * @test_name: a reference to a test case function.
 179 */
 180
 181#define KUNIT_CASE_SLOW(test_name)			\
 182		{ .run_case = test_name, .name = #test_name,	\
 183		  .attr.speed = KUNIT_SPEED_SLOW, .module_name = KBUILD_MODNAME}
 184
 185/**
 186 * KUNIT_CASE_PARAM - A helper for creation a parameterized &struct kunit_case
 187 *
 188 * @test_name: a reference to a test case function.
 189 * @gen_params: a reference to a parameter generator function.
 190 *
 191 * The generator function::
 192 *
 193 *	const void* gen_params(const void *prev, char *desc)
 194 *
 195 * is used to lazily generate a series of arbitrarily typed values that fit into
 196 * a void*. The argument @prev is the previously returned value, which should be
 197 * used to derive the next value; @prev is set to NULL on the initial generator
 198 * call. When no more values are available, the generator must return NULL.
 199 * Optionally write a string into @desc (size of KUNIT_PARAM_DESC_SIZE)
 200 * describing the parameter.
 201 */
 202#define KUNIT_CASE_PARAM(test_name, gen_params)			\
 203		{ .run_case = test_name, .name = #test_name,	\
 204		  .generate_params = gen_params, .module_name = KBUILD_MODNAME}
 205
 206/**
 207 * KUNIT_CASE_PARAM_ATTR - A helper for creating a parameterized &struct
 208 * kunit_case with attributes
 209 *
 210 * @test_name: a reference to a test case function.
 211 * @gen_params: a reference to a parameter generator function.
 212 * @attributes: a reference to a struct kunit_attributes object containing
 213 * test attributes
 214 */
 215#define KUNIT_CASE_PARAM_ATTR(test_name, gen_params, attributes)	\
 216		{ .run_case = test_name, .name = #test_name,	\
 217		  .generate_params = gen_params,				\
 218		  .attr = attributes, .module_name = KBUILD_MODNAME}
 219
 220/**
 221 * struct kunit_suite - describes a related collection of &struct kunit_case
 222 *
 223 * @name:	the name of the test. Purely informational.
 224 * @suite_init:	called once per test suite before the test cases.
 225 * @suite_exit:	called once per test suite after all test cases.
 226 * @init:	called before every test case.
 227 * @exit:	called after every test case.
 228 * @test_cases:	a null terminated array of test cases.
 229 * @attr:	the attributes associated with the test suite
 230 *
 231 * A kunit_suite is a collection of related &struct kunit_case s, such that
 232 * @init is called before every test case and @exit is called after every
 233 * test case, similar to the notion of a *test fixture* or a *test class*
 234 * in other unit testing frameworks like JUnit or Googletest.
 235 *
 236 * Note that @exit and @suite_exit will run even if @init or @suite_init
 237 * fail: make sure they can handle any inconsistent state which may result.
 238 *
 239 * Every &struct kunit_case must be associated with a kunit_suite for KUnit
 240 * to run it.
 241 */
 242struct kunit_suite {
 243	const char name[256];
 244	int (*suite_init)(struct kunit_suite *suite);
 245	void (*suite_exit)(struct kunit_suite *suite);
 246	int (*init)(struct kunit *test);
 247	void (*exit)(struct kunit *test);
 248	struct kunit_case *test_cases;
 249	struct kunit_attributes attr;
 250
 251	/* private: internal use only */
 252	char status_comment[KUNIT_STATUS_COMMENT_SIZE];
 253	struct dentry *debugfs;
 254	struct string_stream *log;
 255	int suite_init_err;
 256	bool is_init;
 257};
 258
 259/* Stores an array of suites, end points one past the end */
 260struct kunit_suite_set {
 261	struct kunit_suite * const *start;
 262	struct kunit_suite * const *end;
 263};
 264
 265/**
 266 * struct kunit - represents a running instance of a test.
 267 *
 268 * @priv: for user to store arbitrary data. Commonly used to pass data
 269 *	  created in the init function (see &struct kunit_suite).
 270 *
 271 * Used to store information about the current context under which the test
 272 * is running. Most of this data is private and should only be accessed
 273 * indirectly via public functions; the one exception is @priv which can be
 274 * used by the test writer to store arbitrary data.
 275 */
 276struct kunit {
 277	void *priv;
 278
 279	/* private: internal use only. */
 280	const char *name; /* Read only after initialization! */
 281	struct string_stream *log; /* Points at case log after initialization */
 282	struct kunit_try_catch try_catch;
 283	/* param_value is the current parameter value for a test case. */
 284	const void *param_value;
 285	/* param_index stores the index of the parameter in parameterized tests. */
 286	int param_index;
 287	/*
 288	 * success starts as true, and may only be set to false during a
 289	 * test case; thus, it is safe to update this across multiple
 290	 * threads using WRITE_ONCE; however, as a consequence, it may only
 291	 * be read after the test case finishes once all threads associated
 292	 * with the test case have terminated.
 293	 */
 294	spinlock_t lock; /* Guards all mutable test state. */
 295	enum kunit_status status; /* Read only after test_case finishes! */
 296	/*
 297	 * Because resources is a list that may be updated multiple times (with
 298	 * new resources) from any thread associated with a test case, we must
 299	 * protect it with some type of lock.
 300	 */
 301	struct list_head resources; /* Protected by lock. */
 302
 303	char status_comment[KUNIT_STATUS_COMMENT_SIZE];
 304};
 305
 306static inline void kunit_set_failure(struct kunit *test)
 307{
 308	WRITE_ONCE(test->status, KUNIT_FAILURE);
 309}
 310
 311bool kunit_enabled(void);
 312const char *kunit_action(void);
 313const char *kunit_filter_glob(void);
 314char *kunit_filter(void);
 315char *kunit_filter_action(void);
 316
 317void kunit_init_test(struct kunit *test, const char *name, struct string_stream *log);
 318
 319int kunit_run_tests(struct kunit_suite *suite);
 320
 321size_t kunit_suite_num_test_cases(struct kunit_suite *suite);
 322
 323unsigned int kunit_test_case_num(struct kunit_suite *suite,
 324				 struct kunit_case *test_case);
 325
 326struct kunit_suite_set
 327kunit_filter_suites(const struct kunit_suite_set *suite_set,
 328		    const char *filter_glob,
 329		    char *filters,
 330		    char *filter_action,
 331		    int *err);
 332void kunit_free_suite_set(struct kunit_suite_set suite_set);
 333
 334int __kunit_test_suites_init(struct kunit_suite * const * const suites, int num_suites);
 335
 336void __kunit_test_suites_exit(struct kunit_suite **suites, int num_suites);
 337
 338void kunit_exec_run_tests(struct kunit_suite_set *suite_set, bool builtin);
 339void kunit_exec_list_tests(struct kunit_suite_set *suite_set, bool include_attr);
 340
 341struct kunit_suite_set kunit_merge_suite_sets(struct kunit_suite_set init_suite_set,
 342		struct kunit_suite_set suite_set);
 343
 344#if IS_BUILTIN(CONFIG_KUNIT)
 345int kunit_run_all_tests(void);
 346#else
 347static inline int kunit_run_all_tests(void)
 348{
 349	return 0;
 350}
 351#endif /* IS_BUILTIN(CONFIG_KUNIT) */
 352
 353#define __kunit_test_suites(unique_array, ...)				       \
 354	static struct kunit_suite *unique_array[]			       \
 355	__aligned(sizeof(struct kunit_suite *))				       \
 356	__used __section(".kunit_test_suites") = { __VA_ARGS__ }
 357
 358/**
 359 * kunit_test_suites() - used to register one or more &struct kunit_suite
 360 *			 with KUnit.
 361 *
 362 * @__suites: a statically allocated list of &struct kunit_suite.
 363 *
 364 * Registers @suites with the test framework.
 365 * This is done by placing the array of struct kunit_suite * in the
 366 * .kunit_test_suites ELF section.
 367 *
 368 * When builtin, KUnit tests are all run via the executor at boot, and when
 369 * built as a module, they run on module load.
 370 *
 371 */
 372#define kunit_test_suites(__suites...)						\
 373	__kunit_test_suites(__UNIQUE_ID(array),				\
 374			    ##__suites)
 375
 376#define kunit_test_suite(suite)	kunit_test_suites(&suite)
 377
 378#define __kunit_init_test_suites(unique_array, ...)			       \
 379	static struct kunit_suite *unique_array[]			       \
 380	__aligned(sizeof(struct kunit_suite *))				       \
 381	__used __section(".kunit_init_test_suites") = { __VA_ARGS__ }
 382
 383/**
 384 * kunit_test_init_section_suites() - used to register one or more &struct
 385 *				      kunit_suite containing init functions or
 386 *				      init data.
 387 *
 388 * @__suites: a statically allocated list of &struct kunit_suite.
 389 *
 390 * This functions similar to kunit_test_suites() except that it compiles the
 391 * list of suites during init phase.
 392 *
 393 * This macro also suffixes the array and suite declarations it makes with
 394 * _probe; so that modpost suppresses warnings about referencing init data
 395 * for symbols named in this manner.
 396 *
 397 * Note: these init tests are not able to be run after boot so there is no
 398 * "run" debugfs file generated for these tests.
 399 *
 400 * Also, do not mark the suite or test case structs with __initdata because
 401 * they will be used after the init phase with debugfs.
 402 */
 403#define kunit_test_init_section_suites(__suites...)			\
 404	__kunit_init_test_suites(CONCATENATE(__UNIQUE_ID(array), _probe), \
 405			    ##__suites)
 406
 407#define kunit_test_init_section_suite(suite)	\
 408	kunit_test_init_section_suites(&suite)
 409
 410#define kunit_suite_for_each_test_case(suite, test_case)		\
 411	for (test_case = suite->test_cases; test_case->run_case; test_case++)
 412
 413enum kunit_status kunit_suite_has_succeeded(struct kunit_suite *suite);
 414
 415/**
 416 * kunit_kmalloc_array() - Like kmalloc_array() except the allocation is *test managed*.
 417 * @test: The test context object.
 418 * @n: number of elements.
 419 * @size: The size in bytes of the desired memory.
 420 * @gfp: flags passed to underlying kmalloc().
 421 *
 422 * Just like `kmalloc_array(...)`, except the allocation is managed by the test case
 423 * and is automatically cleaned up after the test case concludes. See kunit_add_action()
 424 * for more information.
 425 *
 426 * Note that some internal context data is also allocated with GFP_KERNEL,
 427 * regardless of the gfp passed in.
 428 */
 429void *kunit_kmalloc_array(struct kunit *test, size_t n, size_t size, gfp_t gfp);
 430
 431/**
 432 * kunit_kmalloc() - Like kmalloc() except the allocation is *test managed*.
 433 * @test: The test context object.
 434 * @size: The size in bytes of the desired memory.
 435 * @gfp: flags passed to underlying kmalloc().
 436 *
 437 * See kmalloc() and kunit_kmalloc_array() for more information.
 438 *
 439 * Note that some internal context data is also allocated with GFP_KERNEL,
 440 * regardless of the gfp passed in.
 441 */
 442static inline void *kunit_kmalloc(struct kunit *test, size_t size, gfp_t gfp)
 443{
 444	return kunit_kmalloc_array(test, 1, size, gfp);
 445}
 446
 447/**
 448 * kunit_kfree() - Like kfree except for allocations managed by KUnit.
 449 * @test: The test case to which the resource belongs.
 450 * @ptr: The memory allocation to free.
 451 */
 452void kunit_kfree(struct kunit *test, const void *ptr);
 453
 454/**
 455 * kunit_kzalloc() - Just like kunit_kmalloc(), but zeroes the allocation.
 456 * @test: The test context object.
 457 * @size: The size in bytes of the desired memory.
 458 * @gfp: flags passed to underlying kmalloc().
 459 *
 460 * See kzalloc() and kunit_kmalloc_array() for more information.
 461 */
 462static inline void *kunit_kzalloc(struct kunit *test, size_t size, gfp_t gfp)
 463{
 464	return kunit_kmalloc(test, size, gfp | __GFP_ZERO);
 465}
 466
 467/**
 468 * kunit_kcalloc() - Just like kunit_kmalloc_array(), but zeroes the allocation.
 469 * @test: The test context object.
 470 * @n: number of elements.
 471 * @size: The size in bytes of the desired memory.
 472 * @gfp: flags passed to underlying kmalloc().
 473 *
 474 * See kcalloc() and kunit_kmalloc_array() for more information.
 475 */
 476static inline void *kunit_kcalloc(struct kunit *test, size_t n, size_t size, gfp_t gfp)
 477{
 478	return kunit_kmalloc_array(test, n, size, gfp | __GFP_ZERO);
 479}
 480
 481void kunit_cleanup(struct kunit *test);
 482
 483void __printf(2, 3) kunit_log_append(struct string_stream *log, const char *fmt, ...);
 484
 485/**
 486 * kunit_mark_skipped() - Marks @test_or_suite as skipped
 487 *
 488 * @test_or_suite: The test context object.
 489 * @fmt:  A printk() style format string.
 490 *
 491 * Marks the test as skipped. @fmt is given output as the test status
 492 * comment, typically the reason the test was skipped.
 493 *
 494 * Test execution continues after kunit_mark_skipped() is called.
 495 */
 496#define kunit_mark_skipped(test_or_suite, fmt, ...)			\
 497	do {								\
 498		WRITE_ONCE((test_or_suite)->status, KUNIT_SKIPPED);	\
 499		scnprintf((test_or_suite)->status_comment,		\
 500			  KUNIT_STATUS_COMMENT_SIZE,			\
 501			  fmt, ##__VA_ARGS__);				\
 502	} while (0)
 503
 504/**
 505 * kunit_skip() - Marks @test_or_suite as skipped
 506 *
 507 * @test_or_suite: The test context object.
 508 * @fmt:  A printk() style format string.
 509 *
 510 * Skips the test. @fmt is given output as the test status
 511 * comment, typically the reason the test was skipped.
 512 *
 513 * Test execution is halted after kunit_skip() is called.
 514 */
 515#define kunit_skip(test_or_suite, fmt, ...)				\
 516	do {								\
 517		kunit_mark_skipped((test_or_suite), fmt, ##__VA_ARGS__);\
 518		kunit_try_catch_throw(&((test_or_suite)->try_catch));	\
 519	} while (0)
 520
 521/*
 522 * printk and log to per-test or per-suite log buffer.  Logging only done
 523 * if CONFIG_KUNIT_DEBUGFS is 'y'; if it is 'n', no log is allocated/used.
 524 */
 525#define kunit_log(lvl, test_or_suite, fmt, ...)				\
 526	do {								\
 527		printk(lvl fmt, ##__VA_ARGS__);				\
 528		kunit_log_append((test_or_suite)->log,	fmt,		\
 529				 ##__VA_ARGS__);			\
 530	} while (0)
 531
 532#define kunit_printk(lvl, test, fmt, ...)				\
 533	kunit_log(lvl, test, KUNIT_SUBTEST_INDENT "# %s: " fmt,		\
 534		  (test)->name,	##__VA_ARGS__)
 535
 536/**
 537 * kunit_info() - Prints an INFO level message associated with @test.
 538 *
 539 * @test: The test context object.
 540 * @fmt:  A printk() style format string.
 541 *
 542 * Prints an info level message associated with the test suite being run.
 543 * Takes a variable number of format parameters just like printk().
 544 */
 545#define kunit_info(test, fmt, ...) \
 546	kunit_printk(KERN_INFO, test, fmt, ##__VA_ARGS__)
 547
 548/**
 549 * kunit_warn() - Prints a WARN level message associated with @test.
 550 *
 551 * @test: The test context object.
 552 * @fmt:  A printk() style format string.
 553 *
 554 * Prints a warning level message.
 555 */
 556#define kunit_warn(test, fmt, ...) \
 557	kunit_printk(KERN_WARNING, test, fmt, ##__VA_ARGS__)
 558
 559/**
 560 * kunit_err() - Prints an ERROR level message associated with @test.
 561 *
 562 * @test: The test context object.
 563 * @fmt:  A printk() style format string.
 564 *
 565 * Prints an error level message.
 566 */
 567#define kunit_err(test, fmt, ...) \
 568	kunit_printk(KERN_ERR, test, fmt, ##__VA_ARGS__)
 569
 570/**
 571 * KUNIT_SUCCEED() - A no-op expectation. Only exists for code clarity.
 572 * @test: The test context object.
 573 *
 574 * The opposite of KUNIT_FAIL(), it is an expectation that cannot fail. In other
 575 * words, it does nothing and only exists for code clarity. See
 576 * KUNIT_EXPECT_TRUE() for more information.
 577 */
 578#define KUNIT_SUCCEED(test) do {} while (0)
 579
 580void __noreturn __kunit_abort(struct kunit *test);
 581
 582void __kunit_do_failed_assertion(struct kunit *test,
 583			       const struct kunit_loc *loc,
 584			       enum kunit_assert_type type,
 585			       const struct kunit_assert *assert,
 586			       assert_format_t assert_format,
 587			       const char *fmt, ...);
 588
 589#define _KUNIT_FAILED(test, assert_type, assert_class, assert_format, INITIALIZER, fmt, ...) do { \
 590	static const struct kunit_loc __loc = KUNIT_CURRENT_LOC;	       \
 591	const struct assert_class __assertion = INITIALIZER;		       \
 592	__kunit_do_failed_assertion(test,				       \
 593				    &__loc,				       \
 594				    assert_type,			       \
 595				    &__assertion.assert,		       \
 596				    assert_format,			       \
 597				    fmt,				       \
 598				    ##__VA_ARGS__);			       \
 599	if (assert_type == KUNIT_ASSERTION)				       \
 600		__kunit_abort(test);					       \
 601} while (0)
 602
 603
 604#define KUNIT_FAIL_ASSERTION(test, assert_type, fmt, ...)		       \
 605	_KUNIT_FAILED(test,						       \
 606		      assert_type,					       \
 607		      kunit_fail_assert,				       \
 608		      kunit_fail_assert_format,				       \
 609		      {},						       \
 610		      fmt,						       \
 611		      ##__VA_ARGS__)
 612
 613/**
 614 * KUNIT_FAIL() - Always causes a test to fail when evaluated.
 615 * @test: The test context object.
 616 * @fmt: an informational message to be printed when the assertion is made.
 617 * @...: string format arguments.
 618 *
 619 * The opposite of KUNIT_SUCCEED(), it is an expectation that always fails. In
 620 * other words, it always results in a failed expectation, and consequently
 621 * always causes the test case to fail when evaluated. See KUNIT_EXPECT_TRUE()
 622 * for more information.
 623 */
 624#define KUNIT_FAIL(test, fmt, ...)					       \
 625	KUNIT_FAIL_ASSERTION(test,					       \
 626			     KUNIT_EXPECTATION,				       \
 627			     fmt,					       \
 628			     ##__VA_ARGS__)
 629
 630/* Helper to safely pass around an initializer list to other macros. */
 631#define KUNIT_INIT_ASSERT(initializers...) { initializers }
 632
 633#define KUNIT_UNARY_ASSERTION(test,					       \
 634			      assert_type,				       \
 635			      condition_,				       \
 636			      expected_true_,				       \
 637			      fmt,					       \
 638			      ...)					       \
 639do {									       \
 640	if (likely(!!(condition_) == !!expected_true_))			       \
 641		break;							       \
 642									       \
 643	_KUNIT_FAILED(test,						       \
 644		      assert_type,					       \
 645		      kunit_unary_assert,				       \
 646		      kunit_unary_assert_format,			       \
 647		      KUNIT_INIT_ASSERT(.condition = #condition_,	       \
 648					.expected_true = expected_true_),      \
 649		      fmt,						       \
 650		      ##__VA_ARGS__);					       \
 651} while (0)
 652
 653#define KUNIT_TRUE_MSG_ASSERTION(test, assert_type, condition, fmt, ...)       \
 654	KUNIT_UNARY_ASSERTION(test,					       \
 655			      assert_type,				       \
 656			      condition,				       \
 657			      true,					       \
 658			      fmt,					       \
 659			      ##__VA_ARGS__)
 660
 661#define KUNIT_FALSE_MSG_ASSERTION(test, assert_type, condition, fmt, ...)      \
 662	KUNIT_UNARY_ASSERTION(test,					       \
 663			      assert_type,				       \
 664			      condition,				       \
 665			      false,					       \
 666			      fmt,					       \
 667			      ##__VA_ARGS__)
 668
 669/*
 670 * A factory macro for defining the assertions and expectations for the basic
 671 * comparisons defined for the built in types.
 672 *
 673 * Unfortunately, there is no common type that all types can be promoted to for
 674 * which all the binary operators behave the same way as for the actual types
 675 * (for example, there is no type that long long and unsigned long long can
 676 * both be cast to where the comparison result is preserved for all values). So
 677 * the best we can do is do the comparison in the original types and then coerce
 678 * everything to long long for printing; this way, the comparison behaves
 679 * correctly and the printed out value usually makes sense without
 680 * interpretation, but can always be interpreted to figure out the actual
 681 * value.
 682 */
 683#define KUNIT_BASE_BINARY_ASSERTION(test,				       \
 684				    assert_class,			       \
 685				    format_func,			       \
 686				    assert_type,			       \
 687				    left,				       \
 688				    op,					       \
 689				    right,				       \
 690				    fmt,				       \
 691				    ...)				       \
 692do {									       \
 693	const typeof(left) __left = (left);				       \
 694	const typeof(right) __right = (right);				       \
 695	static const struct kunit_binary_assert_text __text = {		       \
 696		.operation = #op,					       \
 697		.left_text = #left,					       \
 698		.right_text = #right,					       \
 699	};								       \
 700									       \
 701	if (likely(__left op __right))					       \
 702		break;							       \
 703									       \
 704	_KUNIT_FAILED(test,						       \
 705		      assert_type,					       \
 706		      assert_class,					       \
 707		      format_func,					       \
 708		      KUNIT_INIT_ASSERT(.text = &__text,		       \
 709					.left_value = __left,		       \
 710					.right_value = __right),	       \
 711		      fmt,						       \
 712		      ##__VA_ARGS__);					       \
 713} while (0)
 714
 715#define KUNIT_BINARY_INT_ASSERTION(test,				       \
 716				   assert_type,				       \
 717				   left,				       \
 718				   op,					       \
 719				   right,				       \
 720				   fmt,					       \
 721				    ...)				       \
 722	KUNIT_BASE_BINARY_ASSERTION(test,				       \
 723				    kunit_binary_assert,		       \
 724				    kunit_binary_assert_format,		       \
 725				    assert_type,			       \
 726				    left, op, right,			       \
 727				    fmt,				       \
 728				    ##__VA_ARGS__)
 729
 730#define KUNIT_BINARY_PTR_ASSERTION(test,				       \
 731				   assert_type,				       \
 732				   left,				       \
 733				   op,					       \
 734				   right,				       \
 735				   fmt,					       \
 736				    ...)				       \
 737	KUNIT_BASE_BINARY_ASSERTION(test,				       \
 738				    kunit_binary_ptr_assert,		       \
 739				    kunit_binary_ptr_assert_format,	       \
 740				    assert_type,			       \
 741				    left, op, right,			       \
 742				    fmt,				       \
 743				    ##__VA_ARGS__)
 744
 745#define KUNIT_BINARY_STR_ASSERTION(test,				       \
 746				   assert_type,				       \
 747				   left,				       \
 748				   op,					       \
 749				   right,				       \
 750				   fmt,					       \
 751				   ...)					       \
 752do {									       \
 753	const char *__left = (left);					       \
 754	const char *__right = (right);					       \
 755	static const struct kunit_binary_assert_text __text = {		       \
 756		.operation = #op,					       \
 757		.left_text = #left,					       \
 758		.right_text = #right,					       \
 759	};								       \
 760									       \
 761	if (likely((__left) && (__right) && (strcmp(__left, __right) op 0)))   \
 762		break;							       \
 763									       \
 764									       \
 765	_KUNIT_FAILED(test,						       \
 766		      assert_type,					       \
 767		      kunit_binary_str_assert,				       \
 768		      kunit_binary_str_assert_format,			       \
 769		      KUNIT_INIT_ASSERT(.text = &__text,		       \
 770					.left_value = __left,		       \
 771					.right_value = __right),	       \
 772		      fmt,						       \
 773		      ##__VA_ARGS__);					       \
 774} while (0)
 775
 776#define KUNIT_MEM_ASSERTION(test,					       \
 777			    assert_type,				       \
 778			    left,					       \
 779			    op,						       \
 780			    right,					       \
 781			    size_,					       \
 782			    fmt,					       \
 783			    ...)					       \
 784do {									       \
 785	const void *__left = (left);					       \
 786	const void *__right = (right);					       \
 787	const size_t __size = (size_);					       \
 788	static const struct kunit_binary_assert_text __text = {		       \
 789		.operation = #op,					       \
 790		.left_text = #left,					       \
 791		.right_text = #right,					       \
 792	};								       \
 793									       \
 794	if (likely(__left && __right))					       \
 795		if (likely(memcmp(__left, __right, __size) op 0))	       \
 796			break;						       \
 797									       \
 798	_KUNIT_FAILED(test,						       \
 799		      assert_type,					       \
 800		      kunit_mem_assert,					       \
 801		      kunit_mem_assert_format,				       \
 802		      KUNIT_INIT_ASSERT(.text = &__text,		       \
 803					.left_value = __left,		       \
 804					.right_value = __right,		       \
 805					.size = __size),		       \
 806		      fmt,						       \
 807		      ##__VA_ARGS__);					       \
 808} while (0)
 809
 810#define KUNIT_PTR_NOT_ERR_OR_NULL_MSG_ASSERTION(test,			       \
 811						assert_type,		       \
 812						ptr,			       \
 813						fmt,			       \
 814						...)			       \
 815do {									       \
 816	const typeof(ptr) __ptr = (ptr);				       \
 817									       \
 818	if (!IS_ERR_OR_NULL(__ptr))					       \
 819		break;							       \
 820									       \
 821	_KUNIT_FAILED(test,						       \
 822		      assert_type,					       \
 823		      kunit_ptr_not_err_assert,				       \
 824		      kunit_ptr_not_err_assert_format,			       \
 825		      KUNIT_INIT_ASSERT(.text = #ptr, .value = __ptr),	       \
 826		      fmt,						       \
 827		      ##__VA_ARGS__);					       \
 828} while (0)
 829
 830/**
 831 * KUNIT_EXPECT_TRUE() - Causes a test failure when the expression is not true.
 832 * @test: The test context object.
 833 * @condition: an arbitrary boolean expression. The test fails when this does
 834 * not evaluate to true.
 835 *
 836 * This and expectations of the form `KUNIT_EXPECT_*` will cause the test case
 837 * to fail when the specified condition is not met; however, it will not prevent
 838 * the test case from continuing to run; this is otherwise known as an
 839 * *expectation failure*.
 840 */
 841#define KUNIT_EXPECT_TRUE(test, condition) \
 842	KUNIT_EXPECT_TRUE_MSG(test, condition, NULL)
 843
 844#define KUNIT_EXPECT_TRUE_MSG(test, condition, fmt, ...)		       \
 845	KUNIT_TRUE_MSG_ASSERTION(test,					       \
 846				 KUNIT_EXPECTATION,			       \
 847				 condition,				       \
 848				 fmt,					       \
 849				 ##__VA_ARGS__)
 850
 851/**
 852 * KUNIT_EXPECT_FALSE() - Makes a test failure when the expression is not false.
 853 * @test: The test context object.
 854 * @condition: an arbitrary boolean expression. The test fails when this does
 855 * not evaluate to false.
 856 *
 857 * Sets an expectation that @condition evaluates to false. See
 858 * KUNIT_EXPECT_TRUE() for more information.
 859 */
 860#define KUNIT_EXPECT_FALSE(test, condition) \
 861	KUNIT_EXPECT_FALSE_MSG(test, condition, NULL)
 862
 863#define KUNIT_EXPECT_FALSE_MSG(test, condition, fmt, ...)		       \
 864	KUNIT_FALSE_MSG_ASSERTION(test,					       \
 865				  KUNIT_EXPECTATION,			       \
 866				  condition,				       \
 867				  fmt,					       \
 868				  ##__VA_ARGS__)
 869
 870/**
 871 * KUNIT_EXPECT_EQ() - Sets an expectation that @left and @right are equal.
 872 * @test: The test context object.
 873 * @left: an arbitrary expression that evaluates to a primitive C type.
 874 * @right: an arbitrary expression that evaluates to a primitive C type.
 875 *
 876 * Sets an expectation that the values that @left and @right evaluate to are
 877 * equal. This is semantically equivalent to
 878 * KUNIT_EXPECT_TRUE(@test, (@left) == (@right)). See KUNIT_EXPECT_TRUE() for
 879 * more information.
 880 */
 881#define KUNIT_EXPECT_EQ(test, left, right) \
 882	KUNIT_EXPECT_EQ_MSG(test, left, right, NULL)
 883
 884#define KUNIT_EXPECT_EQ_MSG(test, left, right, fmt, ...)		       \
 885	KUNIT_BINARY_INT_ASSERTION(test,				       \
 886				   KUNIT_EXPECTATION,			       \
 887				   left, ==, right,			       \
 888				   fmt,					       \
 889				    ##__VA_ARGS__)
 890
 891/**
 892 * KUNIT_EXPECT_PTR_EQ() - Expects that pointers @left and @right are equal.
 893 * @test: The test context object.
 894 * @left: an arbitrary expression that evaluates to a pointer.
 895 * @right: an arbitrary expression that evaluates to a pointer.
 896 *
 897 * Sets an expectation that the values that @left and @right evaluate to are
 898 * equal. This is semantically equivalent to
 899 * KUNIT_EXPECT_TRUE(@test, (@left) == (@right)). See KUNIT_EXPECT_TRUE() for
 900 * more information.
 901 */
 902#define KUNIT_EXPECT_PTR_EQ(test, left, right)				       \
 903	KUNIT_EXPECT_PTR_EQ_MSG(test, left, right, NULL)
 904
 905#define KUNIT_EXPECT_PTR_EQ_MSG(test, left, right, fmt, ...)		       \
 906	KUNIT_BINARY_PTR_ASSERTION(test,				       \
 907				   KUNIT_EXPECTATION,			       \
 908				   left, ==, right,			       \
 909				   fmt,					       \
 910				   ##__VA_ARGS__)
 911
 912/**
 913 * KUNIT_EXPECT_NE() - An expectation that @left and @right are not equal.
 914 * @test: The test context object.
 915 * @left: an arbitrary expression that evaluates to a primitive C type.
 916 * @right: an arbitrary expression that evaluates to a primitive C type.
 917 *
 918 * Sets an expectation that the values that @left and @right evaluate to are not
 919 * equal. This is semantically equivalent to
 920 * KUNIT_EXPECT_TRUE(@test, (@left) != (@right)). See KUNIT_EXPECT_TRUE() for
 921 * more information.
 922 */
 923#define KUNIT_EXPECT_NE(test, left, right) \
 924	KUNIT_EXPECT_NE_MSG(test, left, right, NULL)
 925
 926#define KUNIT_EXPECT_NE_MSG(test, left, right, fmt, ...)		       \
 927	KUNIT_BINARY_INT_ASSERTION(test,				       \
 928				   KUNIT_EXPECTATION,			       \
 929				   left, !=, right,			       \
 930				   fmt,					       \
 931				    ##__VA_ARGS__)
 932
 933/**
 934 * KUNIT_EXPECT_PTR_NE() - Expects that pointers @left and @right are not equal.
 935 * @test: The test context object.
 936 * @left: an arbitrary expression that evaluates to a pointer.
 937 * @right: an arbitrary expression that evaluates to a pointer.
 938 *
 939 * Sets an expectation that the values that @left and @right evaluate to are not
 940 * equal. This is semantically equivalent to
 941 * KUNIT_EXPECT_TRUE(@test, (@left) != (@right)). See KUNIT_EXPECT_TRUE() for
 942 * more information.
 943 */
 944#define KUNIT_EXPECT_PTR_NE(test, left, right)				       \
 945	KUNIT_EXPECT_PTR_NE_MSG(test, left, right, NULL)
 946
 947#define KUNIT_EXPECT_PTR_NE_MSG(test, left, right, fmt, ...)		       \
 948	KUNIT_BINARY_PTR_ASSERTION(test,				       \
 949				   KUNIT_EXPECTATION,			       \
 950				   left, !=, right,			       \
 951				   fmt,					       \
 952				   ##__VA_ARGS__)
 953
 954/**
 955 * KUNIT_EXPECT_LT() - An expectation that @left is less than @right.
 956 * @test: The test context object.
 957 * @left: an arbitrary expression that evaluates to a primitive C type.
 958 * @right: an arbitrary expression that evaluates to a primitive C type.
 959 *
 960 * Sets an expectation that the value that @left evaluates to is less than the
 961 * value that @right evaluates to. This is semantically equivalent to
 962 * KUNIT_EXPECT_TRUE(@test, (@left) < (@right)). See KUNIT_EXPECT_TRUE() for
 963 * more information.
 964 */
 965#define KUNIT_EXPECT_LT(test, left, right) \
 966	KUNIT_EXPECT_LT_MSG(test, left, right, NULL)
 967
 968#define KUNIT_EXPECT_LT_MSG(test, left, right, fmt, ...)		       \
 969	KUNIT_BINARY_INT_ASSERTION(test,				       \
 970				   KUNIT_EXPECTATION,			       \
 971				   left, <, right,			       \
 972				   fmt,					       \
 973				    ##__VA_ARGS__)
 974
 975/**
 976 * KUNIT_EXPECT_LE() - Expects that @left is less than or equal to @right.
 977 * @test: The test context object.
 978 * @left: an arbitrary expression that evaluates to a primitive C type.
 979 * @right: an arbitrary expression that evaluates to a primitive C type.
 980 *
 981 * Sets an expectation that the value that @left evaluates to is less than or
 982 * equal to the value that @right evaluates to. Semantically this is equivalent
 983 * to KUNIT_EXPECT_TRUE(@test, (@left) <= (@right)). See KUNIT_EXPECT_TRUE() for
 984 * more information.
 985 */
 986#define KUNIT_EXPECT_LE(test, left, right) \
 987	KUNIT_EXPECT_LE_MSG(test, left, right, NULL)
 988
 989#define KUNIT_EXPECT_LE_MSG(test, left, right, fmt, ...)		       \
 990	KUNIT_BINARY_INT_ASSERTION(test,				       \
 991				   KUNIT_EXPECTATION,			       \
 992				   left, <=, right,			       \
 993				   fmt,					       \
 994				    ##__VA_ARGS__)
 995
 996/**
 997 * KUNIT_EXPECT_GT() - An expectation that @left is greater than @right.
 998 * @test: The test context object.
 999 * @left: an arbitrary expression that evaluates to a primitive C type.
1000 * @right: an arbitrary expression that evaluates to a primitive C type.
1001 *
1002 * Sets an expectation that the value that @left evaluates to is greater than
1003 * the value that @right evaluates to. This is semantically equivalent to
1004 * KUNIT_EXPECT_TRUE(@test, (@left) > (@right)). See KUNIT_EXPECT_TRUE() for
1005 * more information.
1006 */
1007#define KUNIT_EXPECT_GT(test, left, right) \
1008	KUNIT_EXPECT_GT_MSG(test, left, right, NULL)
1009
1010#define KUNIT_EXPECT_GT_MSG(test, left, right, fmt, ...)		       \
1011	KUNIT_BINARY_INT_ASSERTION(test,				       \
1012				   KUNIT_EXPECTATION,			       \
1013				   left, >, right,			       \
1014				   fmt,					       \
1015				    ##__VA_ARGS__)
1016
1017/**
1018 * KUNIT_EXPECT_GE() - Expects that @left is greater than or equal to @right.
1019 * @test: The test context object.
1020 * @left: an arbitrary expression that evaluates to a primitive C type.
1021 * @right: an arbitrary expression that evaluates to a primitive C type.
1022 *
1023 * Sets an expectation that the value that @left evaluates to is greater than
1024 * the value that @right evaluates to. This is semantically equivalent to
1025 * KUNIT_EXPECT_TRUE(@test, (@left) >= (@right)). See KUNIT_EXPECT_TRUE() for
1026 * more information.
1027 */
1028#define KUNIT_EXPECT_GE(test, left, right) \
1029	KUNIT_EXPECT_GE_MSG(test, left, right, NULL)
1030
1031#define KUNIT_EXPECT_GE_MSG(test, left, right, fmt, ...)		       \
1032	KUNIT_BINARY_INT_ASSERTION(test,				       \
1033				   KUNIT_EXPECTATION,			       \
1034				   left, >=, right,			       \
1035				   fmt,					       \
1036				    ##__VA_ARGS__)
1037
1038/**
1039 * KUNIT_EXPECT_STREQ() - Expects that strings @left and @right are equal.
1040 * @test: The test context object.
1041 * @left: an arbitrary expression that evaluates to a null terminated string.
1042 * @right: an arbitrary expression that evaluates to a null terminated string.
1043 *
1044 * Sets an expectation that the values that @left and @right evaluate to are
1045 * equal. This is semantically equivalent to
1046 * KUNIT_EXPECT_TRUE(@test, !strcmp((@left), (@right))). See KUNIT_EXPECT_TRUE()
1047 * for more information.
1048 */
1049#define KUNIT_EXPECT_STREQ(test, left, right) \
1050	KUNIT_EXPECT_STREQ_MSG(test, left, right, NULL)
1051
1052#define KUNIT_EXPECT_STREQ_MSG(test, left, right, fmt, ...)		       \
1053	KUNIT_BINARY_STR_ASSERTION(test,				       \
1054				   KUNIT_EXPECTATION,			       \
1055				   left, ==, right,			       \
1056				   fmt,					       \
1057				   ##__VA_ARGS__)
1058
1059/**
1060 * KUNIT_EXPECT_STRNEQ() - Expects that strings @left and @right are not equal.
1061 * @test: The test context object.
1062 * @left: an arbitrary expression that evaluates to a null terminated string.
1063 * @right: an arbitrary expression that evaluates to a null terminated string.
1064 *
1065 * Sets an expectation that the values that @left and @right evaluate to are
1066 * not equal. This is semantically equivalent to
1067 * KUNIT_EXPECT_TRUE(@test, strcmp((@left), (@right))). See KUNIT_EXPECT_TRUE()
1068 * for more information.
1069 */
1070#define KUNIT_EXPECT_STRNEQ(test, left, right) \
1071	KUNIT_EXPECT_STRNEQ_MSG(test, left, right, NULL)
1072
1073#define KUNIT_EXPECT_STRNEQ_MSG(test, left, right, fmt, ...)		       \
1074	KUNIT_BINARY_STR_ASSERTION(test,				       \
1075				   KUNIT_EXPECTATION,			       \
1076				   left, !=, right,			       \
1077				   fmt,					       \
1078				   ##__VA_ARGS__)
1079
1080/**
1081 * KUNIT_EXPECT_MEMEQ() - Expects that the first @size bytes of @left and @right are equal.
1082 * @test: The test context object.
1083 * @left: An arbitrary expression that evaluates to the specified size.
1084 * @right: An arbitrary expression that evaluates to the specified size.
1085 * @size: Number of bytes compared.
1086 *
1087 * Sets an expectation that the values that @left and @right evaluate to are
1088 * equal. This is semantically equivalent to
1089 * KUNIT_EXPECT_TRUE(@test, !memcmp((@left), (@right), (@size))). See
1090 * KUNIT_EXPECT_TRUE() for more information.
1091 *
1092 * Although this expectation works for any memory block, it is not recommended
1093 * for comparing more structured data, such as structs. This expectation is
1094 * recommended for comparing, for example, data arrays.
1095 */
1096#define KUNIT_EXPECT_MEMEQ(test, left, right, size) \
1097	KUNIT_EXPECT_MEMEQ_MSG(test, left, right, size, NULL)
1098
1099#define KUNIT_EXPECT_MEMEQ_MSG(test, left, right, size, fmt, ...)	       \
1100	KUNIT_MEM_ASSERTION(test,					       \
1101			    KUNIT_EXPECTATION,				       \
1102			    left, ==, right,				       \
1103			    size,					       \
1104			    fmt,					       \
1105			    ##__VA_ARGS__)
1106
1107/**
1108 * KUNIT_EXPECT_MEMNEQ() - Expects that the first @size bytes of @left and @right are not equal.
1109 * @test: The test context object.
1110 * @left: An arbitrary expression that evaluates to the specified size.
1111 * @right: An arbitrary expression that evaluates to the specified size.
1112 * @size: Number of bytes compared.
1113 *
1114 * Sets an expectation that the values that @left and @right evaluate to are
1115 * not equal. This is semantically equivalent to
1116 * KUNIT_EXPECT_TRUE(@test, memcmp((@left), (@right), (@size))). See
1117 * KUNIT_EXPECT_TRUE() for more information.
1118 *
1119 * Although this expectation works for any memory block, it is not recommended
1120 * for comparing more structured data, such as structs. This expectation is
1121 * recommended for comparing, for example, data arrays.
1122 */
1123#define KUNIT_EXPECT_MEMNEQ(test, left, right, size) \
1124	KUNIT_EXPECT_MEMNEQ_MSG(test, left, right, size, NULL)
1125
1126#define KUNIT_EXPECT_MEMNEQ_MSG(test, left, right, size, fmt, ...)	       \
1127	KUNIT_MEM_ASSERTION(test,					       \
1128			    KUNIT_EXPECTATION,				       \
1129			    left, !=, right,				       \
1130			    size,					       \
1131			    fmt,					       \
1132			    ##__VA_ARGS__)
1133
1134/**
1135 * KUNIT_EXPECT_NULL() - Expects that @ptr is null.
1136 * @test: The test context object.
1137 * @ptr: an arbitrary pointer.
1138 *
1139 * Sets an expectation that the value that @ptr evaluates to is null. This is
1140 * semantically equivalent to KUNIT_EXPECT_PTR_EQ(@test, ptr, NULL).
1141 * See KUNIT_EXPECT_TRUE() for more information.
1142 */
1143#define KUNIT_EXPECT_NULL(test, ptr)				               \
1144	KUNIT_EXPECT_NULL_MSG(test,					       \
1145			      ptr,					       \
1146			      NULL)
1147
1148#define KUNIT_EXPECT_NULL_MSG(test, ptr, fmt, ...)	                       \
1149	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1150				   KUNIT_EXPECTATION,			       \
1151				   ptr, ==, NULL,			       \
1152				   fmt,					       \
1153				   ##__VA_ARGS__)
1154
1155/**
1156 * KUNIT_EXPECT_NOT_NULL() - Expects that @ptr is not null.
1157 * @test: The test context object.
1158 * @ptr: an arbitrary pointer.
1159 *
1160 * Sets an expectation that the value that @ptr evaluates to is not null. This
1161 * is semantically equivalent to KUNIT_EXPECT_PTR_NE(@test, ptr, NULL).
1162 * See KUNIT_EXPECT_TRUE() for more information.
1163 */
1164#define KUNIT_EXPECT_NOT_NULL(test, ptr)			               \
1165	KUNIT_EXPECT_NOT_NULL_MSG(test,					       \
1166				  ptr,					       \
1167				  NULL)
1168
1169#define KUNIT_EXPECT_NOT_NULL_MSG(test, ptr, fmt, ...)	                       \
1170	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1171				   KUNIT_EXPECTATION,			       \
1172				   ptr, !=, NULL,			       \
1173				   fmt,					       \
1174				   ##__VA_ARGS__)
1175
1176/**
1177 * KUNIT_EXPECT_NOT_ERR_OR_NULL() - Expects that @ptr is not null and not err.
1178 * @test: The test context object.
1179 * @ptr: an arbitrary pointer.
1180 *
1181 * Sets an expectation that the value that @ptr evaluates to is not null and not
1182 * an errno stored in a pointer. This is semantically equivalent to
1183 * KUNIT_EXPECT_TRUE(@test, !IS_ERR_OR_NULL(@ptr)). See KUNIT_EXPECT_TRUE() for
1184 * more information.
1185 */
1186#define KUNIT_EXPECT_NOT_ERR_OR_NULL(test, ptr) \
1187	KUNIT_EXPECT_NOT_ERR_OR_NULL_MSG(test, ptr, NULL)
1188
1189#define KUNIT_EXPECT_NOT_ERR_OR_NULL_MSG(test, ptr, fmt, ...)		       \
1190	KUNIT_PTR_NOT_ERR_OR_NULL_MSG_ASSERTION(test,			       \
1191						KUNIT_EXPECTATION,	       \
1192						ptr,			       \
1193						fmt,			       \
1194						##__VA_ARGS__)
1195
1196#define KUNIT_ASSERT_FAILURE(test, fmt, ...) \
1197	KUNIT_FAIL_ASSERTION(test, KUNIT_ASSERTION, fmt, ##__VA_ARGS__)
1198
1199/**
1200 * KUNIT_ASSERT_TRUE() - Sets an assertion that @condition is true.
1201 * @test: The test context object.
1202 * @condition: an arbitrary boolean expression. The test fails and aborts when
1203 * this does not evaluate to true.
1204 *
1205 * This and assertions of the form `KUNIT_ASSERT_*` will cause the test case to
1206 * fail *and immediately abort* when the specified condition is not met. Unlike
1207 * an expectation failure, it will prevent the test case from continuing to run;
1208 * this is otherwise known as an *assertion failure*.
1209 */
1210#define KUNIT_ASSERT_TRUE(test, condition) \
1211	KUNIT_ASSERT_TRUE_MSG(test, condition, NULL)
1212
1213#define KUNIT_ASSERT_TRUE_MSG(test, condition, fmt, ...)		       \
1214	KUNIT_TRUE_MSG_ASSERTION(test,					       \
1215				 KUNIT_ASSERTION,			       \
1216				 condition,				       \
1217				 fmt,					       \
1218				 ##__VA_ARGS__)
1219
1220/**
1221 * KUNIT_ASSERT_FALSE() - Sets an assertion that @condition is false.
1222 * @test: The test context object.
1223 * @condition: an arbitrary boolean expression.
1224 *
1225 * Sets an assertion that the value that @condition evaluates to is false. This
1226 * is the same as KUNIT_EXPECT_FALSE(), except it causes an assertion failure
1227 * (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1228 */
1229#define KUNIT_ASSERT_FALSE(test, condition) \
1230	KUNIT_ASSERT_FALSE_MSG(test, condition, NULL)
1231
1232#define KUNIT_ASSERT_FALSE_MSG(test, condition, fmt, ...)		       \
1233	KUNIT_FALSE_MSG_ASSERTION(test,					       \
1234				  KUNIT_ASSERTION,			       \
1235				  condition,				       \
1236				  fmt,					       \
1237				  ##__VA_ARGS__)
1238
1239/**
1240 * KUNIT_ASSERT_EQ() - Sets an assertion that @left and @right are equal.
1241 * @test: The test context object.
1242 * @left: an arbitrary expression that evaluates to a primitive C type.
1243 * @right: an arbitrary expression that evaluates to a primitive C type.
1244 *
1245 * Sets an assertion that the values that @left and @right evaluate to are
1246 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1247 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1248 */
1249#define KUNIT_ASSERT_EQ(test, left, right) \
1250	KUNIT_ASSERT_EQ_MSG(test, left, right, NULL)
1251
1252#define KUNIT_ASSERT_EQ_MSG(test, left, right, fmt, ...)		       \
1253	KUNIT_BINARY_INT_ASSERTION(test,				       \
1254				   KUNIT_ASSERTION,			       \
1255				   left, ==, right,			       \
1256				   fmt,					       \
1257				    ##__VA_ARGS__)
1258
1259/**
1260 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1261 * @test: The test context object.
1262 * @left: an arbitrary expression that evaluates to a pointer.
1263 * @right: an arbitrary expression that evaluates to a pointer.
1264 *
1265 * Sets an assertion that the values that @left and @right evaluate to are
1266 * equal. This is the same as KUNIT_EXPECT_EQ(), except it causes an assertion
1267 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1268 */
1269#define KUNIT_ASSERT_PTR_EQ(test, left, right) \
1270	KUNIT_ASSERT_PTR_EQ_MSG(test, left, right, NULL)
1271
1272#define KUNIT_ASSERT_PTR_EQ_MSG(test, left, right, fmt, ...)		       \
1273	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1274				   KUNIT_ASSERTION,			       \
1275				   left, ==, right,			       \
1276				   fmt,					       \
1277				   ##__VA_ARGS__)
1278
1279/**
1280 * KUNIT_ASSERT_NE() - An assertion that @left and @right are not equal.
1281 * @test: The test context object.
1282 * @left: an arbitrary expression that evaluates to a primitive C type.
1283 * @right: an arbitrary expression that evaluates to a primitive C type.
1284 *
1285 * Sets an assertion that the values that @left and @right evaluate to are not
1286 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1287 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1288 */
1289#define KUNIT_ASSERT_NE(test, left, right) \
1290	KUNIT_ASSERT_NE_MSG(test, left, right, NULL)
1291
1292#define KUNIT_ASSERT_NE_MSG(test, left, right, fmt, ...)		       \
1293	KUNIT_BINARY_INT_ASSERTION(test,				       \
1294				   KUNIT_ASSERTION,			       \
1295				   left, !=, right,			       \
1296				   fmt,					       \
1297				    ##__VA_ARGS__)
1298
1299/**
1300 * KUNIT_ASSERT_PTR_NE() - Asserts that pointers @left and @right are not equal.
1301 * KUNIT_ASSERT_PTR_EQ() - Asserts that pointers @left and @right are equal.
1302 * @test: The test context object.
1303 * @left: an arbitrary expression that evaluates to a pointer.
1304 * @right: an arbitrary expression that evaluates to a pointer.
1305 *
1306 * Sets an assertion that the values that @left and @right evaluate to are not
1307 * equal. This is the same as KUNIT_EXPECT_NE(), except it causes an assertion
1308 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1309 */
1310#define KUNIT_ASSERT_PTR_NE(test, left, right) \
1311	KUNIT_ASSERT_PTR_NE_MSG(test, left, right, NULL)
1312
1313#define KUNIT_ASSERT_PTR_NE_MSG(test, left, right, fmt, ...)		       \
1314	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1315				   KUNIT_ASSERTION,			       \
1316				   left, !=, right,			       \
1317				   fmt,					       \
1318				   ##__VA_ARGS__)
1319/**
1320 * KUNIT_ASSERT_LT() - An assertion that @left is less than @right.
1321 * @test: The test context object.
1322 * @left: an arbitrary expression that evaluates to a primitive C type.
1323 * @right: an arbitrary expression that evaluates to a primitive C type.
1324 *
1325 * Sets an assertion that the value that @left evaluates to is less than the
1326 * value that @right evaluates to. This is the same as KUNIT_EXPECT_LT(), except
1327 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1328 * is not met.
1329 */
1330#define KUNIT_ASSERT_LT(test, left, right) \
1331	KUNIT_ASSERT_LT_MSG(test, left, right, NULL)
1332
1333#define KUNIT_ASSERT_LT_MSG(test, left, right, fmt, ...)		       \
1334	KUNIT_BINARY_INT_ASSERTION(test,				       \
1335				   KUNIT_ASSERTION,			       \
1336				   left, <, right,			       \
1337				   fmt,					       \
1338				    ##__VA_ARGS__)
1339/**
1340 * KUNIT_ASSERT_LE() - An assertion that @left is less than or equal to @right.
1341 * @test: The test context object.
1342 * @left: an arbitrary expression that evaluates to a primitive C type.
1343 * @right: an arbitrary expression that evaluates to a primitive C type.
1344 *
1345 * Sets an assertion that the value that @left evaluates to is less than or
1346 * equal to the value that @right evaluates to. This is the same as
1347 * KUNIT_EXPECT_LE(), except it causes an assertion failure (see
1348 * KUNIT_ASSERT_TRUE()) when the assertion is not met.
1349 */
1350#define KUNIT_ASSERT_LE(test, left, right) \
1351	KUNIT_ASSERT_LE_MSG(test, left, right, NULL)
1352
1353#define KUNIT_ASSERT_LE_MSG(test, left, right, fmt, ...)		       \
1354	KUNIT_BINARY_INT_ASSERTION(test,				       \
1355				   KUNIT_ASSERTION,			       \
1356				   left, <=, right,			       \
1357				   fmt,					       \
1358				    ##__VA_ARGS__)
1359
1360/**
1361 * KUNIT_ASSERT_GT() - An assertion that @left is greater than @right.
1362 * @test: The test context object.
1363 * @left: an arbitrary expression that evaluates to a primitive C type.
1364 * @right: an arbitrary expression that evaluates to a primitive C type.
1365 *
1366 * Sets an assertion that the value that @left evaluates to is greater than the
1367 * value that @right evaluates to. This is the same as KUNIT_EXPECT_GT(), except
1368 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1369 * is not met.
1370 */
1371#define KUNIT_ASSERT_GT(test, left, right) \
1372	KUNIT_ASSERT_GT_MSG(test, left, right, NULL)
1373
1374#define KUNIT_ASSERT_GT_MSG(test, left, right, fmt, ...)		       \
1375	KUNIT_BINARY_INT_ASSERTION(test,				       \
1376				   KUNIT_ASSERTION,			       \
1377				   left, >, right,			       \
1378				   fmt,					       \
1379				    ##__VA_ARGS__)
1380
1381/**
1382 * KUNIT_ASSERT_GE() - Assertion that @left is greater than or equal to @right.
1383 * @test: The test context object.
1384 * @left: an arbitrary expression that evaluates to a primitive C type.
1385 * @right: an arbitrary expression that evaluates to a primitive C type.
1386 *
1387 * Sets an assertion that the value that @left evaluates to is greater than the
1388 * value that @right evaluates to. This is the same as KUNIT_EXPECT_GE(), except
1389 * it causes an assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion
1390 * is not met.
1391 */
1392#define KUNIT_ASSERT_GE(test, left, right) \
1393	KUNIT_ASSERT_GE_MSG(test, left, right, NULL)
1394
1395#define KUNIT_ASSERT_GE_MSG(test, left, right, fmt, ...)		       \
1396	KUNIT_BINARY_INT_ASSERTION(test,				       \
1397				   KUNIT_ASSERTION,			       \
1398				   left, >=, right,			       \
1399				   fmt,					       \
1400				    ##__VA_ARGS__)
1401
1402/**
1403 * KUNIT_ASSERT_STREQ() - An assertion that strings @left and @right are equal.
1404 * @test: The test context object.
1405 * @left: an arbitrary expression that evaluates to a null terminated string.
1406 * @right: an arbitrary expression that evaluates to a null terminated string.
1407 *
1408 * Sets an assertion that the values that @left and @right evaluate to are
1409 * equal. This is the same as KUNIT_EXPECT_STREQ(), except it causes an
1410 * assertion failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1411 */
1412#define KUNIT_ASSERT_STREQ(test, left, right) \
1413	KUNIT_ASSERT_STREQ_MSG(test, left, right, NULL)
1414
1415#define KUNIT_ASSERT_STREQ_MSG(test, left, right, fmt, ...)		       \
1416	KUNIT_BINARY_STR_ASSERTION(test,				       \
1417				   KUNIT_ASSERTION,			       \
1418				   left, ==, right,			       \
1419				   fmt,					       \
1420				   ##__VA_ARGS__)
1421
1422/**
1423 * KUNIT_ASSERT_STRNEQ() - Expects that strings @left and @right are not equal.
1424 * @test: The test context object.
1425 * @left: an arbitrary expression that evaluates to a null terminated string.
1426 * @right: an arbitrary expression that evaluates to a null terminated string.
1427 *
1428 * Sets an expectation that the values that @left and @right evaluate to are
1429 * not equal. This is semantically equivalent to
1430 * KUNIT_ASSERT_TRUE(@test, strcmp((@left), (@right))). See KUNIT_ASSERT_TRUE()
1431 * for more information.
1432 */
1433#define KUNIT_ASSERT_STRNEQ(test, left, right) \
1434	KUNIT_ASSERT_STRNEQ_MSG(test, left, right, NULL)
1435
1436#define KUNIT_ASSERT_STRNEQ_MSG(test, left, right, fmt, ...)		       \
1437	KUNIT_BINARY_STR_ASSERTION(test,				       \
1438				   KUNIT_ASSERTION,			       \
1439				   left, !=, right,			       \
1440				   fmt,					       \
1441				   ##__VA_ARGS__)
1442
1443/**
1444 * KUNIT_ASSERT_NULL() - Asserts that pointers @ptr is null.
1445 * @test: The test context object.
1446 * @ptr: an arbitrary pointer.
1447 *
1448 * Sets an assertion that the values that @ptr evaluates to is null. This is
1449 * the same as KUNIT_EXPECT_NULL(), except it causes an assertion
1450 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1451 */
1452#define KUNIT_ASSERT_NULL(test, ptr) \
1453	KUNIT_ASSERT_NULL_MSG(test,					       \
1454			      ptr,					       \
1455			      NULL)
1456
1457#define KUNIT_ASSERT_NULL_MSG(test, ptr, fmt, ...) \
1458	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1459				   KUNIT_ASSERTION,			       \
1460				   ptr, ==, NULL,			       \
1461				   fmt,					       \
1462				   ##__VA_ARGS__)
1463
1464/**
1465 * KUNIT_ASSERT_NOT_NULL() - Asserts that pointers @ptr is not null.
1466 * @test: The test context object.
1467 * @ptr: an arbitrary pointer.
1468 *
1469 * Sets an assertion that the values that @ptr evaluates to is not null. This
1470 * is the same as KUNIT_EXPECT_NOT_NULL(), except it causes an assertion
1471 * failure (see KUNIT_ASSERT_TRUE()) when the assertion is not met.
1472 */
1473#define KUNIT_ASSERT_NOT_NULL(test, ptr) \
1474	KUNIT_ASSERT_NOT_NULL_MSG(test,					       \
1475				  ptr,					       \
1476				  NULL)
1477
1478#define KUNIT_ASSERT_NOT_NULL_MSG(test, ptr, fmt, ...) \
1479	KUNIT_BINARY_PTR_ASSERTION(test,				       \
1480				   KUNIT_ASSERTION,			       \
1481				   ptr, !=, NULL,			       \
1482				   fmt,					       \
1483				   ##__VA_ARGS__)
1484
1485/**
1486 * KUNIT_ASSERT_NOT_ERR_OR_NULL() - Assertion that @ptr is not null and not err.
1487 * @test: The test context object.
1488 * @ptr: an arbitrary pointer.
1489 *
1490 * Sets an assertion that the value that @ptr evaluates to is not null and not
1491 * an errno stored in a pointer. This is the same as
1492 * KUNIT_EXPECT_NOT_ERR_OR_NULL(), except it causes an assertion failure (see
1493 * KUNIT_ASSERT_TRUE()) when the assertion is not met.
1494 */
1495#define KUNIT_ASSERT_NOT_ERR_OR_NULL(test, ptr) \
1496	KUNIT_ASSERT_NOT_ERR_OR_NULL_MSG(test, ptr, NULL)
1497
1498#define KUNIT_ASSERT_NOT_ERR_OR_NULL_MSG(test, ptr, fmt, ...)		       \
1499	KUNIT_PTR_NOT_ERR_OR_NULL_MSG_ASSERTION(test,			       \
1500						KUNIT_ASSERTION,	       \
1501						ptr,			       \
1502						fmt,			       \
1503						##__VA_ARGS__)
1504
1505/**
1506 * KUNIT_ARRAY_PARAM() - Define test parameter generator from an array.
1507 * @name:  prefix for the test parameter generator function.
1508 * @array: array of test parameters.
1509 * @get_desc: function to convert param to description; NULL to use default
1510 *
1511 * Define function @name_gen_params which uses @array to generate parameters.
1512 */
1513#define KUNIT_ARRAY_PARAM(name, array, get_desc)						\
1514	static const void *name##_gen_params(const void *prev, char *desc)			\
1515	{											\
1516		typeof((array)[0]) *__next = prev ? ((typeof(__next)) prev) + 1 : (array);	\
1517		if (__next - (array) < ARRAY_SIZE((array))) {					\
1518			void (*__get_desc)(typeof(__next), char *) = get_desc;			\
1519			if (__get_desc)								\
1520				__get_desc(__next, desc);					\
1521			return __next;								\
1522		}										\
1523		return NULL;									\
1524	}
1525
1526/**
1527 * KUNIT_ARRAY_PARAM_DESC() - Define test parameter generator from an array.
1528 * @name:  prefix for the test parameter generator function.
1529 * @array: array of test parameters.
1530 * @desc_member: structure member from array element to use as description
1531 *
1532 * Define function @name_gen_params which uses @array to generate parameters.
1533 */
1534#define KUNIT_ARRAY_PARAM_DESC(name, array, desc_member)					\
1535	static const void *name##_gen_params(const void *prev, char *desc)			\
1536	{											\
1537		typeof((array)[0]) *__next = prev ? ((typeof(__next)) prev) + 1 : (array);	\
1538		if (__next - (array) < ARRAY_SIZE((array))) {					\
1539			strscpy(desc, __next->desc_member, KUNIT_PARAM_DESC_SIZE);		\
1540			return __next;								\
1541		}										\
1542		return NULL;									\
1543	}
1544
1545// TODO(dlatypov@google.com): consider eventually migrating users to explicitly
1546// include resource.h themselves if they need it.
1547#include <kunit/resource.h>
1548
1549#endif /* _KUNIT_TEST_H */