File: test-utils.c

package info (click to toggle)
libmodulemd 2.15.0-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 5,152 kB
  • sloc: ansic: 37,845; python: 3,236; xml: 1,739; sh: 377; makefile: 42
file content (59 lines) | stat: -rw-r--r-- 1,447 bytes parent folder | download | duplicates (3)
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
/*
 * This file is part of libmodulemd
 * Copyright (C) 2017-2018 Stephen Gallagher
 *
 * Fedora-License-Identifier: MIT
 * SPDX-2.0-License-Identifier: MIT
 * SPDX-3.0-License-Identifier: MIT
 *
 * This program is free software.
 * For more information on the license, see COPYING.
 * For more information on free software, see <https://www.gnu.org/philosophy/free-sw.en.html>.
 */

#include <glib.h>
#include <locale.h>
#include <yaml.h>

#include "private/modulemd-yaml.h"
#include "private/test-utils.h"

int modulemd_test_signal;

void
modulemd_test_signal_handler (int sig_num)
{
  modulemd_test_signal = sig_num;
}


void
parser_skip_document_start (yaml_parser_t *parser)
{
  int result;
  MMD_INIT_YAML_EVENT (event);

  /* Advance the parser past STREAM_START and DOCUMENT_START */
  result = yaml_parser_parse (parser, &event);
  g_assert_cmpint (result, ==, 1);
  g_assert_cmpint (event.type, ==, YAML_STREAM_START_EVENT);

  result = yaml_parser_parse (parser, &event);
  g_assert_cmpint (result, ==, 1);
  g_assert_cmpint (event.type, ==, YAML_DOCUMENT_START_EVENT);
}


void
parser_skip_headers (yaml_parser_t *parser)
{
  int result;
  MMD_INIT_YAML_EVENT (event);

  /* Advance the parser past STREAM_START, DOCUMENT_START and MAPPING_START */
  parser_skip_document_start (parser);

  result = yaml_parser_parse (parser, &event);
  g_assert_cmpint (result, ==, 1);
  g_assert_cmpint (event.type, ==, YAML_MAPPING_START_EVENT);
}