aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBoris Kolpackov <boris@codesynthesis.com>2016-10-28 12:27:27 +0200
committerBoris Kolpackov <boris@codesynthesis.com>2016-11-04 09:26:36 +0200
commitfac9e22e90591b4c60d0e13c10c3abccf8c96a0f (patch)
treebcca041a843efbde9cde44ff9e908f41b3a6213c
parent39a0cc21f948b251672e1f22d393c33c57a4b649 (diff)
Initial support for trailing description in testscript
-rw-r--r--build2/test/script/lexer.cxx2
-rw-r--r--build2/test/script/parser4
-rw-r--r--build2/test/script/parser.cxx94
-rw-r--r--build2/test/script/script6
-rw-r--r--unit-tests/test/script/parser/redirect.test6
-rw-r--r--unit-tests/test/script/parser/setup-teardown.test4
6 files changed, 91 insertions, 25 deletions
diff --git a/build2/test/script/lexer.cxx b/build2/test/script/lexer.cxx
index aa7b098..8b647dc 100644
--- a/build2/test/script/lexer.cxx
+++ b/build2/test/script/lexer.cxx
@@ -59,6 +59,8 @@ namespace build2
case lexer_mode::variable_line:
{
// Like value except we recognize ';' and don't recognize '{'.
+ // Note that we don't recognize ':' since having a trailing
+ // variable assignment is illegal.
//
s1 = "; $([]#\t\n";
s2 = " ";
diff --git a/build2/test/script/parser b/build2/test/script/parser
index f8a5f3e..b5c77fe 100644
--- a/build2/test/script/parser
+++ b/build2/test/script/parser
@@ -57,7 +57,7 @@ namespace build2
description
pre_parse_description (token&, token_type&);
- void
+ optional<description>
pre_parse_line (token&, token_type&,
optional<description>&&,
lines* = nullptr);
@@ -65,7 +65,7 @@ namespace build2
bool
parse_variable_line (token&, token_type&);
- bool
+ pair<bool, optional<description>>
parse_command_line (token&, token_type&, line_type, size_t);
command_exit
diff --git a/build2/test/script/parser.cxx b/build2/test/script/parser.cxx
index 5c34b1d..a6b8e50 100644
--- a/build2/test/script/parser.cxx
+++ b/build2/test/script/parser.cxx
@@ -458,10 +458,13 @@ namespace build2
if (!r.id.empty ())
insert_id (r.id, loc);
+ if (r.empty ())
+ fail (loc) << "empty description";
+
return r;
}
- void parser::
+ optional<description> parser::
pre_parse_line (token& t, type& tt, optional<description>&& d, lines* ls)
{
// Note: token is only peeked at.
@@ -522,19 +525,19 @@ namespace build2
}
// Pre-parse the line keeping track of whether it ends with a
- // semicolon.
+ // semicolon or contains description.
//
- bool semi;
+ pair<bool, optional<description>> lr;
switch (lt)
{
case line_type::variable:
- semi = parse_variable_line (t, tt);
+ lr.first = parse_variable_line (t, tt);
break;
case line_type::setup:
case line_type::tdown:
case line_type::test:
- semi = parse_command_line (t, tt, lt, 0);
+ lr = parse_command_line (t, tt, lt, 0);
break;
}
@@ -580,7 +583,7 @@ namespace build2
// after variables in the group scope). Otherwise -- setup or
// teardown.
//
- if (!semi)
+ if (!lr.first)
{
if (d)
fail (ll) << "description before setup/teardown variable";
@@ -625,7 +628,7 @@ namespace build2
// If this command ended with a semicolon, then the next one should
// go to the same place.
//
- if (semi)
+ if (lr.first)
{
mode (lexer_mode::first_token);
tt = peek ();
@@ -644,11 +647,20 @@ namespace build2
case type::minus:
fail (ll) << "teardown command in test";
default:
- pre_parse_line (t, tt, nullopt, ls);
+ lr.second = pre_parse_line (t, tt, nullopt, ls);
assert (tt == type::newline); // End of last test line.
}
}
+ if (lr.second)
+ {
+ if (d)
+ fail (ll) << "both leading and trailing description";
+
+ d = lr.second;
+ }
+
+
// Create implicit test scope.
//
if (ls == &tests)
@@ -669,7 +681,10 @@ namespace build2
p->end_loc_ = get_location (t);
group_->scopes.push_back (move (p));
+ return nullopt;
}
+ else
+ return d;
}
// Return true if the string contains only digit characters (used to
@@ -758,7 +773,7 @@ namespace build2
return semi;
}
- bool parser::
+ pair<bool, optional<description>> parser::
parse_command_line (token& t, type& tt, line_type lt, size_t li)
{
command c;
@@ -1384,17 +1399,60 @@ namespace build2
if (tt == type::equal || tt == type::not_equal)
c.exit = parse_command_exit (t, tt);
- // Semicolon is only valid in test command lines. Note that we still
- // recognize it lexically, it's just not a valid token per the
- // grammar.
+ // Colon and semicolon are only valid in test command lines. Note that
+ // we still recognize them lexically, they are just not a valid tokens
+ // per the grammar.
//
- bool semi (tt == type::semi && lt == line_type::test);
+ if (tt == type::colon || tt == type::semi)
+ {
+ switch (lt)
+ {
+ case line_type::setup: fail (t) << t << " after setup command";
+ case line_type::tdown: fail (t) << t << " after teardown command";
+ default: break;
+ }
+ }
- if (semi)
- next (t, tt); // Get newline.
+ pair<bool, optional<description>> r (false, nullopt);
+ if (tt == type::colon)
+ {
+ // Parse one-line trailing description.
+ //
+ //@@ Would be nice to omit trailing description from replay.
+ //
+ const location loc (get_location (t));
- if (tt != type::newline)
- fail (t) << "expected newline instead of " << t;
+ mode (lexer_mode::description_line);
+ next (t, tt);
+ assert (tt == type::word);
+
+ string l (move (t.value));
+ trim (l); // Strip leading/trailing whitespaces.
+
+ // Decide whether this is id or summary.
+ //
+ auto& d (*(r.second = description ()));
+ (l.find_first_of (" \t") == string::npos ? d.id : d.summary) =
+ move (l);
+
+ if (d.empty ())
+ fail (loc) << "empty description";
+
+ //@@ No newline token!
+ //
+ tt = type::newline;
+ }
+ else
+ {
+ if (tt == type::semi)
+ {
+ r.first = true;
+ next (t, tt); // Get newline.
+ }
+
+ if (tt != type::newline)
+ fail (t) << "expected newline instead of " << t;
+ }
// Parse here-document fragments in the order they were mentioned on
// the command line.
@@ -1424,7 +1482,7 @@ namespace build2
if (!pre_parse_)
runner_->run (*scope_, c, li, ll);
- return semi;
+ return r;
}
command_exit parser::
diff --git a/build2/test/script/script b/build2/test/script/script
index 7ce6708..dbdcca1 100644
--- a/build2/test/script/script
+++ b/build2/test/script/script
@@ -144,6 +144,12 @@ namespace build2
string id;
string summary;
string details;
+
+ bool
+ empty () const
+ {
+ return id.empty () && summary.empty () && details.empty ();
+ }
};
class script;
diff --git a/unit-tests/test/script/parser/redirect.test b/unit-tests/test/script/parser/redirect.test
index 6274669..af4295a 100644
--- a/unit-tests/test/script/parser/redirect.test
+++ b/unit-tests/test/script/parser/redirect.test
@@ -23,7 +23,7 @@ EOE
$* <<EOI 2>>EOE !=0 # in-file-fail2
cmd <<<""
EOI
-testscript:1:8: error: empty stdin redirect file path
+testscript:1:8: error: empty stdin redirect path
EOE
$* <<EOI 2>>EOE !=0 # out-file-fail1
@@ -35,7 +35,7 @@ EOE
$* <<EOI 2>>EOE !=0 # out-file-fail2
cmd >>>""
EOI
-testscript:1:8: error: empty stdout redirect file path
+testscript:1:8: error: empty stdout redirect path
EOE
$* <<EOI 2>>EOE !=0 # err-file-fail1
@@ -47,7 +47,7 @@ EOE
$* <<EOI 2>>EOE !=0 # err-file-fail2
cmd 2>>>""
EOI
-testscript:1:9: error: empty stderr redirect file path
+testscript:1:9: error: empty stderr redirect path
EOE
$* <<EOI >>EOO # out-merge1
diff --git a/unit-tests/test/script/parser/setup-teardown.test b/unit-tests/test/script/parser/setup-teardown.test
index 00ff2b5..57528ad 100644
--- a/unit-tests/test/script/parser/setup-teardown.test
+++ b/unit-tests/test/script/parser/setup-teardown.test
@@ -1,9 +1,9 @@
$* <"+cmd;" 2>>EOE != 0 # semi-after-setup
-testscript:1:5: error: expected newline instead of ';'
+testscript:1:5: error: ';' after setup command
EOE
$* <"-cmd;" 2>>EOE != 0 # semi-after-tdown
-testscript:1:5: error: expected newline instead of ';'
+testscript:1:5: error: ';' after teardown command
EOE
$* <<EOI 2>>EOE != 0 # setup-in-test