Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
Alchemy Viewer
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Iterations
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Locked files
Deploy
Releases
Package registry
Operate
Terraform modules
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Terms and privacy
Keyboard shortcuts
?
Snippets
Groups
Projects
Silent mode is enabled
All outbound communications are blocked.
Learn more
.
Show more breadcrumbs
Alchemy Viewer
Alchemy Viewer
Commits
c6ccdb5b
Commit
c6ccdb5b
authored
13 years ago
by
Nat Goodspeed
Browse files
Options
Downloads
Patches
Plain Diff
Add tests for LLProcess::get[Opt][Read|Write]Pipe() validations.
parent
e239cad1
No related branches found
Branches containing commit
No related tags found
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
indra/llcommon/tests/llprocess_test.cpp
+87
-3
87 additions, 3 deletions
indra/llcommon/tests/llprocess_test.cpp
with
87 additions
and
3 deletions
indra/llcommon/tests/llprocess_test.cpp
+
87
−
3
View file @
c6ccdb5b
...
...
@@ -900,14 +900,98 @@ namespace tut
ensure_contains
(
"did not name 'stderr'"
,
message
,
"stderr"
);
}
template
<
>
template
<
>
void
object
::
test
<
14
>
()
{
set_test_name
(
"internal pipe name warning"
);
TestRecorder
recorder
;
PythonProcessLauncher
py
(
"pipe warning"
,
"import sys
\n
"
"sys.exit(7)
\n
"
);
py
.
mParams
.
files
.
add
(
LLProcess
::
FileParam
(
"pipe"
,
"somename"
));
py
.
run
();
// verify that it did launch anyway
ensure_equals
(
"Status.mState"
,
py
.
mPy
->
getStatus
().
mState
,
LLProcess
::
EXITED
);
ensure_equals
(
"Status.mData"
,
py
.
mPy
->
getStatus
().
mData
,
7
);
std
::
string
message
(
recorder
.
messageWith
(
"not yet supported"
));
ensure
(
"did not log pipe name warning"
,
!
message
.
empty
());
ensure_contains
(
"log message did not mention internal pipe name"
,
message
,
"somename"
);
}
#define TEST_getPipe(PROCESS, GETPIPE, GETOPTPIPE, VALID, NOPIPE, BADPIPE) \
do \
{ \
std::string threw; \
/* Both the following calls should work. */
\
(PROCESS).GETPIPE(VALID); \
ensure(#GETOPTPIPE "(" #VALID ") failed", (PROCESS).GETOPTPIPE(VALID)); \
/* pass obviously bogus PIPESLOT */
\
CATCH_IN(threw, LLProcess::NoPipe, (PROCESS).GETPIPE(LLProcess::FILESLOT(4))); \
ensure_contains("didn't reject bad slot", threw, "no slot"); \
ensure_contains("didn't mention bad slot num", threw, "4"); \
EXPECT_FAIL_WITH_LOG(threw, (PROCESS).GETOPTPIPE(LLProcess::FILESLOT(4))); \
/* pass NOPIPE */
\
CATCH_IN(threw, LLProcess::NoPipe, (PROCESS).GETPIPE(NOPIPE)); \
ensure_contains("didn't reject non-pipe", threw, "not a monitored"); \
EXPECT_FAIL_WITH_LOG(threw, (PROCESS).GETOPTPIPE(NOPIPE)); \
/* pass BADPIPE: FILESLOT isn't empty but wrong direction */
\
CATCH_IN(threw, LLProcess::NoPipe, (PROCESS).GETPIPE(BADPIPE)); \
/* sneaky: GETPIPE is getReadPipe or getWritePipe */
\
/* so skip "get" to obtain ReadPipe or WritePipe :-P */
\
ensure_contains("didn't reject wrong pipe", threw, (#GETPIPE)+3); \
EXPECT_FAIL_WITH_LOG(threw, (PROCESS).GETOPTPIPE(BADPIPE)); \
} while (0)
/// For expecting exceptions. Execute CODE, catch EXCEPTION, store its what()
/// in std::string THREW, ensure it's not empty (i.e. EXCEPTION did happen).
#define CATCH_IN(THREW, EXCEPTION, CODE) \
do \
{ \
(THREW).clear(); \
try \
{ \
CODE; \
} \
catch (const EXCEPTION& e) \
{ \
(THREW) = e.what(); \
} \
ensure("failed to throw " #EXCEPTION ": " #CODE, ! (THREW).empty()); \
} while (0)
#define EXPECT_FAIL_WITH_LOG(EXPECT, CODE) \
do \
{ \
TestRecorder recorder; \
ensure(#CODE " succeeded", ! (CODE)); \
ensure("wrong log message", ! recorder.messageWith(EXPECT).empty()); \
} while (0)
template
<
>
template
<
>
void
object
::
test
<
15
>
()
{
set_test_name
(
"get*Pipe() validation"
);
PythonProcessLauncher
py
(
"just stderr"
,
"print 'this output is expected'
\n
"
);
py
.
mParams
.
files
.
add
(
LLProcess
::
FileParam
(
"pipe"
));
// pipe for stdin
py
.
mParams
.
files
.
add
(
LLProcess
::
FileParam
());
// inherit stdout
py
.
mParams
.
files
.
add
(
LLProcess
::
FileParam
(
"pipe"
));
// pipe for stderr
py
.
run
();
TEST_getPipe
(
*
py
.
mPy
,
getWritePipe
,
getOptWritePipe
,
LLProcess
::
STDIN
,
// VALID
LLProcess
::
STDOUT
,
// NOPIPE
LLProcess
::
STDERR
);
// BADPIPE
TEST_getPipe
(
*
py
.
mPy
,
getReadPipe
,
getOptReadPipe
,
LLProcess
::
STDERR
,
// VALID
LLProcess
::
STDOUT
,
// NOPIPE
LLProcess
::
STDIN
);
// BADPIPE
}
// TODO:
// test "pipe" with nonempty name (should log & continue)
// test pipe for just stderr (tests for get[Opt]ReadPipe(), get[Opt]WritePipe())
// test pipe for stdin, stdout (etc.)
// test getWritePipe().get_ostream(), getReadPipe().get_istream()
// test listening on getReadPipe().getPump(), disconnecting
// test setLimit(), getLimit()
// test EOF -- check logging
// test get(Read|Write)Pipe(3), unmonitored slot, getReadPipe(1), getWritePipe(0)
}
// namespace tut
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment