up vote 3 down vote favorite
1
share [g+] share [fb]

I'm new to Boost.Spirit and Boost.Test and I would like to know how you verify the correctness of your grammars. Below is a simplified version of how I do it at the moment and I'm pretty sure that there's a better way:

Each test case hase a pair of two strings containing the text to parse and the expected result delimited by semicolons.

The parse functions does the actual parsing and returns a string which should be equal to the expected result.

 std::string parse(std::string const & line) {
  std::string name;
  int hours;

  rule<> top_rule = ... ; // rule assignes values to 'name' and 'hours'

  parse_info<> info = parse(line.c_str(), top_rule);

  if(info.full) {
    std::stringstream sstr;
    sstr << name << ";" << hours;

    return sstr.str();
  }

  return "parser failed.";
}

BOOST_AUTO_TEST_SUITE( TestSuite )

BOOST_AUTO_TEST_CASE( TestCase ) {
  BOOST_CHECK_EQUAL(parse("Tom worked for 10 hours."), "Tom;10");
}

BOOST_AUTO_TEST_SUITE_END()
link|improve this question
I don't, but in what why do you want it "better"? – user51568 Jan 27 '09 at 17:36
1  
I would split this into a question and a possible answer. That way people can vote if they think your solution is really the best. – itsadok Feb 4 '09 at 11:20
feedback

1 Answer

up vote 1 down vote accepted

In general, your approach seems fine to me. I would probably group class of tests into function with descriptive names, e.g. TestInvalidGrammar, TestErrorHandling, TestNestedGrammar etc. and have those called from the main.

I am sure you have read documentation but take a look at examples if it helps.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.