Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
C
capnproto
Project
Project
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
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
capnproto
Commits
6544785f
Commit
6544785f
authored
Apr 04, 2017
by
Kenton Varda
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add AFL test case.
parent
6816634a
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
98 additions
and
5 deletions
+98
-5
Makefile.am
c++/Makefile.am
+13
-5
afl-testcase.c++
c++/src/capnp/afl-testcase.c++
+85
-0
lists.binary
c++/src/capnp/testdata/lists.binary
+0
-0
No files found.
c++/Makefile.am
View file @
6544785f
...
...
@@ -387,7 +387,13 @@ capnp_test_LDADD = libcapnp.la libkj-test.la libkj.la
else
!LITE_MODE
check_PROGRAMS
=
capnp-test capnp-evolution-test
check_LIBRARIES
=
libcapnp-test.a
libcapnp_test_a_SOURCES
=
\
src/capnp/test-util.c++
\
src/capnp/test-util.h
nodist_libcapnp_test_a_SOURCES
=
$(test_capnpc_outputs)
check_PROGRAMS
=
capnp-test capnp-evolution-test capnp-afl-testcase
heavy_tests
=
\
src/kj/async-test.c++
\
src/kj/async-unix-test.c++
\
...
...
@@ -412,7 +418,9 @@ heavy_tests = \
src/capnp/compat/json-test.c++
\
src/capnp/compiler/lexer-test.c++
\
src/capnp/compiler/md5-test.c++
capnp_test_LDADD
=
libcapnpc.la
\
capnp_test_LDADD
=
\
libcapnp-test.a
\
libcapnpc.la
\
libcapnp-rpc.la
\
libcapnp-json.la
\
libcapnp.la
\
...
...
@@ -455,14 +463,14 @@ capnp_test_SOURCES = \
src/capnp/serialize-test.c++
\
src/capnp/serialize-packed-test.c++
\
src/capnp/fuzz-test.c++
\
src/capnp/test-util.c++
\
src/capnp/test-util.h
\
$(heavy_tests)
nodist_capnp_test_SOURCES
=
$(test_capnpc_outputs)
if
!LITE_MODE
capnp_evolution_test_LDADD
=
libcapnpc.la libcapnp.la libkj.la
capnp_evolution_test_SOURCES
=
src/capnp/compiler/evolution-test.c++
capnp_afl_testcase_LDADD
=
libcapnp-test.a libcapnp-rpc.la libcapnp.la libkj.la libkj-async.la
capnp_afl_testcase_SOURCES
=
src/capnp/afl-testcase.c++
endif
!LITE_MODE
if
LITE_MODE
...
...
c++/src/capnp/afl-testcase.c++
0 → 100644
View file @
6544785f
// Copyright (c) 2017 Cloudflare, Inc. and contributors
// Licensed under the MIT License:
//
// Permission is hereby granted, free of charge, to any person obtaining a copy
// of this software and associated documentation files (the "Software"), to deal
// in the Software without restriction, including without limitation the rights
// to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
// copies of the Software, and to permit persons to whom the Software is
// furnished to do so, subject to the following conditions:
//
// The above copyright notice and this permission notice shall be included in
// all copies or substantial portions of the Software.
//
// THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
// IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
// FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
// AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
// LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
// OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
// THE SOFTWARE.
#include "test-util.h"
#include <kj/main.h>
#include "serialize.h"
#include <capnp/test.capnp.h>
#include <unistd.h>
namespace
capnp
{
namespace
_
{
namespace
{
class
AflTestMain
{
public
:
explicit
AflTestMain
(
kj
::
ProcessContext
&
context
)
:
context
(
context
)
{}
kj
::
MainFunc
getMain
()
{
return
kj
::
MainBuilder
(
context
,
"(unknown version)"
,
"American Fuzzy Lop test case. Pass input on stdin. Expects a binary "
"message of type TestAllTypes."
)
.
addOption
({
"lists"
},
KJ_BIND_METHOD
(
*
this
,
runLists
),
"Expect a message of type TestLists instead of TestAllTypes."
)
.
callAfterParsing
(
KJ_BIND_METHOD
(
*
this
,
run
))
.
build
();
}
kj
::
MainBuilder
::
Validity
run
()
{
capnp
::
StreamFdMessageReader
reader
(
STDIN_FILENO
);
KJ_IF_MAYBE
(
e
,
kj
::
runCatchingExceptions
([
&
]()
{
checkTestMessage
(
reader
.
getRoot
<
TestAllTypes
>
());
}))
{
KJ_LOG
(
ERROR
,
"threw"
);
}
KJ_IF_MAYBE
(
e
,
kj
::
runCatchingExceptions
([
&
]()
{
checkDynamicTestMessage
(
reader
.
getRoot
<
DynamicStruct
>
(
Schema
::
from
<
TestAllTypes
>
()));
}))
{
KJ_LOG
(
ERROR
,
"dynamic threw"
);
}
KJ_IF_MAYBE
(
e
,
kj
::
runCatchingExceptions
([
&
]()
{
kj
::
str
(
reader
.
getRoot
<
TestAllTypes
>
());
}))
{
KJ_LOG
(
ERROR
,
"str threw"
);
}
context
.
exit
();
}
kj
::
MainBuilder
::
Validity
runLists
()
{
capnp
::
StreamFdMessageReader
reader
(
STDIN_FILENO
);
KJ_IF_MAYBE
(
e
,
kj
::
runCatchingExceptions
([
&
]()
{
kj
::
str
(
reader
.
getRoot
<
test
::
TestLists
>
());
}))
{
KJ_LOG
(
ERROR
,
"threw"
);
}
context
.
exit
();
}
private
:
kj
::
ProcessContext
&
context
;
};
}
// namespace
}
// namespace _
}
// namespace capnp
KJ_MAIN
(
capnp
::
_
::
AflTestMain
);
c++/src/capnp/testdata/lists.binary
0 → 100644
View file @
6544785f
File added
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