File: test_system_mocks.c

package info (click to toggle)
ros-ros-comm 1.17.0%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: trixie
  • size: 12,008 kB
  • sloc: cpp: 41,963; python: 38,967; xml: 2,663; ansic: 2,384; sh: 274; makefile: 27
file content (81 lines) | stat: -rw-r--r-- 2,972 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
/*
 * Unit tests for XmlRpc++
 *
 * Copyright (C) 2017, Zoox Inc
 *
 * This library is free software; you can redistribute it and/or
 * modify it under the terms of the GNU Lesser General Public
 * License as published by the Free Software Foundation; either
 * version 2.1 of the License, or (at your option) any later version.
 *
 * This library 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
 * Lesser General Public License for more details.
 *
 * You should have received a copy of the GNU Lesser General Public
 * License along with this library; if not, write to the Free Software
 * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA  02111-1307  USA
 *
 * Author: Austin Hendrix <austin@zoox.com>
 *
 */

// The auto-generated mocks here don't use their parameters, so we disable
// that warning.
#ifdef __GNUC__
#pragma GCC diagnostic ignored "-Wunused-parameter"
#endif

#define MOCK_SYSCALL(ret, name, ARG_TYPES, ARG_NAMES)                          \
  ret(*fake_##name) ARG_TYPES = 0;                                             \
  ret __wrap_##name ARG_TYPES {                                                \
    if (fake_##name) {                                                         \
      return fake_##name ARG_NAMES;                                            \
    } else {                                                                   \
      return -1;                                                                \
    }                                                                          \
  }                                                                            \
  int name##_calls = 0;                                                        \
  ret count_##name ARG_TYPES {                                                 \
    name##_calls++;                                                            \
    return 0;                                                                  \
  }

#include "test_system_mocks.h"

// custom mock for fcntl because it is varargs
// the mocked version always takes the third argument
int (*fake_fcntl)(int fd, int cmd, unsigned long) = 0;
int __wrap_fcntl(int fd, int cmd, ...) {
  va_list ap;
  va_start(ap, cmd);
  unsigned long arg = va_arg(ap, unsigned long);
  va_end(ap);

  if (fake_fcntl) {
    return fake_fcntl(fd, cmd, arg);
  } else {
    return -1;
  }
}
int fcntl_calls = 0;
int count_fcntl(int fd, int cmd, unsigned long arg) {
  fcntl_calls++;
  return 0;
}

// Custom mock for freeaddrinfo because it returns void.
void (*fake_freeaddrinfo)(struct addrinfo* res) = 0;
void __wrap_freeaddrinfo(struct addrinfo* res) {
  if (fake_freeaddrinfo) {
    return fake_freeaddrinfo(res);
  } else {
    return;
  }
}
int freeaddrinfo_calls = 0;
void count_freeaddrinfo(struct addrinfo* res) {
  freeaddrinfo_calls++;
  return;
}