test.h 3.25 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
/*
 *  GRUB  --  GRand Unified Bootloader
 *  Copyright (C) 2010 Free Software Foundation, Inc.
 *
 *  GRUB is free software: you can redistribute it and/or modify
 *  it under the terms of the GNU General Public License as published by
 *  the Free Software Foundation, either version 3 of the License, or
 *  (at your option) any later version.
 *
 *  GRUB is distributed in the hope that it will be useful,
 *  but WITHOUT ANY WARRANTY; without even the implied warranty of
 *  MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 *  GNU General Public License for more details.
 *
 *  You should have received a copy of the GNU General Public License
 *  along with GRUB.  If not, see <http://www.gnu.org/licenses/>.
 */

BVK Chaitanya's avatar
BVK Chaitanya committed
19 20 21 22 23 24 25 26 27
#ifndef GRUB_TEST_HEADER
#define GRUB_TEST_HEADER

#include <grub/dl.h>
#include <grub/list.h>
#include <grub/misc.h>
#include <grub/types.h>
#include <grub/symbol.h>

28 29 30
#include <grub/video.h>
#include <grub/video_fb.h>

31 32 33 34
#ifdef __cplusplus
extern "C" {
#endif

BVK Chaitanya's avatar
BVK Chaitanya committed
35 36 37 38
struct grub_test
{
  /* The next test.  */
  struct grub_test *next;
39
  struct grub_test **prev;
BVK Chaitanya's avatar
BVK Chaitanya committed
40 41 42 43 44 45 46 47 48

  /* The test name.  */
  char *name;

  /* The test main function.  */
  void (*main) (void);
};
typedef struct grub_test *grub_test_t;

49
extern grub_test_t grub_test_list;
BVK Chaitanya's avatar
BVK Chaitanya committed
50

51 52
void grub_test_register   (const char *name, void (*test) (void));
void grub_test_unregister (const char *name);
BVK Chaitanya's avatar
BVK Chaitanya committed
53 54

/* Execute a test and print results.  */
55
int grub_test_run (grub_test_t test);
BVK Chaitanya's avatar
BVK Chaitanya committed
56 57 58 59 60

/* Test `cond' for nonzero; log failure otherwise.  */
void grub_test_nonzero (int cond, const char *file,
			const char *func, grub_uint32_t line,
			const char *fmt, ...)
61
  __attribute__ ((format (GNU_PRINTF, 5, 6)));
BVK Chaitanya's avatar
BVK Chaitanya committed
62 63

/* Macro to fill in location details and an optional error message.  */
64 65 66
void grub_test_assert_helper (int cond, const char *file,
                            const char *func, grub_uint32_t line,
                            const char *condstr, const char *fmt, ...)
67
  __attribute__ ((format (GNU_PRINTF, 6, 7)));
68

69
#define grub_test_assert(cond, ...)				\
70 71
  grub_test_assert_helper(cond, GRUB_FILE, __FUNCTION__, __LINE__,     \
                         #cond, ## __VA_ARGS__);
BVK Chaitanya's avatar
BVK Chaitanya committed
72

73 74 75
void grub_unit_test_init (void);
void grub_unit_test_fini (void);

BVK Chaitanya's avatar
BVK Chaitanya committed
76 77 78 79 80 81 82 83 84 85 86 87 88 89
/* Macro to define a unit test.  */
#define GRUB_UNIT_TEST(name, funp)		\
  void grub_unit_test_init (void)		\
  {						\
    grub_test_register (name, funp);		\
  }						\
						\
  void grub_unit_test_fini (void)		\
  {						\
    grub_test_unregister (name);		\
  }

/* Macro to define a functional test.  */
#define GRUB_FUNCTIONAL_TEST(name, funp)	\
90
  GRUB_MOD_INIT(name)				\
BVK Chaitanya's avatar
BVK Chaitanya committed
91
  {						\
92
    grub_test_register (#name, funp);		\
BVK Chaitanya's avatar
BVK Chaitanya committed
93 94
  }						\
						\
95
  GRUB_MOD_FINI(name)				\
BVK Chaitanya's avatar
BVK Chaitanya committed
96
  {						\
97
    grub_test_unregister (#name);		\
BVK Chaitanya's avatar
BVK Chaitanya committed
98 99
  }

100 101 102 103 104 105 106 107
void
grub_video_checksum (const char *basename_in);
void
grub_video_checksum_end (void);
void
grub_terminal_input_fake_sequence (int *seq_in, int nseq_in);
void
grub_terminal_input_fake_sequence_end (void);
108 109
const char *
grub_video_checksum_get_modename (void);
110

111

112 113
#define GRUB_TEST_VIDEO_SMALL_N_MODES 7
#define GRUB_TEST_VIDEO_ALL_N_MODES 31
114 115

extern struct grub_video_mode_info grub_test_video_modes[GRUB_TEST_VIDEO_ALL_N_MODES];
116

117 118 119 120
int
grub_test_use_gfxterm (void);
void grub_test_use_gfxterm_end (void);

121 122 123 124
#ifdef __cplusplus
}
#endif

BVK Chaitanya's avatar
BVK Chaitanya committed
125
#endif /* ! GRUB_TEST_HEADER */