Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
J
json
Project
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
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
Chen Yisong
json
Commits
7b3cbfff
Commit
7b3cbfff
authored
Jul 23, 2017
by
Nikita Ofitserov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add some tests for std::move from std::initializer_list
parent
9b1c0588
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
119 additions
and
0 deletions
+119
-0
unit-constructor1.cpp
test/src/unit-constructor1.cpp
+119
-0
No files found.
test/src/unit-constructor1.cpp
View file @
7b3cbfff
...
@@ -1034,6 +1034,125 @@ TEST_CASE("constructors")
...
@@ -1034,6 +1034,125 @@ TEST_CASE("constructors")
CHECK
(
j
.
type
()
==
json
::
value_t
::
array
);
CHECK
(
j
.
type
()
==
json
::
value_t
::
array
);
}
}
}
}
SECTION
(
"move from initializer_list"
)
{
SECTION
(
"string"
)
{
// This should break through any short string optimization in std::string
std
::
string
source
(
1024
,
'!'
);
const
char
*
source_addr
=
source
.
data
();
SECTION
(
"constructor with implicit types (array)"
)
{
json
j
=
{
std
::
move
(
source
)};
CHECK
(
j
[
0
].
get_ref
<
std
::
string
const
&>
().
data
()
==
source_addr
);
}
SECTION
(
"constructor with implicit types (object)"
)
{
json
j
=
{{
"key"
,
std
::
move
(
source
)}};
CHECK
(
j
[
"key"
].
get_ref
<
std
::
string
const
&>
().
data
()
==
source_addr
);
}
SECTION
(
"constructor with implicit types (object key)"
)
{
json
j
=
{{
std
::
move
(
source
),
42
}};
CHECK
(
j
.
get_ref
<
json
::
object_t
&>
().
begin
()
->
first
.
data
()
==
source_addr
);
}
}
SECTION
(
"array"
)
{
json
::
array_t
source
=
{
1
,
2
,
3
};
const
json
*
source_addr
=
source
.
data
();
SECTION
(
"constructor with implicit types (array)"
)
{
json
j
{
std
::
move
(
source
)};
CHECK
(
j
[
0
].
get_ref
<
json
::
array_t
const
&>
().
data
()
==
source_addr
);
}
SECTION
(
"constructor with implicit types (object)"
)
{
json
j
{{
"key"
,
std
::
move
(
source
)}};
CHECK
(
j
[
"key"
].
get_ref
<
json
::
array_t
const
&>
().
data
()
==
source_addr
);
}
SECTION
(
"assignment with implicit types (array)"
)
{
json
j
=
{
std
::
move
(
source
)};
CHECK
(
j
[
0
].
get_ref
<
json
::
array_t
const
&>
().
data
()
==
source_addr
);
}
SECTION
(
"assignment with implicit types (object)"
)
{
json
j
=
{{
"key"
,
std
::
move
(
source
)}};
CHECK
(
j
[
"key"
].
get_ref
<
json
::
array_t
const
&>
().
data
()
==
source_addr
);
}
}
SECTION
(
"object"
)
{
json
::
object_t
source
=
{{
"hello"
,
"world"
}};
const
json
*
source_addr
=
&
source
.
at
(
"hello"
);
SECTION
(
"constructor with implicit types (array)"
)
{
json
j
{
std
::
move
(
source
)};
CHECK
(
&
(
j
[
0
].
get_ref
<
json
::
object_t
const
&>
().
at
(
"hello"
))
==
source_addr
);
}
SECTION
(
"constructor with implicit types (object)"
)
{
json
j
{{
"key"
,
std
::
move
(
source
)}};
CHECK
(
&
(
j
[
"key"
].
get_ref
<
json
::
object_t
const
&>
().
at
(
"hello"
))
==
source_addr
);
}
SECTION
(
"assignment with implicit types (array)"
)
{
json
j
=
{
std
::
move
(
source
)};
CHECK
(
&
(
j
[
0
].
get_ref
<
json
::
object_t
const
&>
().
at
(
"hello"
))
==
source_addr
);
}
SECTION
(
"assignment with implicit types (object)"
)
{
json
j
=
{{
"key"
,
std
::
move
(
source
)}};
CHECK
(
&
(
j
[
"key"
].
get_ref
<
json
::
object_t
const
&>
().
at
(
"hello"
))
==
source_addr
);
}
}
SECTION
(
"json"
)
{
json
source
{
1
,
2
,
3
};
const
json
*
source_addr
=
&
source
[
0
];
SECTION
(
"constructor with implicit types (array)"
)
{
json
j
{
std
::
move
(
source
)};
CHECK
(
&
j
[
0
][
0
]
==
source_addr
);
}
SECTION
(
"constructor with implicit types (object)"
)
{
json
j
{{
"key"
,
std
::
move
(
source
)}};
CHECK
(
&
j
[
"key"
][
0
]
==
source_addr
);
}
SECTION
(
"assignment with implicit types (array)"
)
{
json
j
=
{
std
::
move
(
source
)};
CHECK
(
&
j
[
0
][
0
]
==
source_addr
);
}
SECTION
(
"assignment with implicit types (object)"
)
{
json
j
=
{{
"key"
,
std
::
move
(
source
)}};
CHECK
(
&
j
[
"key"
][
0
]
==
source_addr
);
}
}
}
}
}
SECTION
(
"create an array of n copies of a given value"
)
SECTION
(
"create an array of n copies of a given value"
)
...
...
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