mirror of
https://github.com/pybind/pybind11.git
synced 2024-11-11 08:03:55 +00:00
52f4be8946
Adding or removing tests is a little bit cumbersome currently: the test needs to be added to CMakeLists.txt, the init function needs to be predeclared in pybind11_tests.cpp, then called in the plugin initialization. While this isn't a big deal for tests that are being committed, it's more of a hassle when working on some new feature or test code for which I temporarily only care about building and linking the test being worked on rather than the entire test suite. This commit changes tests to self-register their initialization by having each test initialize a local object (which stores the initialization function in a static variable). This makes changing the set of tests being build easy: one only needs to add or comment out test names in tests/CMakeLists.txt. A couple other minor changes that go along with this: - test_eigen.cpp is now included in the test list, then removed if eigen isn't available. This lets you disable the eigen tests by commenting it out, just like all the other tests, but keeps the build working without eigen eigen isn't available. (Also, if it's commented out, we don't even bother looking for and reporting the building with/without eigen status message). - pytest is now invoked with all the built test names (with .cpp changed to .py) so that it doesn't try to run tests that weren't built.
81 lines
2.2 KiB
C++
81 lines
2.2 KiB
C++
/*
|
|
tests/test_eval.cpp -- Usage of eval() and eval_file()
|
|
|
|
Copyright (c) 2016 Klemens D. Morgenstern
|
|
|
|
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/eval.h>
|
|
#include "pybind11_tests.h"
|
|
|
|
test_initializer eval([](py::module &m) {
|
|
auto global = py::dict(py::module::import("__main__").attr("__dict__"));
|
|
|
|
m.def("test_eval_statements", [global]() {
|
|
auto local = py::dict();
|
|
local["call_test"] = py::cpp_function([&]() -> int {
|
|
return 42;
|
|
});
|
|
|
|
auto result = py::eval<py::eval_statements>(
|
|
"print('Hello World!');\n"
|
|
"x = call_test();",
|
|
global, local
|
|
);
|
|
auto x = local["x"].cast<int>();
|
|
|
|
return result == py::none() && x == 42;
|
|
});
|
|
|
|
m.def("test_eval", [global]() {
|
|
auto local = py::dict();
|
|
local["x"] = py::int_(42);
|
|
auto x = py::eval("x", global, local);
|
|
return x.cast<int>() == 42;
|
|
});
|
|
|
|
m.def("test_eval_single_statement", []() {
|
|
auto local = py::dict();
|
|
local["call_test"] = py::cpp_function([&]() -> int {
|
|
return 42;
|
|
});
|
|
|
|
auto result = py::eval<py::eval_single_statement>("x = call_test()", py::dict(), local);
|
|
auto x = local["x"].cast<int>();
|
|
return result == py::none() && x == 42;
|
|
});
|
|
|
|
m.def("test_eval_file", [global](py::str filename) {
|
|
auto local = py::dict();
|
|
local["y"] = py::int_(43);
|
|
|
|
int val_out;
|
|
local["call_test2"] = py::cpp_function([&](int value) { val_out = value; });
|
|
|
|
auto result = py::eval_file(filename, global, local);
|
|
return val_out == 43 && result == py::none();
|
|
});
|
|
|
|
m.def("test_eval_failure", []() {
|
|
try {
|
|
py::eval("nonsense code ...");
|
|
} catch (py::error_already_set &) {
|
|
PyErr_Clear();
|
|
return true;
|
|
}
|
|
return false;
|
|
});
|
|
|
|
m.def("test_eval_file_failure", []() {
|
|
try {
|
|
py::eval_file("non-existing file");
|
|
} catch (std::exception &) {
|
|
return true;
|
|
}
|
|
return false;
|
|
});
|
|
});
|