test_docstring_options.cpp 2.75 KB
Newer Older
1
2
3
4
5
6
7
8
9
10
11
/*
    tests/test_docstring_options.cpp -- generation of docstrings and signatures

    Copyright (c) 2016 Wenzel Jakob <wenzel.jakob@epfl.ch>

    All rights reserved. Use of this source code is governed by a
    BSD-style license that can be found in the LICENSE file.
*/

#include "pybind11_tests.h"

12
13
TEST_SUBMODULE(docstring_options, m) {
    // test_docstring_options
14
15
16
17
    {
        py::options options;
        options.disable_function_signatures();

18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
        m.def(
            "test_function1", [](int, int) {}, py::arg("a"), py::arg("b"));
        m.def(
            "test_function2", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");

        m.def(
            "test_overloaded1", [](int) {}, py::arg("i"), "Overload docstring");
        m.def(
            "test_overloaded1", [](double) {}, py::arg("d"));

        m.def(
            "test_overloaded2", [](int) {}, py::arg("i"), "overload docstring 1");
        m.def(
            "test_overloaded2", [](double) {}, py::arg("d"), "overload docstring 2");

        m.def(
            "test_overloaded3", [](int) {}, py::arg("i"));
        m.def(
            "test_overloaded3", [](double) {}, py::arg("d"), "Overload docstr");
37

38
39
        options.enable_function_signatures();

40
41
42
43
        m.def(
            "test_function3", [](int, int) {}, py::arg("a"), py::arg("b"));
        m.def(
            "test_function4", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");
44
45
46

        options.disable_function_signatures().disable_user_defined_docstrings();

47
48
        m.def(
            "test_function5", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");
49
50
51
52

        {
            py::options nested_options;
            nested_options.enable_user_defined_docstrings();
53
54
55
56
57
58
            m.def(
                "test_function6",
                [](int, int) {},
                py::arg("a"),
                py::arg("b"),
                "A custom docstring");
59
60
61
        }
    }

62
63
    m.def(
        "test_function7", [](int, int) {}, py::arg("a"), py::arg("b"), "A custom docstring");
64

65
66
67
68
69
70
71
72
    {
        py::options options;
        options.disable_user_defined_docstrings();
        options.disable_function_signatures();

        m.def("test_function8", []() {});
    }

73
74
75
76
    {
        py::options options;
        options.disable_user_defined_docstrings();

77
78
79
80
81
        struct DocstringTestFoo {
            int value;
            void setValue(int v) { value = v; }
            int getValue() const { return value; }
        };
82
        py::class_<DocstringTestFoo>(m, "DocstringTestFoo", "This is a class docstring")
83
84
85
86
            .def_property("value_prop",
                          &DocstringTestFoo::getValue,
                          &DocstringTestFoo::setValue,
                          "This is a property docstring");
87
    }
88
}