Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
P
pybind11
Overview
Overview
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Wiki
Wiki
Snippets
Snippets
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
open
pybind11
Commits
b69f9fed
Commit
b69f9fed
authored
Jan 29, 2021
by
Ralf W. Grosse-Kunstleve
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Removing test_type_caster_bare_interface, which was moved to the separate PR #2834.
parent
ce79f912
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
0 additions
and
257 deletions
+0
-257
tests/CMakeLists.txt
+0
-1
tests/test_type_caster_bare_interface.cpp
+0
-215
tests/test_type_caster_bare_interface.py
+0
-41
No files found.
tests/CMakeLists.txt
View file @
b69f9fed
...
@@ -132,7 +132,6 @@ set(PYBIND11_TEST_FILES
...
@@ -132,7 +132,6 @@ set(PYBIND11_TEST_FILES
test_stl.cpp
test_stl.cpp
test_stl_binders.cpp
test_stl_binders.cpp
test_tagbased_polymorphic.cpp
test_tagbased_polymorphic.cpp
test_type_caster_bare_interface.cpp
test_union.cpp
test_union.cpp
test_virtual_functions.cpp
)
test_virtual_functions.cpp
)
...
...
tests/test_type_caster_bare_interface.cpp
deleted
100644 → 0
View file @
ce79f912
// Systematically exercises the detail::type_caster<> interface. This is going a step in the
// direction of an integration test, to ensure multiple components of pybind11 work together
// correctly. It is also useful to show the type_caster<> interface virtually clutter-free.
#include "pybind11_tests.h"
#include <memory>
namespace
pybind11_tests
{
namespace
type_caster_bare_interface
{
struct
mpty
{};
// clang-format off
mpty
rtrn_valu
()
{
mpty
obj
;
return
obj
;
}
mpty
&&
rtrn_rref
()
{
static
mpty
obj
;
return
std
::
move
(
obj
);
}
mpty
const
&
rtrn_cref
()
{
static
mpty
obj
;
return
obj
;
}
mpty
&
rtrn_mref
()
{
static
mpty
obj
;
return
obj
;
}
mpty
const
*
rtrn_cptr
()
{
return
new
mpty
;
}
mpty
*
rtrn_mptr
()
{
return
new
mpty
;
}
const
char
*
pass_valu
(
mpty
)
{
return
"load_valu"
;
}
const
char
*
pass_rref
(
mpty
&&
)
{
return
"load_rref"
;
}
const
char
*
pass_cref
(
mpty
const
&
)
{
return
"load_cref"
;
}
const
char
*
pass_mref
(
mpty
&
)
{
return
"load_mref"
;
}
const
char
*
pass_cptr
(
mpty
const
*
)
{
return
"load_cptr"
;
}
const
char
*
pass_mptr
(
mpty
*
)
{
return
"load_mptr"
;
}
std
::
shared_ptr
<
mpty
>
rtrn_shmp
()
{
return
std
::
shared_ptr
<
mpty
>
(
new
mpty
);
}
std
::
shared_ptr
<
mpty
const
>
rtrn_shcp
()
{
return
std
::
shared_ptr
<
mpty
const
>
(
new
mpty
);
}
const
char
*
pass_shmp
(
std
::
shared_ptr
<
mpty
>
)
{
return
"load_shmp"
;
}
const
char
*
pass_shcp
(
std
::
shared_ptr
<
mpty
const
>
)
{
return
"load_shcp"
;
}
std
::
unique_ptr
<
mpty
>
rtrn_uqmp
()
{
return
std
::
unique_ptr
<
mpty
>
(
new
mpty
);
}
std
::
unique_ptr
<
mpty
const
>
rtrn_uqcp
()
{
return
std
::
unique_ptr
<
mpty
const
>
(
new
mpty
);
}
const
char
*
pass_uqmp
(
std
::
unique_ptr
<
mpty
>
)
{
return
"load_uqmp"
;
}
const
char
*
pass_uqcp
(
std
::
unique_ptr
<
mpty
const
>
)
{
return
"load_uqcp"
;
}
// clang-format on
}
// namespace type_caster_bare_interface
}
// namespace pybind11_tests
namespace
pybind11
{
namespace
detail
{
using
namespace
pybind11_tests
::
type_caster_bare_interface
;
template
<>
struct
type_caster
<
mpty
>
{
static
constexpr
auto
name
=
_
<
mpty
>
();
// static handle cast(mpty, ...)
// is redundant (leads to ambiguous overloads).
static
handle
cast
(
mpty
&&
/*src*/
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
return
str
(
"cast_rref"
).
release
();
}
static
handle
cast
(
mpty
const
&
/*src*/
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
return
str
(
"cast_cref"
).
release
();
}
static
handle
cast
(
mpty
&
/*src*/
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
return
str
(
"cast_mref"
).
release
();
}
static
handle
cast
(
mpty
const
*
src
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
delete
src
;
return
str
(
"cast_cptr"
).
release
();
}
static
handle
cast
(
mpty
*
src
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
delete
src
;
return
str
(
"cast_mptr"
).
release
();
}
template
<
typename
T_
>
using
cast_op_type
=
conditional_t
<
std
::
is_same
<
remove_reference_t
<
T_
>
,
mpty
const
*>::
value
,
mpty
const
*
,
conditional_t
<
std
::
is_same
<
remove_reference_t
<
T_
>
,
mpty
*>::
value
,
mpty
*
,
conditional_t
<
std
::
is_same
<
T_
,
mpty
const
&>::
value
,
mpty
const
&
,
conditional_t
<
std
::
is_same
<
T_
,
mpty
&>::
value
,
mpty
&
,
conditional_t
<
std
::
is_same
<
T_
,
mpty
&&>::
value
,
mpty
&&
,
mpty
>>>>>
;
// clang-format off
operator
mpty
()
{
return
rtrn_valu
();
}
operator
mpty
&&
()
&&
{
return
rtrn_rref
();
}
operator
mpty
const
&
()
{
return
rtrn_cref
();
}
operator
mpty
&
()
{
return
rtrn_mref
();
}
operator
mpty
const
*
()
{
static
mpty
obj
;
return
&
obj
;
}
operator
mpty
*
()
{
static
mpty
obj
;
return
&
obj
;
}
// clang-format on
bool
load
(
handle
/*src*/
,
bool
/*convert*/
)
{
return
true
;
}
};
template
<>
struct
type_caster
<
std
::
shared_ptr
<
mpty
>>
{
static
constexpr
auto
name
=
_
<
std
::
shared_ptr
<
mpty
>>
();
static
handle
cast
(
const
std
::
shared_ptr
<
mpty
>
&
/*src*/
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
return
str
(
"cast_shmp"
).
release
();
}
template
<
typename
>
using
cast_op_type
=
std
::
shared_ptr
<
mpty
>
;
operator
std
::
shared_ptr
<
mpty
>
()
{
return
rtrn_shmp
();
}
bool
load
(
handle
/*src*/
,
bool
/*convert*/
)
{
return
true
;
}
};
template
<>
struct
type_caster
<
std
::
shared_ptr
<
mpty
const
>>
{
static
constexpr
auto
name
=
_
<
std
::
shared_ptr
<
mpty
const
>>
();
static
handle
cast
(
const
std
::
shared_ptr
<
mpty
const
>
&
/*src*/
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
return
str
(
"cast_shcp"
).
release
();
}
template
<
typename
>
using
cast_op_type
=
std
::
shared_ptr
<
mpty
const
>
;
operator
std
::
shared_ptr
<
mpty
const
>
()
{
return
rtrn_shcp
();
}
bool
load
(
handle
/*src*/
,
bool
/*convert*/
)
{
return
true
;
}
};
template
<>
struct
type_caster
<
std
::
unique_ptr
<
mpty
>>
{
static
constexpr
auto
name
=
_
<
std
::
unique_ptr
<
mpty
>>
();
static
handle
cast
(
std
::
unique_ptr
<
mpty
>
&&
/*src*/
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
return
str
(
"cast_uqmp"
).
release
();
}
template
<
typename
>
using
cast_op_type
=
std
::
unique_ptr
<
mpty
>
;
operator
std
::
unique_ptr
<
mpty
>
()
{
return
rtrn_uqmp
();
}
bool
load
(
handle
/*src*/
,
bool
/*convert*/
)
{
return
true
;
}
};
template
<>
struct
type_caster
<
std
::
unique_ptr
<
mpty
const
>>
{
static
constexpr
auto
name
=
_
<
std
::
unique_ptr
<
mpty
const
>>
();
static
handle
cast
(
std
::
unique_ptr
<
mpty
const
>
&&
/*src*/
,
return_value_policy
/*policy*/
,
handle
/*parent*/
)
{
return
str
(
"cast_uqcp"
).
release
();
}
template
<
typename
>
using
cast_op_type
=
std
::
unique_ptr
<
mpty
const
>
;
operator
std
::
unique_ptr
<
mpty
const
>
()
{
return
rtrn_uqcp
();
}
bool
load
(
handle
/*src*/
,
bool
/*convert*/
)
{
return
true
;
}
};
}
// namespace detail
}
// namespace pybind11
namespace
pybind11_tests
{
namespace
type_caster_bare_interface
{
TEST_SUBMODULE
(
type_caster_bare_interface
,
m
)
{
m
.
def
(
"rtrn_valu"
,
rtrn_valu
);
m
.
def
(
"rtrn_rref"
,
rtrn_rref
);
m
.
def
(
"rtrn_cref"
,
rtrn_cref
);
m
.
def
(
"rtrn_mref"
,
rtrn_mref
);
m
.
def
(
"rtrn_cptr"
,
rtrn_cptr
);
m
.
def
(
"rtrn_mptr"
,
rtrn_mptr
);
m
.
def
(
"pass_valu"
,
pass_valu
);
m
.
def
(
"pass_rref"
,
pass_rref
);
m
.
def
(
"pass_cref"
,
pass_cref
);
m
.
def
(
"pass_mref"
,
pass_mref
);
m
.
def
(
"pass_cptr"
,
pass_cptr
);
m
.
def
(
"pass_mptr"
,
pass_mptr
);
m
.
def
(
"rtrn_shmp"
,
rtrn_shmp
);
m
.
def
(
"rtrn_shcp"
,
rtrn_shcp
);
m
.
def
(
"pass_shmp"
,
pass_shmp
);
m
.
def
(
"pass_shcp"
,
pass_shcp
);
m
.
def
(
"rtrn_uqmp"
,
rtrn_uqmp
);
m
.
def
(
"rtrn_uqcp"
,
rtrn_uqcp
);
m
.
def
(
"pass_uqmp"
,
pass_uqmp
);
m
.
def
(
"pass_uqcp"
,
pass_uqcp
);
}
}
// namespace type_caster_bare_interface
}
// namespace pybind11_tests
tests/test_type_caster_bare_interface.py
deleted
100644 → 0
View file @
ce79f912
# -*- coding: utf-8 -*-
from
pybind11_tests
import
type_caster_bare_interface
as
m
def
test_cast
():
assert
m
.
rtrn_valu
()
==
"cast_rref"
assert
m
.
rtrn_rref
()
==
"cast_rref"
assert
m
.
rtrn_cref
()
==
"cast_cref"
assert
m
.
rtrn_mref
()
==
"cast_mref"
assert
m
.
rtrn_cptr
()
==
"cast_cptr"
assert
m
.
rtrn_mptr
()
==
"cast_mptr"
def
test_load
():
assert
m
.
pass_valu
(
None
)
==
"load_valu"
assert
m
.
pass_rref
(
None
)
==
"load_rref"
assert
m
.
pass_cref
(
None
)
==
"load_cref"
assert
m
.
pass_mref
(
None
)
==
"load_mref"
assert
m
.
pass_cptr
(
None
)
==
"load_cptr"
assert
m
.
pass_mptr
(
None
)
==
"load_mptr"
def
test_cast_shared_ptr
():
assert
m
.
rtrn_shmp
()
==
"cast_shmp"
assert
m
.
rtrn_shcp
()
==
"cast_shcp"
def
test_load_shared_ptr
():
assert
m
.
pass_shmp
(
None
)
==
"load_shmp"
assert
m
.
pass_shcp
(
None
)
==
"load_shcp"
def
test_cast_unique_ptr
():
assert
m
.
rtrn_uqmp
()
==
"cast_uqmp"
assert
m
.
rtrn_uqcp
()
==
"cast_uqcp"
def
test_load_unique_ptr
():
assert
m
.
pass_uqmp
(
None
)
==
"load_uqmp"
assert
m
.
pass_uqcp
(
None
)
==
"load_uqcp"
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment