| 123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416 |
- /*
- tests/test_pytypes.cpp -- Python type casters
- Copyright (c) 2017 Wenzel Jakob <[email protected]>
- 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"
- TEST_SUBMODULE(pytypes, m) {
- // test_int
- m.def("get_int", []{return py::int_(0);});
- // test_iterator
- m.def("get_iterator", []{return py::iterator();});
- // test_iterable
- m.def("get_iterable", []{return py::iterable();});
- // test_list
- m.def("get_list", []() {
- py::list list;
- list.append("value");
- py::print("Entry at position 0:", list[0]);
- list[0] = py::str("overwritten");
- list.insert(0, "inserted-0");
- list.insert(2, "inserted-2");
- return list;
- });
- m.def("print_list", [](py::list list) {
- int index = 0;
- for (auto item : list)
- py::print("list item {}: {}"_s.format(index++, item));
- });
- // test_none
- m.def("get_none", []{return py::none();});
- m.def("print_none", [](py::none none) {
- py::print("none: {}"_s.format(none));
- });
- // test_set
- m.def("get_set", []() {
- py::set set;
- set.add(py::str("key1"));
- set.add("key2");
- set.add(std::string("key3"));
- return set;
- });
- m.def("print_set", [](py::set set) {
- for (auto item : set)
- py::print("key:", item);
- });
- m.def("set_contains", [](py::set set, py::object key) {
- return set.contains(key);
- });
- m.def("set_contains", [](py::set set, const char* key) {
- return set.contains(key);
- });
- // test_dict
- m.def("get_dict", []() { return py::dict("key"_a="value"); });
- m.def("print_dict", [](py::dict dict) {
- for (auto item : dict)
- py::print("key: {}, value={}"_s.format(item.first, item.second));
- });
- m.def("dict_keyword_constructor", []() {
- auto d1 = py::dict("x"_a=1, "y"_a=2);
- auto d2 = py::dict("z"_a=3, **d1);
- return d2;
- });
- m.def("dict_contains", [](py::dict dict, py::object val) {
- return dict.contains(val);
- });
- m.def("dict_contains", [](py::dict dict, const char* val) {
- return dict.contains(val);
- });
- // test_str
- m.def("str_from_string", []() { return py::str(std::string("baz")); });
- m.def("str_from_bytes", []() { return py::str(py::bytes("boo", 3)); });
- m.def("str_from_object", [](const py::object& obj) { return py::str(obj); });
- m.def("repr_from_object", [](const py::object& obj) { return py::repr(obj); });
- m.def("str_from_handle", [](py::handle h) { return py::str(h); });
- m.def("str_format", []() {
- auto s1 = "{} + {} = {}"_s.format(1, 2, 3);
- auto s2 = "{a} + {b} = {c}"_s.format("a"_a=1, "b"_a=2, "c"_a=3);
- return py::make_tuple(s1, s2);
- });
- // test_bytes
- m.def("bytes_from_string", []() { return py::bytes(std::string("foo")); });
- m.def("bytes_from_str", []() { return py::bytes(py::str("bar", 3)); });
- // test_capsule
- m.def("return_capsule_with_destructor", []() {
- py::print("creating capsule");
- return py::capsule([]() {
- py::print("destructing capsule");
- });
- });
- m.def("return_capsule_with_destructor_2", []() {
- py::print("creating capsule");
- return py::capsule((void *) 1234, [](void *ptr) {
- py::print("destructing capsule: {}"_s.format((size_t) ptr));
- });
- });
- m.def("return_capsule_with_name_and_destructor", []() {
- auto capsule = py::capsule((void *) 12345, "pointer type description", [](PyObject *ptr) {
- if (ptr) {
- auto name = PyCapsule_GetName(ptr);
- py::print("destructing capsule ({}, '{}')"_s.format(
- (size_t) PyCapsule_GetPointer(ptr, name), name
- ));
- }
- });
- capsule.set_pointer((void *) 1234);
- // Using get_pointer<T>()
- void* contents1 = static_cast<void*>(capsule);
- void* contents2 = capsule.get_pointer();
- void* contents3 = capsule.get_pointer<void>();
- auto result1 = reinterpret_cast<size_t>(contents1);
- auto result2 = reinterpret_cast<size_t>(contents2);
- auto result3 = reinterpret_cast<size_t>(contents3);
- py::print("created capsule ({}, '{}')"_s.format(result1 & result2 & result3, capsule.name()));
- return capsule;
- });
- // test_accessors
- m.def("accessor_api", [](py::object o) {
- auto d = py::dict();
- d["basic_attr"] = o.attr("basic_attr");
- auto l = py::list();
- for (auto item : o.attr("begin_end")) {
- l.append(item);
- }
- d["begin_end"] = l;
- d["operator[object]"] = o.attr("d")["operator[object]"_s];
- d["operator[char *]"] = o.attr("d")["operator[char *]"];
- d["attr(object)"] = o.attr("sub").attr("attr_obj");
- d["attr(char *)"] = o.attr("sub").attr("attr_char");
- try {
- o.attr("sub").attr("missing").ptr();
- } catch (const py::error_already_set &) {
- d["missing_attr_ptr"] = "raised"_s;
- }
- try {
- o.attr("missing").attr("doesn't matter");
- } catch (const py::error_already_set &) {
- d["missing_attr_chain"] = "raised"_s;
- }
- d["is_none"] = o.attr("basic_attr").is_none();
- d["operator()"] = o.attr("func")(1);
- d["operator*"] = o.attr("func")(*o.attr("begin_end"));
- // Test implicit conversion
- py::list implicit_list = o.attr("begin_end");
- d["implicit_list"] = implicit_list;
- py::dict implicit_dict = o.attr("__dict__");
- d["implicit_dict"] = implicit_dict;
- return d;
- });
- m.def("tuple_accessor", [](py::tuple existing_t) {
- try {
- existing_t[0] = 1;
- } catch (const py::error_already_set &) {
- // --> Python system error
- // Only new tuples (refcount == 1) are mutable
- auto new_t = py::tuple(3);
- for (size_t i = 0; i < new_t.size(); ++i) {
- new_t[i] = i;
- }
- return new_t;
- }
- return py::tuple();
- });
- m.def("accessor_assignment", []() {
- auto l = py::list(1);
- l[0] = 0;
- auto d = py::dict();
- d["get"] = l[0];
- auto var = l[0];
- d["deferred_get"] = var;
- l[0] = 1;
- d["set"] = l[0];
- var = 99; // this assignment should not overwrite l[0]
- d["deferred_set"] = l[0];
- d["var"] = var;
- return d;
- });
- // test_constructors
- m.def("default_constructors", []() {
- return py::dict(
- "bytes"_a=py::bytes(),
- "str"_a=py::str(),
- "bool"_a=py::bool_(),
- "int"_a=py::int_(),
- "float"_a=py::float_(),
- "tuple"_a=py::tuple(),
- "list"_a=py::list(),
- "dict"_a=py::dict(),
- "set"_a=py::set()
- );
- });
- m.def("converting_constructors", [](py::dict d) {
- return py::dict(
- "bytes"_a=py::bytes(d["bytes"]),
- "str"_a=py::str(d["str"]),
- "bool"_a=py::bool_(d["bool"]),
- "int"_a=py::int_(d["int"]),
- "float"_a=py::float_(d["float"]),
- "tuple"_a=py::tuple(d["tuple"]),
- "list"_a=py::list(d["list"]),
- "dict"_a=py::dict(d["dict"]),
- "set"_a=py::set(d["set"]),
- "memoryview"_a=py::memoryview(d["memoryview"])
- );
- });
- m.def("cast_functions", [](py::dict d) {
- // When converting between Python types, obj.cast<T>() should be the same as T(obj)
- return py::dict(
- "bytes"_a=d["bytes"].cast<py::bytes>(),
- "str"_a=d["str"].cast<py::str>(),
- "bool"_a=d["bool"].cast<py::bool_>(),
- "int"_a=d["int"].cast<py::int_>(),
- "float"_a=d["float"].cast<py::float_>(),
- "tuple"_a=d["tuple"].cast<py::tuple>(),
- "list"_a=d["list"].cast<py::list>(),
- "dict"_a=d["dict"].cast<py::dict>(),
- "set"_a=d["set"].cast<py::set>(),
- "memoryview"_a=d["memoryview"].cast<py::memoryview>()
- );
- });
- m.def("convert_to_pybind11_str", [](py::object o) { return py::str(o); });
- m.def("nonconverting_constructor", [](std::string type, py::object value, bool move) -> py::object {
- if (type == "bytes") {
- return move ? py::bytes(std::move(value)) : py::bytes(value);
- }
- else if (type == "none") {
- return move ? py::none(std::move(value)) : py::none(value);
- }
- else if (type == "ellipsis") {
- return move ? py::ellipsis(std::move(value)) : py::ellipsis(value);
- }
- else if (type == "type") {
- return move ? py::type(std::move(value)) : py::type(value);
- }
- throw std::runtime_error("Invalid type");
- });
- m.def("get_implicit_casting", []() {
- py::dict d;
- d["char*_i1"] = "abc";
- const char *c2 = "abc";
- d["char*_i2"] = c2;
- d["char*_e"] = py::cast(c2);
- d["char*_p"] = py::str(c2);
- d["int_i1"] = 42;
- int i = 42;
- d["int_i2"] = i;
- i++;
- d["int_e"] = py::cast(i);
- i++;
- d["int_p"] = py::int_(i);
- d["str_i1"] = std::string("str");
- std::string s2("str1");
- d["str_i2"] = s2;
- s2[3] = '2';
- d["str_e"] = py::cast(s2);
- s2[3] = '3';
- d["str_p"] = py::str(s2);
- py::list l(2);
- l[0] = 3;
- l[1] = py::cast(6);
- l.append(9);
- l.append(py::cast(12));
- l.append(py::int_(15));
- return py::dict(
- "d"_a=d,
- "l"_a=l
- );
- });
- // test_print
- m.def("print_function", []() {
- py::print("Hello, World!");
- py::print(1, 2.0, "three", true, std::string("-- multiple args"));
- auto args = py::make_tuple("and", "a", "custom", "separator");
- py::print("*args", *args, "sep"_a="-");
- py::print("no new line here", "end"_a=" -- ");
- py::print("next print");
- auto py_stderr = py::module_::import("sys").attr("stderr");
- py::print("this goes to stderr", "file"_a=py_stderr);
- py::print("flush", "flush"_a=true);
- py::print("{a} + {b} = {c}"_s.format("a"_a="py::print", "b"_a="str.format", "c"_a="this"));
- });
- m.def("print_failure", []() { py::print(42, UnregisteredType()); });
- m.def("hash_function", [](py::object obj) { return py::hash(obj); });
- m.def("test_number_protocol", [](py::object a, py::object b) {
- py::list l;
- l.append(a.equal(b));
- l.append(a.not_equal(b));
- l.append(a < b);
- l.append(a <= b);
- l.append(a > b);
- l.append(a >= b);
- l.append(a + b);
- l.append(a - b);
- l.append(a * b);
- l.append(a / b);
- l.append(a | b);
- l.append(a & b);
- l.append(a ^ b);
- l.append(a >> b);
- l.append(a << b);
- return l;
- });
- m.def("test_list_slicing", [](py::list a) {
- return a[py::slice(0, -1, 2)];
- });
- // See #2361
- m.def("issue2361_str_implicit_copy_none", []() {
- py::str is_this_none = py::none();
- return is_this_none;
- });
- m.def("issue2361_dict_implicit_copy_none", []() {
- py::dict is_this_none = py::none();
- return is_this_none;
- });
- m.def("test_memoryview_object", [](py::buffer b) {
- return py::memoryview(b);
- });
- m.def("test_memoryview_buffer_info", [](py::buffer b) {
- return py::memoryview(b.request());
- });
- m.def("test_memoryview_from_buffer", [](bool is_unsigned) {
- static const int16_t si16[] = { 3, 1, 4, 1, 5 };
- static const uint16_t ui16[] = { 2, 7, 1, 8 };
- if (is_unsigned)
- return py::memoryview::from_buffer(
- ui16, { 4 }, { sizeof(uint16_t) });
- else
- return py::memoryview::from_buffer(
- si16, { 5 }, { sizeof(int16_t) });
- });
- m.def("test_memoryview_from_buffer_nativeformat", []() {
- static const char* format = "@i";
- static const int32_t arr[] = { 4, 7, 5 };
- return py::memoryview::from_buffer(
- arr, sizeof(int32_t), format, { 3 }, { sizeof(int32_t) });
- });
- m.def("test_memoryview_from_buffer_empty_shape", []() {
- static const char* buf = "";
- return py::memoryview::from_buffer(buf, 1, "B", { }, { });
- });
- m.def("test_memoryview_from_buffer_invalid_strides", []() {
- static const char* buf = "\x02\x03\x04";
- return py::memoryview::from_buffer(buf, 1, "B", { 3 }, { });
- });
- m.def("test_memoryview_from_buffer_nullptr", []() {
- return py::memoryview::from_buffer(
- static_cast<void*>(nullptr), 1, "B", { }, { });
- });
- #if PY_MAJOR_VERSION >= 3
- m.def("test_memoryview_from_memory", []() {
- const char* buf = "\xff\xe1\xab\x37";
- return py::memoryview::from_memory(
- buf, static_cast<py::ssize_t>(strlen(buf)));
- });
- #endif
- // test_builtin_functions
- m.def("get_len", [](py::handle h) { return py::len(h); });
- }
|