Skip to content
GitLab
Projects
Groups
Snippets
/
Help
Help
Support
Community forum
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
Menu
Open sidebar
ISC Open Source Projects
Kea
Commits
ffcecb94
Commit
ffcecb94
authored
Oct 29, 2012
by
JINMEI Tatuya
Browse files
[2371] tested the nested open operation. no need to change impl.
parent
1f1131d4
Changes
1
Hide whitespace changes
Inline
Side-by-side
src/lib/dns/tests/master_lexer_unittest.cc
View file @
ffcecb94
...
...
@@ -32,10 +32,13 @@ namespace {
class
MasterLexerTest
:
public
::
testing
::
Test
{
protected:
MasterLexerTest
()
{}
MasterLexerTest
()
:
expected_stream_name
(
"stream-"
+
lexical_cast
<
string
>
(
&
ss
))
{}
MasterLexer
lexer
;
stringstream
ss
;
const
string
expected_stream_name
;
};
// Commonly used check case where the input sources stack is empty.
...
...
@@ -52,8 +55,7 @@ TEST_F(MasterLexerTest, preOpen) {
TEST_F
(
MasterLexerTest
,
openStream
)
{
lexer
.
open
(
ss
);
EXPECT_EQ
(
string
(
"stream-"
)
+
lexical_cast
<
string
>
(
&
ss
),
lexer
.
getSourceName
());
EXPECT_EQ
(
expected_stream_name
,
lexer
.
getSourceName
());
// From the point of view of this test, we only have to check (though
// indirectly) getSourceLine calls InputSource::getCurrentLine. It should
...
...
@@ -76,6 +78,22 @@ TEST_F(MasterLexerTest, openFile) {
checkEmptySource
(
lexer
);
}
TEST_F
(
MasterLexerTest
,
nestedOpen
)
{
lexer
.
open
(
ss
);
EXPECT_EQ
(
expected_stream_name
,
lexer
.
getSourceName
());
// We can open another source without closing the previous one.
lexer
.
open
(
TEST_DATA_SRCDIR
"/masterload.txt"
);
EXPECT_EQ
(
TEST_DATA_SRCDIR
"/masterload.txt"
,
lexer
.
getSourceName
());
// Close works on the "topmost" (opened last) source
lexer
.
close
();
EXPECT_EQ
(
expected_stream_name
,
lexer
.
getSourceName
());
lexer
.
close
();
EXPECT_TRUE
(
lexer
.
getSourceName
().
empty
());
}
TEST_F
(
MasterLexerTest
,
invalidClose
)
{
// close() cannot be called if the sources stack is empty.
EXPECT_THROW
(
lexer
.
close
(),
isc
::
InvalidOperation
);
...
...
Write
Preview
Supports
Markdown
0%
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!
Cancel
Please
register
or
sign in
to comment