summaryrefslogtreecommitdiff
path: root/tests/libpeas/testing/testing-extension.h
blob: ded89e1e7de23f1c674e68c23577ff0abaf5fc8e (plain)
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
/*
 * testing-extension.h
 * This file is part of libpeas
 *
 * Copyright (C) 2011 - Garrett Regier
 *
 * libpeas 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.
 *
 * libpeas 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., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA.
 *
 * SPDX-License-Identifier: LGPL-2.1-or-later
 */

#pragma once

#include <libpeas/peas-engine.h>

#include "testing.h"

G_BEGIN_DECLS

PEAS_TEST_EXPORT
void testing_extension_basic      (const char    *loader);
PEAS_TEST_EXPORT
void testing_extension_add        (const char    *path,
                                   GTestDataFunc  func);
PEAS_TEST_EXPORT
int  testing_extension_run_tests  (void);

#define testing_extension_all(loader) \
  testing_extension_basic (loader);

/* These macros are here to add loader-specific tests. */
#define EXTENSION_TEST_NAME(loader, path) \
  ("/extension/" G_STRINGIFY (loader) "/" path)

#define EXTENSION_TEST(loader, path, func) \
  testing_extension_add (EXTENSION_TEST_NAME (loader, path), \
                         (GTestDataFunc) test_extension_##loader##_##func)

#define EXTENSION_TEST_FUNC(loader, path, func) \
  g_test_add_func (EXTENSION_TEST_NAME (loader, path), \
                   (GTestFunc) test_extension_##loader##_##func)

G_END_DECLS